pacem-less 0.40.5-babylon → 0.40.5-bithynia
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/pacem/layout/mixins.less
CHANGED
|
@@ -29,6 +29,10 @@
|
|
|
29
29
|
.BoxLayout(@prefix, @color_primary);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
+
&.@{prefix}-secondary {
|
|
33
|
+
.BoxLayout(@prefix, @color_secondary);
|
|
34
|
+
}
|
|
35
|
+
|
|
32
36
|
&.@{prefix}-disabled {
|
|
33
37
|
.BoxLayout(@prefix, @color_disabled);
|
|
34
38
|
}
|
|
@@ -303,6 +307,10 @@
|
|
|
303
307
|
.PanelColorize(@prefix, @color_primary);
|
|
304
308
|
}
|
|
305
309
|
|
|
310
|
+
&.@{prefix}-secondary {
|
|
311
|
+
.PanelColorize(@prefix, @color_secondary);
|
|
312
|
+
}
|
|
313
|
+
|
|
306
314
|
&.@{prefix}-disabled {
|
|
307
315
|
.PanelColorize(@prefix, @color_disabled);
|
|
308
316
|
}
|
package/pacem/theme-dark.less
CHANGED
|
@@ -82,7 +82,8 @@
|
|
|
82
82
|
|
|
83
83
|
// layout
|
|
84
84
|
@layout_aside_width: 10 * @grid_spacing;
|
|
85
|
-
@layout_aside_padding: /*@layout_aside_width + @grid_cell; */ @grid_cell; // <- desktop site only
|
|
85
|
+
@layout_aside_padding: /*@layout_aside_width + @grid_cell; */ @grid_cell; // <- desktop site only (it's the guaranteed distance between the side and the content)
|
|
86
|
+
@layout_aside_gap: @grid_cell; // guaranteed distance between open menu (right side) and the content
|
|
86
87
|
@layout_header_height: @grid_cell;
|
|
87
88
|
@layout_toolbar_height: @grid_spacing;
|
|
88
89
|
@layout_footer_height: @layout_header_height - @layout_toolbar_height;
|
package/package.json
CHANGED