@elliemae/ds-basic 3.0.0-next.76 → 3.0.0-next.79
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.
|
@@ -60,15 +60,15 @@ $overlay-top: #{$base}--top;
|
|
|
60
60
|
padding-right: space(s);
|
|
61
61
|
flex: 0 0 auto;
|
|
62
62
|
width: calc(100% - 1px);
|
|
63
|
-
.#{$header-right}{
|
|
64
|
-
|
|
65
|
-
|
|
63
|
+
.#{$header-right} {
|
|
64
|
+
background: color(neutral, 0);
|
|
65
|
+
margin-left: auto;
|
|
66
66
|
}
|
|
67
|
-
.#{$header-right-form}{
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
67
|
+
.#{$header-right-form} {
|
|
68
|
+
background: none;
|
|
69
|
+
height: calc(#{space(m)} * 1.16);
|
|
70
|
+
align-items: center;
|
|
71
|
+
display: flex;
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
|
|
@@ -141,7 +141,7 @@ $el-center: #{$base}--center;
|
|
|
141
141
|
|
|
142
142
|
.#{$base}.#{$el-size-xxlarge} {
|
|
143
143
|
max-width: 1600px;
|
|
144
|
-
width: 100
|
|
144
|
+
width: calc(100% - 48px);
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
// ********************************************
|
|
@@ -160,7 +160,8 @@ $feedback-icon: #{$prefix}-icon;
|
|
|
160
160
|
|
|
161
161
|
&--information {
|
|
162
162
|
.#{$icon-selector} {
|
|
163
|
-
svg,
|
|
163
|
+
svg,
|
|
164
|
+
svg:not([fill]) {
|
|
164
165
|
@include icon-color(color(brand-primary, 700));
|
|
165
166
|
}
|
|
166
167
|
}
|
|
@@ -168,7 +169,8 @@ $feedback-icon: #{$prefix}-icon;
|
|
|
168
169
|
|
|
169
170
|
&--warning {
|
|
170
171
|
.#{$icon-selector} {
|
|
171
|
-
svg,
|
|
172
|
+
svg,
|
|
173
|
+
svg:not([fill]) {
|
|
172
174
|
@include icon-color(color(warning, 600));
|
|
173
175
|
}
|
|
174
176
|
}
|
|
@@ -176,7 +178,8 @@ $feedback-icon: #{$prefix}-icon;
|
|
|
176
178
|
|
|
177
179
|
&--error {
|
|
178
180
|
.#{$icon-selector} {
|
|
179
|
-
svg,
|
|
181
|
+
svg,
|
|
182
|
+
svg:not([fill]) {
|
|
180
183
|
@include icon-color(color(danger, 900));
|
|
181
184
|
}
|
|
182
185
|
}
|
|
@@ -184,7 +187,8 @@ $feedback-icon: #{$prefix}-icon;
|
|
|
184
187
|
|
|
185
188
|
&--success {
|
|
186
189
|
.#{$icon-selector} {
|
|
187
|
-
svg,
|
|
190
|
+
svg,
|
|
191
|
+
svg:not([fill]) {
|
|
188
192
|
@include icon-color(color(success, 900));
|
|
189
193
|
}
|
|
190
194
|
}
|
|
@@ -212,7 +216,8 @@ $title: #{$base}__modal-title;
|
|
|
212
216
|
padding-right: space(s);
|
|
213
217
|
margin: 0;
|
|
214
218
|
|
|
215
|
-
&--information,
|
|
219
|
+
&--information,
|
|
220
|
+
&--decision {
|
|
216
221
|
padding: 0 space(s) space(s) space(s);
|
|
217
222
|
}
|
|
218
223
|
|
|
@@ -254,13 +259,13 @@ $content: #{$base}__modal-content;
|
|
|
254
259
|
padding-right: space(s);
|
|
255
260
|
}
|
|
256
261
|
&--form {
|
|
257
|
-
padding-top: space(s);
|
|
262
|
+
padding-top: space(s);
|
|
258
263
|
}
|
|
259
264
|
&--remove-padding {
|
|
260
265
|
padding: 0;
|
|
261
266
|
}
|
|
262
|
-
.em-ds-data-grid-body__row:last-child{
|
|
263
|
-
|
|
267
|
+
.em-ds-data-grid-body__row:last-child {
|
|
268
|
+
margin-bottom: 0;
|
|
264
269
|
}
|
|
265
270
|
}
|
|
266
271
|
|