head 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/head/components/wing.sass +11 -1
- data/lib/head/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 489b779629dcbaf7637d84137ea7037c757003b2d505fa9c1cce42faed3c7390
|
|
4
|
+
data.tar.gz: a247d28583fe1e75ad4687447151e40b91fb59c4df552f03954e6db72ff4e28d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2552d2e124fccb0c0364005dfe32727410480f3321529d7cdd5e73b72e1fd46db791f6f26d9fb6e84f261a0c6abd32b5bb2094a7d3a70c26a3bf2d82a8aa66ef
|
|
7
|
+
data.tar.gz: 1129ce634283b60f54f9c9bcc9ffc2fc1b4cdf016b1531c3756f8482d1d462d43976c50db6846a47adb4bca49effa01a4b99f1c13fc9702c6c1368aab9212496
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
&--right
|
|
18
18
|
right: 0
|
|
19
|
-
position: inherit
|
|
19
|
+
// position: inherit
|
|
20
20
|
|
|
21
21
|
// On very very large screens, permanently show notifications sidebar on the right.
|
|
22
22
|
// Using container queries for this, because the main menu on the left may affect the layout.
|
|
@@ -48,6 +48,16 @@
|
|
|
48
48
|
+responsive.xlarge-container
|
|
49
49
|
display: none
|
|
50
50
|
|
|
51
|
+
// The right wing has three states
|
|
52
|
+
// Small screens: appear on top of the content
|
|
53
|
+
// Medium screens: appear next to the content
|
|
54
|
+
// Large screens: always show next to the content
|
|
55
|
+
// This snippet here is for medium screens:
|
|
56
|
+
// When the (right) curtain disappears, make the right wing next to the content
|
|
57
|
+
.c-head-wing--right:has(> .c-head-wing__curtain)
|
|
58
|
+
+responsive.xlarge-container
|
|
59
|
+
position: inherit
|
|
60
|
+
|
|
51
61
|
// Keep this breakpoint analogous to knob.sass
|
|
52
62
|
+responsive.xlarge
|
|
53
63
|
.c-head-wing
|
data/lib/head/version.rb
CHANGED