File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -75,16 +75,14 @@ <h2>{{ "Tenants" | localize }}</h2>
75
75
< td > {{ tenant.name }}</ td >
76
76
< td align ="center ">
77
77
< i
78
- class ="material-icons "
78
+ class ="material-icons check_box "
79
79
*ngIf ="tenant.isActive "
80
- style ="color:green; "
81
80
>
82
81
check_box
83
82
</ i >
84
83
< i
85
- class ="material-icons "
84
+ class ="material-icons indeterminate_check_box "
86
85
*ngIf ="!tenant.isActive "
87
- style ="color:red; "
88
86
>
89
87
indeterminate_check_box
90
88
</ i >
Original file line number Diff line number Diff line change @@ -70,10 +70,10 @@ <h2>{{ "Users" | localize }}</h2>
70
70
< td > {{ user.fullName }}</ td >
71
71
< td > {{ user.emailAddress }}</ td >
72
72
< td align ="center ">
73
- < i class ="material-icons " *ngIf ="user.isActive " style =" color:green; ">
73
+ < i class ="material-icons check_box " *ngIf ="user.isActive ">
74
74
check_box
75
75
</ i >
76
- < i class ="material-icons " *ngIf ="!user.isActive " style =" color:red; ">
76
+ < i class ="material-icons indeterminate_check_box " *ngIf ="!user.isActive ">
77
77
indeterminate_check_box
78
78
</ i >
79
79
</ td >
Original file line number Diff line number Diff line change @@ -3493,6 +3493,13 @@ section.content {
3493
3493
border-radius : 0 !important ;
3494
3494
padding : 5px 20px !important ; }
3495
3495
3496
+ /* material-icons check_box ==================== */
3497
+ i .material-icons .check_box {
3498
+ color : green; }
3499
+
3500
+ i .material-icons .indeterminate_check_box {
3501
+ color : red; }
3502
+
3496
3503
/* Checkbox & Radio ============================ */
3497
3504
[type = "checkbox" ] + label {
3498
3505
padding-left : 26px ;
You can’t perform that action at this time.
0 commit comments