holygrail2 1.1.7 → 1.1.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/package.json
CHANGED
package/scss/base/_icons.scss
CHANGED
|
@@ -28,8 +28,7 @@ svg-icon {
|
|
|
28
28
|
&.c-invert {
|
|
29
29
|
fill: $c-white;
|
|
30
30
|
}
|
|
31
|
-
&.ico-white,
|
|
32
|
-
.ico-white &
|
|
31
|
+
&.ico-white,
|
|
33
32
|
&.c-invert {
|
|
34
33
|
path {
|
|
35
34
|
fill: $c-white;
|
|
@@ -222,3 +221,8 @@ svg-icon.ico-pre {
|
|
|
222
221
|
transform: rotate(-45deg);
|
|
223
222
|
}
|
|
224
223
|
}
|
|
224
|
+
.checkbox-item {
|
|
225
|
+
path {
|
|
226
|
+
fill: white;
|
|
227
|
+
}
|
|
228
|
+
}
|
package/scss/elements/_form.scss
CHANGED
|
@@ -134,11 +134,12 @@ input::input-placeholder {
|
|
|
134
134
|
&.select-box {
|
|
135
135
|
height: auto;
|
|
136
136
|
select {
|
|
137
|
-
background-color: $c-
|
|
137
|
+
background-color: $c-white;
|
|
138
138
|
min-width: 24px;
|
|
139
139
|
width: 100%;
|
|
140
140
|
height: 24px;
|
|
141
|
-
|
|
141
|
+
border: 1px solid $c-primary;
|
|
142
|
+
padding: 2px 20px 0 8px;
|
|
142
143
|
font-size: $text-input-d;
|
|
143
144
|
border-radius: $form-radius;
|
|
144
145
|
border: none;
|
|
@@ -146,10 +147,12 @@ input::input-placeholder {
|
|
|
146
147
|
}
|
|
147
148
|
&::after {
|
|
148
149
|
display: block;
|
|
149
|
-
right:
|
|
150
|
+
right: 10px;
|
|
150
151
|
width: 5px;
|
|
151
152
|
height: 5px;
|
|
152
|
-
margin-top: -
|
|
153
|
+
margin-top: -4px;
|
|
154
|
+
|
|
155
|
+
|
|
153
156
|
}
|
|
154
157
|
}
|
|
155
158
|
&.select-flat,
|