You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/modules/_vars.css
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,9 @@
16
16
--vcw-set-callout-scale:1.2; /* Callouts narrower than body text */
17
17
--vcw-set-padding-scale:1; /* Multiplier for padding in wide mode */
18
18
--vcw-set-table-scale:1; /* Multiplier for table width in wide mode */
19
+
20
+
--vcw-set-table-head-overflow-wrap: break-word; /* Overflow wrap style for table head cells */
21
+
--vcw-set-table-body-overflow-wrap: break-word; /* Overflow wrap style for table body cells */
19
22
}
20
23
21
24
/* -------------------------------
@@ -133,6 +136,28 @@ settings:
133
136
max: 2
134
137
step: 0.05
135
138
139
+
- id: vcw-set-table-body-overflow-wrap
140
+
title: Table body overflow wrap
141
+
description: "How long words wrap in table body cells. break-word: breaks words only if needed (recommended), normal: breaks only at spaces, anywhere: breaks at any character"
142
+
type: variable-select
143
+
scope: root
144
+
default: break-word
145
+
options:
146
+
- break-word
147
+
- normal
148
+
- anywhere
149
+
150
+
- id: vcw-set-table-head-overflow-wrap
151
+
title: Table head overflow wrap
152
+
description: "How long words wrap in table header cells. break-word: breaks words only if needed (recommended), normal: breaks only at spaces, anywhere: breaks at any character"
153
+
type: variable-select
154
+
scope: root
155
+
default: break-word
156
+
options:
157
+
- break-word
158
+
- normal
159
+
- anywhere
160
+
136
161
- id: vcw-advanced-heading
137
162
title: Advanced
138
163
description: Fine-tune spacing and layout behavior
0 commit comments