@pacem/pacem-theme-less 1.0.0-bessel → 1.0.0-dirac
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.
|
@@ -261,11 +261,12 @@
|
|
|
261
261
|
@media (max-width: @threshold_sm - 1) {
|
|
262
262
|
.HideWhenLessThan(sm);
|
|
263
263
|
.HideWhenAtMost(xs);
|
|
264
|
-
// exception (show-xs: show only when EXACTLY 'xs')
|
|
265
264
|
.ShowWhenAtLeast(xs);
|
|
266
265
|
}
|
|
267
266
|
// show when at least 'small' wide
|
|
268
267
|
@media (min-width: @threshold_sm) {
|
|
268
|
+
// exception (show-xs: show only when EXACTLY 'xs', i.e. < 'sm')
|
|
269
|
+
.HideWhenLessThan(xs);
|
|
269
270
|
.ShowWhenAtLeast(sm);
|
|
270
271
|
}
|
|
271
272
|
// hide when at most 'small' wide
|
package/pacem/ui/dark/blade.less
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
right: 0;
|
|
7
7
|
bottom: 0;
|
|
8
8
|
width: 33vw;
|
|
9
|
-
min-width: 600px;
|
|
10
9
|
box-sizing: border-box;
|
|
11
10
|
transform: translate(100%, 0);
|
|
12
11
|
z-index: @lightbox-z-index - 1;
|
|
@@ -15,7 +14,12 @@
|
|
|
15
14
|
|
|
16
15
|
&.blade-slim {
|
|
17
16
|
width: 25vw;
|
|
18
|
-
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.blade-full {
|
|
20
|
+
// mobile-compat
|
|
21
|
+
// shouldn't be used
|
|
22
|
+
width: 100vw;
|
|
19
23
|
}
|
|
20
24
|
|
|
21
25
|
&.blade-large {
|
|
@@ -43,6 +47,14 @@
|
|
|
43
47
|
&.blade-open {
|
|
44
48
|
transform: translate(0, 0);
|
|
45
49
|
}
|
|
50
|
+
|
|
51
|
+
@media screen and (min-width: @threshold_sm) {
|
|
52
|
+
min-width: 600px;
|
|
53
|
+
|
|
54
|
+
&.blade-slim {
|
|
55
|
+
min-width: 480px;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
46
58
|
}
|
|
47
59
|
|
|
48
60
|
@media screen and (min-width: @threshold_lg) {
|
package/package.json
CHANGED