lato_cms 3.0.4 → 3.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/lato_cms/application.scss +14 -12
- data/lib/lato_cms/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: 880a42ede332f95018d49081a9d2dc3ac0b510c62e4a218ebf71561eec3c9408
|
|
4
|
+
data.tar.gz: 9e7f487b6323f950e3d68bf80acc3bb9770962e72c1f64fc6394ab0adf66e368
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 198521b168caa3bfb06b67cb466335da752144c8d33ad8d7850d70b36c4b598864387d1cff4bc9fb0f389fbed304093f49446a944d6e483917abfe98bc59d825
|
|
7
|
+
data.tar.gz: 657818b8115590944db38ea1ba4141dd2f720455ed4621a7ff4ad046ac753d0bdf16c01c1a39df79cf251f28c81b515f1316c31dbf0f92c4166725b6fc12fb75
|
|
@@ -19,19 +19,20 @@ body.lato-cms-advanced-editor--open {
|
|
|
19
19
|
padding: 0;
|
|
20
20
|
margin: 0;
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
// Only the direct editor card fills the screen — not nested cards (e.g. repeater items)
|
|
23
|
+
> .card {
|
|
23
24
|
height: 100dvh !important;
|
|
24
25
|
border: none !important;
|
|
25
26
|
border-radius: 0 !important;
|
|
26
|
-
}
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
iframe {
|
|
29
|
+
height: 100dvh !important;
|
|
30
|
+
}
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
// No-preview placeholder fills full screen
|
|
33
|
+
> .card-body {
|
|
34
|
+
height: 100dvh;
|
|
35
|
+
}
|
|
35
36
|
}
|
|
36
37
|
}
|
|
37
38
|
|
|
@@ -43,16 +44,17 @@ body.lato-cms-advanced-editor--open {
|
|
|
43
44
|
overflow: hidden;
|
|
44
45
|
transition: flex-basis 0.25s ease, width 0.25s ease;
|
|
45
46
|
|
|
46
|
-
|
|
47
|
+
// Only the direct editor card fills the screen — not nested cards (e.g. repeater items)
|
|
48
|
+
> .card {
|
|
47
49
|
height: 100dvh !important;
|
|
48
50
|
border-radius: 0 !important;
|
|
49
51
|
border-top: none !important;
|
|
50
52
|
border-bottom: none !important;
|
|
51
53
|
border-right: none !important;
|
|
52
|
-
}
|
|
53
54
|
|
|
54
|
-
|
|
55
|
-
|
|
55
|
+
> .card-body {
|
|
56
|
+
max-height: calc(100dvh - 57px) !important;
|
|
57
|
+
}
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
&.lato-cms-advanced-editor__editor-col--collapsed {
|
data/lib/lato_cms/version.rb
CHANGED