playbook_ui 16.5.0.pre.alpha.RTEPOC15742 → 16.5.0.pre.alpha.RTEPOC15745
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/pb_kits/playbook/pb_rich_text_editor/_tiptap_styles.scss +14 -6
- data/dist/playbook.css +1 -1
- data/lib/playbook/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: 0ca3a00f10560ff55c0a92fce48ffd9643497f3b36332260569207d555ed8790
|
|
4
|
+
data.tar.gz: f952e25426aa178f3b61f76d3ab30161430d91f8f831349f2939744428ba3eac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7cebe4685fbff28fffd03205496b5b6dc85055e368a8af13ab2ceab28532852be660c745420df82f988fe3d3ca6fe50d44743c9b13a6a28e4406be68c900412
|
|
7
|
+
data.tar.gz: b71b66f81f6f93556dd27f7b933e51cf4171a9cd1e4de4555bd1b1d87514bbfe37ebdf7310076a5202e721724cf47135d1f7076f9aca5ff0b55da91a62bd7b45
|
|
@@ -88,11 +88,15 @@
|
|
|
88
88
|
border-radius: $border_rad_heaviest $border_rad_heaviest 0 0;
|
|
89
89
|
border: 1px solid $input_border_default;
|
|
90
90
|
overflow-x: auto;
|
|
91
|
+
// Single horizontal row + scroll in narrow modals/sidebars (wrap used to stack controls vertically).
|
|
91
92
|
&_block {
|
|
92
|
-
display: flex;
|
|
93
|
-
flex-wrap: wrap;
|
|
94
93
|
align-items: center;
|
|
94
|
+
display: flex;
|
|
95
|
+
flex-wrap: nowrap;
|
|
95
96
|
gap: $space_xs;
|
|
97
|
+
min-width: 0;
|
|
98
|
+
overflow-x: auto;
|
|
99
|
+
-webkit-overflow-scrolling: touch;
|
|
96
100
|
}
|
|
97
101
|
|
|
98
102
|
// Vertical section separators use ::before/::after with height: 100%. With
|
|
@@ -114,6 +118,7 @@
|
|
|
114
118
|
letter-spacing: normal;
|
|
115
119
|
line-height: 1;
|
|
116
120
|
min-height: unset;
|
|
121
|
+
max-width: 100%;
|
|
117
122
|
min-width: $space_xl * 5;
|
|
118
123
|
padding: ($space_xs - 1) $space_xs;
|
|
119
124
|
width: auto;
|
|
@@ -170,10 +175,10 @@
|
|
|
170
175
|
box-sizing: border-box;
|
|
171
176
|
column-gap: 0;
|
|
172
177
|
display: flex;
|
|
173
|
-
flex-wrap:
|
|
178
|
+
flex-wrap: nowrap;
|
|
174
179
|
justify-content: flex-start;
|
|
175
180
|
padding: $space_xxs $space_sm;
|
|
176
|
-
row-gap:
|
|
181
|
+
row-gap: 0;
|
|
177
182
|
width: 100%;
|
|
178
183
|
}
|
|
179
184
|
|
|
@@ -181,9 +186,11 @@
|
|
|
181
186
|
align-items: center;
|
|
182
187
|
display: flex;
|
|
183
188
|
flex: 1 1 auto;
|
|
184
|
-
flex-wrap:
|
|
189
|
+
flex-wrap: nowrap;
|
|
185
190
|
gap: $space_xs;
|
|
186
191
|
min-width: 0;
|
|
192
|
+
overflow-x: auto;
|
|
193
|
+
-webkit-overflow-scrolling: touch;
|
|
187
194
|
}
|
|
188
195
|
|
|
189
196
|
.rte-toolbar-right {
|
|
@@ -206,9 +213,10 @@
|
|
|
206
213
|
background: $white;
|
|
207
214
|
border: 1px solid $input_border_default;
|
|
208
215
|
border-radius: $border_rad_heaviest;
|
|
216
|
+
box-sizing: border-box;
|
|
209
217
|
height: 100%;
|
|
210
|
-
padding: 1rem 1.5rem 1.5rem 1.5rem;
|
|
211
218
|
line-height: $lh_loose;
|
|
219
|
+
padding: 1.25rem 1.5rem 1.5rem 1.5rem;
|
|
212
220
|
@include transition_default;
|
|
213
221
|
:first-child {
|
|
214
222
|
margin-top: 0;
|