Skip to content

Commit 3858102

Browse files
committed
style: TT-290 changed the color border button
1 parent b42c4c9 commit 3858102

File tree

5 files changed

+5
-17
lines changed

5 files changed

+5
-17
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
.activity-list {
44
overflow: auto;
5-
65
}
7-

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ describe('CustomerTableListComponent', () => {
248248
_status: false,
249249
btnColor: 'btn-danger',
250250
btnIcon: 'fa-arrow-circle-down',
251-
btnIconTwo: 'fa-caret-check',
251+
btnIconTwo: 'fa-check',
252252
btnName: 'Archive',
253253
iconColor: 'text-success'
254254
};

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

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,3 @@
33
.project-list {
44
max-height: 300px; overflow: auto; display:inline-block; width: 100%;
55
}
6-
7-
.btn--switch{
8-
font-size: 1rem;
9-
border: 1px solid #c5c5c5;
10-
border-radius: 20px;
11-
}
12-
13-
.iconTwo{
14-
color: #a1a1a1;
15-
}

src/app/modules/shared/components/dropdown/dropdown.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<button class="btn btn-sm dropdown-toggle btn--switch" type="button" data-toggle="dropdown" aria-haspopup="true"
1+
<button class="btn btn-sm dropdown-toggle btn-switch" type="button" data-toggle="dropdown" aria-haspopup="true"
22
aria-expanded="false" [ngClass]="info.btnColor"
33
(click)=changePropertiesItem(info)>
44
<em class="fa icon" [ngClass]="[info.btnIcon, info.iconColor]"></em>

src/app/modules/shared/components/dropdown/dropdown.component.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@import '../../../../../styles/colors.scss';
22

3-
.btn--switch {
3+
.btn-switch {
44
font-size: 1rem;
5-
border: 1px solid #c5c5c5;
5+
border: 1px solid lighten($primary-text, 10%);
66
border-radius: 20px;
77
width: clamp(7rem, 50%, 12rem);
88
display: flex;
@@ -12,7 +12,7 @@
1212
}
1313

1414
.iconTwo {
15-
color: #a1a1a1;
15+
color: lighten($primary-text, 10%);
1616
text-align: center;
1717
}
1818

0 commit comments

Comments
 (0)