Skip to content

Commit 62b39e0

Browse files
committed
fix: #257 fix button styles
1 parent 326b794 commit 62b39e0

File tree

28 files changed

+57
-198
lines changed

28 files changed

+57
-198
lines changed

src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ import { TimeDetailsPipe } from './modules/time-clock/pipes/time-details.pipe';
7272
TimeClockComponent,
7373
DetailsFieldsComponent,
7474
ProjectListHoverComponent,
75-
ModalComponent,
7675
TimeEntriesComponent,
7776
MonthPickerComponent,
7877
EmptyStateComponent,

src/app/modules/activities-management/components/activity-list/activity-list.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '../../../../../styles/colors.scss';
22

33
.style-list-project {
4-
background-image: $background-gradient-items;
4+
background-color: $primary;
55
color: white;
66
}
77

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import '../../../../../styles/colors.scss';
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import '../../../../../../../styles/colors.scss';

src/app/modules/customer-management/components/customer-info/components/customer-list/customer-list.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<button (click)="editCustomer(customer.id)" type="button" class="btn btn-sm btn-primary">
1616
<i class="fa fa-pencil fa-xs"></i>
1717
</button>
18-
<button (click)="deleteCustomer(customer.id)" type="button" class="btn btn-sm btn-secondary ml-2">
18+
<button (click)="deleteCustomer(customer.id)" type="button" class="btn btn-sm btn-danger ml-2">
1919
<i class="fa fa-trash-alt fa-xs"></i>
2020
</button>
2121
</td>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@import '../../../../../../../styles/themes/orange-theme';
1+
@import '../../../../../../../styles/colors.scss';

src/app/modules/customer-management/components/management-customer-projects/management-customer-projects.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import '../../../../../styles/colors.scss';
22

33
.nav-active {
4-
color: $modal-button-secondary;
4+
color: $secondary;
55
}
66
.nav-item > a:hover {
77
opacity: 0.6;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import '../../../../../../../styles/colors.scss';

src/app/modules/customer-management/components/projects-type/components/project-type-list/project-type-list.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<td class="col-sm-9">{{ projectType.name }}</td>
1616
<td class="col-sm-3 text-center">
1717
<button type="button" class="btn btn-sm btn-primary" (click)="updateProjectType(projectType.id)"><i class="fa fa-pencil fa-xs"></i></button>
18-
<button type="button" class="btn btn-sm btn-secondary ml-2" (click)="deleteProjectType(projectType.id)"><i class="fas fa-trash-alt fa-xs"></i></button>
18+
<button type="button" class="btn btn-sm btn-danger ml-2" (click)="deleteProjectType(projectType.id)"><i class="fas fa-trash-alt fa-xs"></i></button>
1919
</td>
2020
</tr>
2121
</tbody>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@import '../../../../../../../styles/themes/orange-theme';
1+
@import '../../../../../../../styles/colors.scss';

0 commit comments

Comments
 (0)