pacem-less 0.52.1-ruffini → 0.52.1-stokes
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.
|
@@ -251,23 +251,23 @@
|
|
|
251
251
|
|
|
252
252
|
each(range(12), {
|
|
253
253
|
&.z--@{value}{
|
|
254
|
-
z-index: @value;
|
|
254
|
+
z-index: @value !important;
|
|
255
255
|
}
|
|
256
256
|
});
|
|
257
257
|
|
|
258
258
|
&.z-header {
|
|
259
|
-
z-index: @header_z_index;
|
|
259
|
+
z-index: @header_z_index !important;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
&.z-under-header {
|
|
263
|
-
z-index: @header_z_index - 1;
|
|
263
|
+
z-index: @header_z_index - 1 !important;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
&.z-over-header {
|
|
267
|
-
z-index: @header_z_index + 1;
|
|
267
|
+
z-index: @header_z_index + 1 !important;
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
&.z-top {
|
|
271
|
-
z-index: @lightbox_z_index + 1;
|
|
271
|
+
z-index: @lightbox_z_index + 1 !important;
|
|
272
272
|
}
|
|
273
273
|
}
|
|
@@ -516,8 +516,15 @@
|
|
|
516
516
|
// no label
|
|
517
517
|
.form-nolabels > @{P}-form-field:not(.field-label),
|
|
518
518
|
@{P}-form-field.field-nolabel {
|
|
519
|
-
> .@{PCSS}-field
|
|
520
|
-
|
|
519
|
+
> .@{PCSS}-field {
|
|
520
|
+
|
|
521
|
+
> label.@{PCSS}-label {
|
|
522
|
+
display: none;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
> .@{PCSS}-input-container {
|
|
526
|
+
padding-top: 0;
|
|
527
|
+
}
|
|
521
528
|
}
|
|
522
529
|
}
|
|
523
530
|
|
|
@@ -883,7 +890,7 @@
|
|
|
883
890
|
border-right: none !important;
|
|
884
891
|
}
|
|
885
892
|
|
|
886
|
-
.@{PCSS}-input{
|
|
893
|
+
.@{PCSS}-input {
|
|
887
894
|
min-height: 0;
|
|
888
895
|
}
|
|
889
896
|
}
|
package/package.json
CHANGED