@zohodesk/components 1.0.0-temp-116 → 1.0.0-temp-117
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.
- package/assets/Appearance/dark/mode/darkMode.module.css +2 -1
- package/assets/Appearance/default/mode/defaultMode.module.css +2 -1
- package/assets/Appearance/pureDark/mode/pureDarkMode.module.css +2 -1
- package/assets/Contrast/darkContrastLightness.module.css +2 -0
- package/assets/Contrast/defaultContrastLightness.module.css +2 -0
- package/assets/Contrast/pureDarkContrastLightness.module.css +2 -0
- package/es/AppContainer/AppContainer.js +1 -0
- package/es/Avatar/Avatar.module.css +44 -11
- package/es/Button/Button.module.css +25 -7
- package/es/Buttongroup/Buttongroup.module.css +36 -18
- package/es/DateTime/DateTime.module.css +1 -1
- package/es/DropBox/DropBox.module.css +101 -18
- package/es/Ribbon/Ribbon.module.css +102 -24
- package/es/Switch/Switch.module.css +26 -9
- package/es/Tab/Tabs.module.css +6 -2
- package/es/Tooltip/Tooltip.module.css +25 -4
- package/es/common/a11y.module.css +3 -3
- package/es/common/boxShadow.module.css +75 -0
- package/install.md +10 -0
- package/lib/AppContainer/AppContainer.js +1 -0
- package/lib/Avatar/Avatar.module.css +44 -11
- package/lib/Button/Button.module.css +25 -7
- package/lib/Buttongroup/Buttongroup.module.css +36 -18
- package/lib/DateTime/DateTime.module.css +1 -1
- package/lib/DropBox/DropBox.module.css +101 -18
- package/lib/Ribbon/Ribbon.module.css +102 -24
- package/lib/Switch/Switch.module.css +26 -9
- package/lib/Tab/Tabs.module.css +6 -2
- package/lib/Tooltip/Tooltip.module.css +25 -4
- package/lib/common/a11y.module.css +3 -3
- package/lib/common/boxShadow.module.css +75 -0
- package/package.json +1 -1
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
--dot_listItemActive: var(--zdt_cta_primary_light_bg);
|
|
10
10
|
|
|
11
11
|
/* common */
|
|
12
|
-
--zdt_disable_bg: hsl(217, 23%,
|
|
12
|
+
--zdt_disable_bg: hsl(217, 23%, 11%, 0.5);
|
|
13
|
+
--zdt_contrast_shadow: hsl(0, 0%, 100%, 1);
|
|
13
14
|
|
|
14
15
|
/* avatar */
|
|
15
16
|
--zdt_avatar_default_text: hsl(210, 7%, calc(89% + var(--zd_dark_text_lValue)), calc(1 + var(--zd_alpha)));
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
--dot_listItemActive: var(--zdt_cta_primary_light_bg);
|
|
10
10
|
|
|
11
11
|
/* common */
|
|
12
|
-
--zdt_disable_bg: hsl(0, 0%,
|
|
12
|
+
--zdt_disable_bg: hsl(0, 0%, 100%, 0.5);
|
|
13
|
+
--zdt_contrast_shadow: hsl(0, 0%, 0%, 1);
|
|
13
14
|
|
|
14
15
|
/* avatar */
|
|
15
16
|
--zdt_avatar_default_text: hsl(0, 0%, calc(0% + var(--zd_default_text_lValue)), calc(1 + var(--zd_alpha)));
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
--dot_listItemActive: var(--zdt_cta_primary_light_bg);
|
|
10
10
|
|
|
11
11
|
/* common */
|
|
12
|
-
--zdt_disable_bg: hsl(217, 23%,
|
|
12
|
+
--zdt_disable_bg: hsl(217, 23%, 11%, 0.5);
|
|
13
|
+
--zdt_contrast_shadow: hsl(0, 0%, 100%, 1);
|
|
13
14
|
|
|
14
15
|
/* avatar */
|
|
15
16
|
--zdt_avatar_default_text: hsl(210, 7%, calc(89% + var(--zd_pureDark_text_lValue)), calc(1 + var(--zd_alpha)));
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
--zd_dark_elementText_lValue: 0%;
|
|
8
8
|
--zd_dark_border_lValue: 0%;
|
|
9
9
|
--zd_dark_boxShadow_lValue: 0%;
|
|
10
|
+
--zd_dark_plus_lValue: 0%;
|
|
10
11
|
--zd_alpha: 0;
|
|
11
12
|
--zd_bg_alpha: 0;
|
|
12
13
|
}
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
--zd_dark_elementText_lValue: -10%;
|
|
21
22
|
--zd_dark_border_lValue: 10%;
|
|
22
23
|
--zd_dark_boxShadow_lValue: 0%;
|
|
24
|
+
--zd_dark_plus_lValue: 10%;
|
|
23
25
|
--zd_alpha: 1;
|
|
24
26
|
--zd_bg_alpha: 0;
|
|
25
27
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
--zd_default_elementText_lValue: 0%;
|
|
8
8
|
--zd_default_border_lValue: 0%;
|
|
9
9
|
--zd_default_boxShadow_lValue: 0%;
|
|
10
|
+
--zd_default_plus_lValue: 0%;
|
|
10
11
|
--zd_alpha: 0;
|
|
11
12
|
--zd_bg_alpha: 0;
|
|
12
13
|
}
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
--zd_default_elementText_lValue: 10%;
|
|
21
22
|
--zd_default_border_lValue: -10%;
|
|
22
23
|
--zd_default_boxShadow_lValue: 0%;
|
|
24
|
+
--zd_default_plus_lValue: 10%;
|
|
23
25
|
--zd_alpha: 1;
|
|
24
26
|
--zd_bg_alpha: 0;
|
|
25
27
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
--zd_pureDark_elementText_lValue: 0%;
|
|
8
8
|
--zd_pureDark_border_lValue: 0%;
|
|
9
9
|
--zd_pureDark_boxShadow_lValue: 0%;
|
|
10
|
+
--zd_pureDark_plus_lValue: 0%;
|
|
10
11
|
--zd_alpha: 0;
|
|
11
12
|
--zd_bg_alpha: 0;
|
|
12
13
|
}
|
|
@@ -20,6 +21,7 @@
|
|
|
20
21
|
--zd_pureDark_elementText_lValue: -10%;
|
|
21
22
|
--zd_pureDark_border_lValue: 10%;
|
|
22
23
|
--zd_pureDark_boxShadow_lValue: 0%;
|
|
24
|
+
--zd_pureDark_plus_lValue: 10%;
|
|
23
25
|
--zd_alpha: 1;
|
|
24
26
|
--zd_bg_alpha: 0;
|
|
25
27
|
}
|
|
@@ -13,6 +13,7 @@ import '@zohodesk/variables/lib/fontFamilyVariables.module.css';
|
|
|
13
13
|
import '@zohodesk/variables/assets/transitionVariables.module.css';
|
|
14
14
|
import '@zohodesk/variables/assets/no_transitionVariables.module.css';
|
|
15
15
|
import '../common/a11y.module.css';
|
|
16
|
+
import '../common/boxShadow.module.css';
|
|
16
17
|
import style from './AppContainer.module.css';
|
|
17
18
|
import { getLibraryConfig, setLibraryConfig } from '../Provider/Config';
|
|
18
19
|
export default class AppContainer extends React.Component {
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
--avatar_boxshadow: var(--zdt_avatar_default_boxshadow);
|
|
12
12
|
--avatar_text_transform: uppercase;
|
|
13
13
|
}
|
|
14
|
+
|
|
14
15
|
.avatar {
|
|
15
16
|
composes: varClass;
|
|
16
17
|
position: relative;
|
|
@@ -21,15 +22,19 @@
|
|
|
21
22
|
border-width: var(--avatar_border_width);
|
|
22
23
|
border-style: var(--avatar_border_style);
|
|
23
24
|
}
|
|
25
|
+
|
|
24
26
|
.border {
|
|
25
27
|
border-color: var(--avatar_border_color);
|
|
26
28
|
}
|
|
29
|
+
|
|
27
30
|
.borderOnHover:hover, .borderOnActive {
|
|
28
31
|
border-color: var(--avatar_border_hoverColor);
|
|
29
32
|
}
|
|
33
|
+
|
|
30
34
|
.avatar, .primary {
|
|
31
35
|
background-color: var(--avatar_bg_color);
|
|
32
36
|
}
|
|
37
|
+
|
|
33
38
|
.shadow {
|
|
34
39
|
position: absolute;
|
|
35
40
|
height: 100%;
|
|
@@ -38,98 +43,126 @@
|
|
|
38
43
|
pointer-events: none;
|
|
39
44
|
border-radius: var(--avatar_border_radius);
|
|
40
45
|
}
|
|
46
|
+
|
|
41
47
|
[dir=ltr] .shadow {
|
|
42
48
|
left: 0;
|
|
43
49
|
}
|
|
50
|
+
|
|
44
51
|
[dir=rtl] .shadow {
|
|
45
52
|
right: 0;
|
|
46
53
|
}
|
|
54
|
+
|
|
47
55
|
.shadow.black {
|
|
48
|
-
box-shadow:
|
|
56
|
+
box-shadow: var(--bs_avatar_black);
|
|
49
57
|
}
|
|
58
|
+
|
|
50
59
|
.shadow.white {
|
|
51
|
-
box-shadow:
|
|
60
|
+
box-shadow: var(--bs_avatar_white);
|
|
52
61
|
}
|
|
62
|
+
|
|
53
63
|
.avatar, .circle {
|
|
54
64
|
border-radius: var(--avatar_border_radius);
|
|
55
65
|
}
|
|
66
|
+
|
|
56
67
|
.border {
|
|
57
68
|
--avatar_border_width: 1px;
|
|
58
69
|
}
|
|
70
|
+
|
|
59
71
|
.image {
|
|
60
72
|
width: 100%;
|
|
61
73
|
height: 100%;
|
|
62
74
|
position: absolute;
|
|
63
|
-
top:0;
|
|
75
|
+
top: 0;
|
|
64
76
|
z-index: 0;
|
|
65
77
|
border-radius: var(--avatar_border_radius);
|
|
66
78
|
}
|
|
79
|
+
|
|
67
80
|
[dir=ltr] .image {
|
|
68
|
-
left:0;
|
|
81
|
+
left: 0;
|
|
69
82
|
}
|
|
70
|
-
|
|
71
|
-
|
|
83
|
+
|
|
84
|
+
[dir=rtl] .image {
|
|
85
|
+
right: 0;
|
|
72
86
|
}
|
|
73
|
-
|
|
74
|
-
|
|
87
|
+
|
|
88
|
+
.animate {
|
|
89
|
+
composes: fadeIn modeForward from './../common/animation.module.css';
|
|
75
90
|
}
|
|
76
|
-
|
|
91
|
+
|
|
92
|
+
[dir=ltr] .animate {
|
|
77
93
|
animation-duration: var(--zd_transition2);
|
|
78
94
|
}
|
|
79
|
-
|
|
95
|
+
|
|
96
|
+
[dir=rtl] .animate {
|
|
80
97
|
animation-duration: var(--zd_transition2);
|
|
81
98
|
}
|
|
99
|
+
|
|
82
100
|
.square_small {
|
|
83
101
|
--avatar_border_radius: 4px;
|
|
84
102
|
}
|
|
103
|
+
|
|
85
104
|
.square_xsmall {
|
|
86
105
|
--avatar_border_radius: 6px;
|
|
87
106
|
}
|
|
107
|
+
|
|
88
108
|
.square_medium,
|
|
89
109
|
.square_xmedium {
|
|
90
110
|
--avatar_border_radius: 8px;
|
|
91
111
|
}
|
|
112
|
+
|
|
92
113
|
.square_large,
|
|
93
114
|
.square_xlarge {
|
|
94
115
|
--avatar_border_radius: 10px;
|
|
95
116
|
}
|
|
117
|
+
|
|
96
118
|
.none {
|
|
97
119
|
display: none;
|
|
98
120
|
}
|
|
121
|
+
|
|
99
122
|
.default {
|
|
100
123
|
--avatar_border_width: 0;
|
|
101
124
|
}
|
|
125
|
+
|
|
102
126
|
.secondary {
|
|
103
127
|
--avatar_bg_color: var(--zdt_avatar_secondary_bg);
|
|
104
128
|
}
|
|
129
|
+
|
|
105
130
|
.info {
|
|
106
131
|
--avatar_bg_color: var(--zdt_avatar_info_bg);
|
|
107
132
|
}
|
|
133
|
+
|
|
108
134
|
.initial {
|
|
109
135
|
text-transform: var(--avatar_text_transform);
|
|
110
136
|
display: inline-block;
|
|
111
137
|
}
|
|
138
|
+
|
|
112
139
|
.small {
|
|
113
140
|
--avatar_font_size: var(--zd_font_size9);
|
|
114
141
|
}
|
|
142
|
+
|
|
115
143
|
.xsmall {
|
|
116
144
|
--avatar_font_size: var(--zd_font_size12);
|
|
117
145
|
}
|
|
146
|
+
|
|
118
147
|
.medium {
|
|
119
148
|
--avatar_font_size: var(--zd_font_size14);
|
|
120
149
|
}
|
|
150
|
+
|
|
121
151
|
.xmedium {
|
|
122
152
|
--avatar_font_size: var(--zd_font_size14);
|
|
123
153
|
}
|
|
154
|
+
|
|
124
155
|
.large {
|
|
125
156
|
--avatar_font_size: var(--zd_font_size18);
|
|
126
157
|
}
|
|
158
|
+
|
|
127
159
|
.xlarge {
|
|
128
160
|
--avatar_font_size: var(--zd_font_size28);
|
|
129
161
|
}
|
|
162
|
+
|
|
130
163
|
.white {
|
|
131
164
|
--avatar_text_color: var(--zdt_avatar_white_text);
|
|
132
165
|
--avatar_border_color: var(--zdt_avatar_white_border);
|
|
133
166
|
--avatar_border_hoverColor: var(--zdt_avatar_white_borderHover);
|
|
134
167
|
--avatar_boxshadow: var(--zdt_avatar_white_boxshadow);
|
|
135
|
-
}
|
|
168
|
+
}
|
|
@@ -24,13 +24,14 @@
|
|
|
24
24
|
/* button success status default variable */
|
|
25
25
|
--button_success_border_color: var(--zdt_button_success_default_border);
|
|
26
26
|
}
|
|
27
|
+
|
|
27
28
|
.native {
|
|
28
29
|
composes: varClass;
|
|
29
30
|
/* transition: all var(--zd_transition2) ease 0s; */
|
|
30
31
|
letter-spacing: var(--button_letter_spacing);
|
|
31
32
|
opacity: var(--button_opacity);
|
|
32
|
-
transition-property: background-color, color, border;
|
|
33
|
-
transition-duration: var(--zd_transition2);
|
|
33
|
+
transition-property: background-color, color, border;
|
|
34
|
+
transition-duration: var(--zd_transition2);
|
|
34
35
|
transition-timing-function: ease;
|
|
35
36
|
border: 0;
|
|
36
37
|
cursor: var(--button_cursor);
|
|
@@ -110,14 +111,14 @@
|
|
|
110
111
|
.smallBtnprimaryfilled,
|
|
111
112
|
.mediumBtnprimary,
|
|
112
113
|
.mediumBtnprimaryfilled {
|
|
113
|
-
--button_box_shadow:
|
|
114
|
+
--button_box_shadow: var(--bs_button_primary);
|
|
114
115
|
}
|
|
115
116
|
|
|
116
117
|
.smallBtndanger,
|
|
117
118
|
.smallBtndangerfilled,
|
|
118
119
|
.mediumBtndanger,
|
|
119
120
|
.mediumBtndangerfilled {
|
|
120
|
-
--button_box_shadow:
|
|
121
|
+
--button_box_shadow: var(--bs_button_danger);
|
|
121
122
|
}
|
|
122
123
|
|
|
123
124
|
.small,
|
|
@@ -135,6 +136,7 @@
|
|
|
135
136
|
--button_min_width: initial;
|
|
136
137
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
137
138
|
}
|
|
139
|
+
|
|
138
140
|
.plainprimary:hover {
|
|
139
141
|
--button_text_color: var(--zdt_button_plainprimary_hover_text);
|
|
140
142
|
}
|
|
@@ -145,6 +147,7 @@
|
|
|
145
147
|
--button_min_width: initial;
|
|
146
148
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
147
149
|
}
|
|
150
|
+
|
|
148
151
|
.plainsecondary:hover {
|
|
149
152
|
--button_text_color: var(--zdt_button_secondary_hover_text);
|
|
150
153
|
}
|
|
@@ -159,6 +162,7 @@
|
|
|
159
162
|
.tertiaryfilled {
|
|
160
163
|
--button_border_width: 1px;
|
|
161
164
|
}
|
|
165
|
+
|
|
162
166
|
.primary:hover {
|
|
163
167
|
--button_border_color: var(--zdt_button_primary_hover_border);
|
|
164
168
|
--button_text_color: var(--zdt_button_primary_hover_text);
|
|
@@ -169,6 +173,7 @@
|
|
|
169
173
|
--button_bg_color: var(--zdt_button_primaryfill_bg);
|
|
170
174
|
--button_text_color: var(--zdt_button_primaryfill_text);
|
|
171
175
|
}
|
|
176
|
+
|
|
172
177
|
.primaryfilled:hover {
|
|
173
178
|
--button_bg_color: var(--zdt_button_primaryfill_hover_bg);
|
|
174
179
|
}
|
|
@@ -178,6 +183,7 @@
|
|
|
178
183
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
179
184
|
--button_text_color: var(--zdt_button_danger_text);
|
|
180
185
|
}
|
|
186
|
+
|
|
181
187
|
.danger:hover {
|
|
182
188
|
--button_border_color: var(--zdt_button_danger_hover_border);
|
|
183
189
|
--button_text_color: var(--zdt_button_danger_hover_text);
|
|
@@ -188,6 +194,7 @@
|
|
|
188
194
|
--button_bg_color: var(--zdt_button_dangerfill_bg);
|
|
189
195
|
--button_text_color: var(--zdt_button_dangerfill_text);
|
|
190
196
|
}
|
|
197
|
+
|
|
191
198
|
.dangerfilled:hover {
|
|
192
199
|
--button_bg_color: var(--zdt_button_dangerfill_hover_bg);
|
|
193
200
|
}
|
|
@@ -197,6 +204,7 @@
|
|
|
197
204
|
--button_bg_color: var(--zdt_button_default_bg);
|
|
198
205
|
--button_text_color: var(--zdt_button_secondary_text);
|
|
199
206
|
}
|
|
207
|
+
|
|
200
208
|
.secondary:hover {
|
|
201
209
|
--button_border_color: var(--zdt_button_secondary_hover_border);
|
|
202
210
|
--button_text_color: var(--zdt_button_secondary_hover_text);
|
|
@@ -207,6 +215,7 @@
|
|
|
207
215
|
--button_bg_color: var(--zdt_button_secondaryfill_bg);
|
|
208
216
|
--button_text_color: var(--zdt_button_secondary_text);
|
|
209
217
|
}
|
|
218
|
+
|
|
210
219
|
.secondaryfilled:hover {
|
|
211
220
|
--button_text_color: var(--zdt_button_secondary_hover_text);
|
|
212
221
|
}
|
|
@@ -216,6 +225,7 @@
|
|
|
216
225
|
--button_bg_color: var(--zdt_button_successfill_bg);
|
|
217
226
|
--button_text_color: var(--zdt_button_dangerfill_text);
|
|
218
227
|
}
|
|
228
|
+
|
|
219
229
|
.successfilled:hover {
|
|
220
230
|
--button_border_color: var(--zdt_button_successfill_hover_border);
|
|
221
231
|
--button_bg_color: var(--zdt_button_successfill_hover_bg);
|
|
@@ -226,6 +236,7 @@
|
|
|
226
236
|
--button_bg_color: var(--zdt_button_tertiaryfill_bg);
|
|
227
237
|
--button_text_color: var(--zdt_button_dangerfill_text);
|
|
228
238
|
}
|
|
239
|
+
|
|
229
240
|
.tertiaryfilled:hover {
|
|
230
241
|
--button_bg_color: var(--zdt_button_tertiaryfill_hover_bg);
|
|
231
242
|
}
|
|
@@ -325,18 +336,23 @@
|
|
|
325
336
|
.loadingelement {
|
|
326
337
|
--button_loading_bg_color: var(--zdt_button_primaryfill_bg);
|
|
327
338
|
}
|
|
339
|
+
|
|
328
340
|
.primaryelement {
|
|
329
341
|
--button_loading_bg_color: var(--zdt_button_loading_default_bg);
|
|
330
342
|
}
|
|
343
|
+
|
|
331
344
|
.primaryfilledelement {
|
|
332
345
|
--button_loading_bg_color: var(--zdt_button_primaryfill_bg);
|
|
333
346
|
}
|
|
347
|
+
|
|
334
348
|
.dangerelement {
|
|
335
349
|
--button_loading_bg_color: var(--zdt_button_loading_default_bg);
|
|
336
350
|
}
|
|
351
|
+
|
|
337
352
|
.dangerfilledelement {
|
|
338
353
|
--button_loading_bg_color: var(--zdt_button_dangerfill_bg);
|
|
339
354
|
}
|
|
355
|
+
|
|
340
356
|
.loadingelement:after,
|
|
341
357
|
.primaryelement:after,
|
|
342
358
|
.primaryfilledelement:after,
|
|
@@ -365,13 +381,13 @@
|
|
|
365
381
|
|
|
366
382
|
.primaryelement:before {
|
|
367
383
|
--button_loading_bg_color: var(--zdt_button_primaryfill_bg);
|
|
368
|
-
--zdt_button_loading_linear_gradient:var(--zdt_button_loading_primary_linear_gradient);
|
|
384
|
+
--zdt_button_loading_linear_gradient: var(--zdt_button_loading_primary_linear_gradient);
|
|
369
385
|
transform: rotateX(180deg);
|
|
370
386
|
}
|
|
371
387
|
|
|
372
388
|
.dangerelement:before {
|
|
373
389
|
--button_loading_bg_color: var(--zdt_button_dangerfill_bg);
|
|
374
|
-
--zdt_button_loading_linear_gradient:var(--zdt_button_loading_danger_linear_gradient);
|
|
390
|
+
--zdt_button_loading_linear_gradient: var(--zdt_button_loading_danger_linear_gradient);
|
|
375
391
|
transform: rotateX(180deg);
|
|
376
392
|
}
|
|
377
393
|
|
|
@@ -522,4 +538,6 @@
|
|
|
522
538
|
}
|
|
523
539
|
}
|
|
524
540
|
|
|
525
|
-
.loader{
|
|
541
|
+
.loader {
|
|
542
|
+
color: var(--dot_mirror)
|
|
543
|
+
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
--buttongroup_border_style: solid;
|
|
8
8
|
--buttongroup_border_color: var(--zdt_buttongroup_default_border);
|
|
9
9
|
}
|
|
10
|
+
|
|
10
11
|
.buttonGroup {
|
|
11
12
|
composes: varClass;
|
|
12
13
|
composes: cboth from '../common/common.module.css';
|
|
@@ -19,71 +20,88 @@
|
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
.footer {
|
|
22
|
-
--buttongroup_box_shadow:
|
|
23
|
+
--buttongroup_box_shadow: var(--bs_buttongroup_footer);
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
[dir=ltr] .footer {
|
|
26
|
-
--buttongroup_padding: var(--zd_size20) 0 var(--zd_size20) var(--zd_size60)
|
|
27
|
+
--buttongroup_padding: var(--zd_size20) 0 var(--zd_size20) var(--zd_size60)
|
|
28
|
+
/*rtl: var(--zd_size20) var(--zd_size60) var(--zd_size20) 0*/
|
|
29
|
+
;
|
|
27
30
|
}
|
|
28
31
|
|
|
29
32
|
[dir=rtl] .footer {
|
|
30
|
-
--buttongroup_padding: var(--zd_size20) var(--
|
|
33
|
+
--buttongroup_padding: var(--zd_size20) 0 var(--zd_size20) var(--zd_size60) ;
|
|
31
34
|
}
|
|
35
|
+
|
|
32
36
|
.header {
|
|
33
37
|
--buttongroup_padding: var(--zd_size12) var(--zd_size20);
|
|
34
38
|
--buttongroup_border_width: 0 0 1px 0;
|
|
35
39
|
}
|
|
36
|
-
|
|
40
|
+
|
|
41
|
+
[dir=ltr] .tab>div button:first-child {
|
|
37
42
|
border-radius: 5px 0 0 5px;
|
|
38
43
|
}
|
|
39
|
-
|
|
44
|
+
|
|
45
|
+
[dir=rtl] .tab>div button:first-child {
|
|
40
46
|
border-radius: 0 5px 5px 0;
|
|
41
47
|
}
|
|
42
|
-
|
|
48
|
+
|
|
49
|
+
[dir=ltr] .tab>div button:last-child {
|
|
43
50
|
border-radius: 0 5px 5px 0;
|
|
44
51
|
}
|
|
45
|
-
|
|
52
|
+
|
|
53
|
+
[dir=rtl] .tab>div button:last-child {
|
|
46
54
|
border-radius: 5px 0 0 5px;
|
|
47
55
|
}
|
|
48
56
|
|
|
49
57
|
.alignleft {
|
|
50
58
|
composes: fleft from '../common/common.module.css';
|
|
51
59
|
}
|
|
60
|
+
|
|
52
61
|
.alignright {
|
|
53
62
|
composes: fright from '../common/common.module.css';
|
|
54
63
|
}
|
|
64
|
+
|
|
55
65
|
.aligncenter {
|
|
56
66
|
composes: tcenter from '../common/common.module.css';
|
|
57
67
|
}
|
|
58
|
-
|
|
68
|
+
|
|
69
|
+
[dir=ltr] .alignleft>button:first-child {
|
|
59
70
|
margin-left: 0;
|
|
60
71
|
}
|
|
61
|
-
|
|
72
|
+
|
|
73
|
+
[dir=rtl] .alignleft>button:first-child {
|
|
62
74
|
margin-right: 0;
|
|
63
75
|
}
|
|
64
|
-
|
|
76
|
+
|
|
77
|
+
[dir=ltr] .alignleft>button {
|
|
65
78
|
margin-left: var(--zd_size15);
|
|
66
79
|
}
|
|
67
|
-
|
|
80
|
+
|
|
81
|
+
[dir=rtl] .alignleft>button {
|
|
68
82
|
margin-right: var(--zd_size15);
|
|
69
83
|
}
|
|
70
84
|
|
|
71
|
-
[dir=ltr] .alignright
|
|
85
|
+
[dir=ltr] .alignright>button:last-child {
|
|
72
86
|
margin-right: 0;
|
|
73
87
|
}
|
|
74
88
|
|
|
75
|
-
[dir=rtl] .alignright
|
|
89
|
+
[dir=rtl] .alignright>button:last-child {
|
|
76
90
|
margin-left: 0;
|
|
77
91
|
}
|
|
78
|
-
|
|
92
|
+
|
|
93
|
+
[dir=ltr] .alignright>button {
|
|
79
94
|
margin-right: var(--zd_size15);
|
|
80
95
|
}
|
|
81
|
-
|
|
96
|
+
|
|
97
|
+
[dir=rtl] .alignright>button {
|
|
82
98
|
margin-left: var(--zd_size15);
|
|
83
99
|
}
|
|
84
|
-
|
|
100
|
+
|
|
101
|
+
[dir=ltr] .aligncenter>button {
|
|
85
102
|
margin-right: var(--zd_size15);
|
|
86
103
|
}
|
|
87
|
-
|
|
104
|
+
|
|
105
|
+
[dir=rtl] .aligncenter>button {
|
|
88
106
|
margin-left: var(--zd_size15);
|
|
89
|
-
}
|
|
107
|
+
}
|