@onemrvapublic/design-system-theme 16.2.8 → 16.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/_chips.scss +8 -36
- package/package.json +1 -1
package/components/_chips.scss
CHANGED
|
@@ -39,17 +39,19 @@
|
|
|
39
39
|
display: flex;
|
|
40
40
|
align-items: center;
|
|
41
41
|
}
|
|
42
|
-
|
|
42
|
+
.mat-mdc-chip-action-label {
|
|
43
|
+
.mat-icon {
|
|
44
|
+
line-height: 18px;
|
|
45
|
+
font-size: 18px;
|
|
46
|
+
height: 18px;
|
|
47
|
+
width: 22px;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
43
50
|
&.mat-primary {
|
|
44
51
|
background: µ.primary($theme, 50) !important;
|
|
45
52
|
border: 1px solid µ.primary($theme, 300);
|
|
46
53
|
.mat-mdc-chip-action-label {
|
|
47
54
|
color: $primary;
|
|
48
|
-
.mat-icon {
|
|
49
|
-
font-size: 18px;
|
|
50
|
-
height: 18px;
|
|
51
|
-
width: 22px;
|
|
52
|
-
}
|
|
53
55
|
}
|
|
54
56
|
}
|
|
55
57
|
&.mat-accent {
|
|
@@ -58,11 +60,6 @@
|
|
|
58
60
|
border: none;
|
|
59
61
|
.mat-mdc-chip-action-label {
|
|
60
62
|
color: $color;
|
|
61
|
-
.mat-icon {
|
|
62
|
-
font-size: 18px;
|
|
63
|
-
height: 18px;
|
|
64
|
-
width: 22px;
|
|
65
|
-
}
|
|
66
63
|
}
|
|
67
64
|
}
|
|
68
65
|
&.mat-warn {
|
|
@@ -70,11 +67,6 @@
|
|
|
70
67
|
border: 1px solid µ.warn($theme, 200);
|
|
71
68
|
.mat-mdc-chip-action-label {
|
|
72
69
|
color: µ.warn($theme, 600);
|
|
73
|
-
.mat-icon {
|
|
74
|
-
font-size: 18px;
|
|
75
|
-
height: 18px;
|
|
76
|
-
width: 22px;
|
|
77
|
-
}
|
|
78
70
|
}
|
|
79
71
|
}
|
|
80
72
|
&.mat-success {
|
|
@@ -82,11 +74,6 @@
|
|
|
82
74
|
border: 1px solid µ.success($theme, 200);
|
|
83
75
|
.mat-mdc-chip-action-label {
|
|
84
76
|
color: µ.success($theme);
|
|
85
|
-
.mat-icon {
|
|
86
|
-
font-size: 18px;
|
|
87
|
-
height: 18px;
|
|
88
|
-
width: 22px;
|
|
89
|
-
}
|
|
90
77
|
}
|
|
91
78
|
}
|
|
92
79
|
&.mat-error {
|
|
@@ -95,11 +82,6 @@
|
|
|
95
82
|
display: inline-flex;
|
|
96
83
|
.mat-mdc-chip-action-label {
|
|
97
84
|
color: µ.error($theme);
|
|
98
|
-
.mat-icon {
|
|
99
|
-
font-size: 18px;
|
|
100
|
-
height: 18px;
|
|
101
|
-
width: 22px;
|
|
102
|
-
}
|
|
103
85
|
}
|
|
104
86
|
}
|
|
105
87
|
&.mat-info {
|
|
@@ -107,11 +89,6 @@
|
|
|
107
89
|
border: 1px solid µ.info($theme, 200);
|
|
108
90
|
.mat-mdc-chip-action-label {
|
|
109
91
|
color: µ.info($theme);
|
|
110
|
-
.mat-icon {
|
|
111
|
-
font-size: 18px;
|
|
112
|
-
height: 18px;
|
|
113
|
-
width: 22px;
|
|
114
|
-
}
|
|
115
92
|
}
|
|
116
93
|
}
|
|
117
94
|
&.mat-mdc-chip-disabled {
|
|
@@ -119,11 +96,6 @@
|
|
|
119
96
|
border: 1px solid µ.grayscale($theme, 400);
|
|
120
97
|
.mat-mdc-chip-action-label {
|
|
121
98
|
color: µ.grayscale($theme);
|
|
122
|
-
.mat-icon {
|
|
123
|
-
font-size: 18px;
|
|
124
|
-
height: 18px;
|
|
125
|
-
width: 22px;
|
|
126
|
-
}
|
|
127
99
|
}
|
|
128
100
|
}
|
|
129
101
|
&.sticker {
|