halleyx-ui-framework 4.1.8 → 4.2.0
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/README.md +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/es/index.css +1 -1
- package/dist/es/index.js +1 -1
- package/dist/src/assets/icon-style.css +1 -1
- package/dist/src/assets/icons/icon-style(old).css +1 -1
- package/dist/src/assets/icons/icon-style.css +1 -1
- package/dist/src/assets/styles/accordion.scss +99 -99
- package/dist/src/assets/styles/base.scss +2 -1
- package/dist/src/assets/styles/breadcrumb.scss +15 -15
- package/dist/src/assets/styles/buttons.scss +4 -4
- package/dist/src/assets/styles/calendar.scss +343 -346
- package/dist/src/assets/styles/cards.scss +17 -16
- package/dist/src/assets/styles/colorPicker.scss +15 -15
- package/dist/src/assets/styles/colorpalette.scss +138 -139
- package/dist/src/assets/styles/common/var.scss +213 -215
- package/dist/src/assets/styles/componentlayout.scss +126 -128
- package/dist/src/assets/styles/contextMenu.scss +46 -47
- package/dist/src/assets/styles/customdropdown.scss +113 -115
- package/dist/src/assets/styles/dashboard.scss +764 -770
- package/dist/src/assets/styles/dataview.scss +203 -206
- package/dist/src/assets/styles/divider.scss +8 -8
- package/dist/src/assets/styles/dottedPagination.scss +1 -1
- package/dist/src/assets/styles/draggables.scss +36 -39
- package/dist/src/assets/styles/drawer.scss +68 -53
- package/dist/src/assets/styles/errorpage.scss +61 -64
- package/dist/src/assets/styles/fileupload.scss +199 -205
- package/dist/src/assets/styles/fonts.scss +14 -14
- package/dist/src/assets/styles/icon.scss +1 -1
- package/dist/src/assets/styles/imagegallery.scss +169 -167
- package/dist/src/assets/styles/importProgress.scss +1 -1
- package/dist/src/assets/styles/index.scss +18 -17
- package/dist/src/assets/styles/inputfields.scss +44 -46
- package/dist/src/assets/styles/inputitems.scss +315 -318
- package/dist/src/assets/styles/label.scss +48 -54
- package/dist/src/assets/styles/loaders.scss +1 -1
- package/dist/src/assets/styles/mixins/_var.scss +31 -37
- package/dist/src/assets/styles/mixins/functions.scss +7 -7
- package/dist/src/assets/styles/modalwindow.scss +100 -103
- package/dist/src/assets/styles/newtable.scss +10 -23
- package/dist/src/assets/styles/objectViewer.scss +80 -80
- package/dist/src/assets/styles/pagination.scss +6 -6
- package/dist/src/assets/styles/rating.scss +2 -2
- package/dist/src/assets/styles/scrollbar.scss +14 -14
- package/dist/src/assets/styles/search.scss +162 -169
- package/dist/src/assets/styles/select.scss +455 -480
- package/dist/src/assets/styles/sidebar.scss +2 -3
- package/dist/src/assets/styles/signup.scss +118 -128
- package/dist/src/assets/styles/slideControl.scss +1 -0
- package/dist/src/assets/styles/source_content.scss +13 -13
- package/dist/src/assets/styles/speeddial.scss +152 -163
- package/dist/src/assets/styles/style.css.map +12 -12
- package/dist/src/assets/styles/switch.scss +177 -189
- package/dist/src/assets/styles/tablev2.scss +140 -143
- package/dist/src/assets/styles/tabs.scss +48 -49
- package/dist/src/assets/styles/tag.scss +3 -3
- package/dist/src/assets/styles/texteditor.scss +165 -172
- package/dist/src/assets/styles/timeline.scss +384 -400
- package/dist/src/assets/styles/tooltip.scss +52 -72
- package/dist/src/assets/styles/tree.scss +13 -15
- package/dist/src/assets/styles/treeSelect.scss +8 -8
- package/dist/src/assets/styles/variables.scss +9 -9
- package/dist/src/assets/styles/visualbuilder.scss +362 -366
- package/dist/umd/index.umd.css +1 -1
- package/dist/umd/index.umd.js +1 -1
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
@use
|
|
2
|
-
@use
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use 'sass:math';
|
|
3
3
|
/*/* Element Chalk Variables */
|
|
4
|
-
@import
|
|
5
|
-
@import
|
|
4
|
+
@import '../mixins/config.scss';
|
|
5
|
+
@import '../mixins/functions.scss';
|
|
6
6
|
|
|
7
7
|
$--types: primary, success, warning, error, info;
|
|
8
8
|
|
|
@@ -19,77 +19,77 @@ $--colors: map.deep-merge(
|
|
|
19
19
|
"light": #a8dec9,
|
|
20
20
|
"lighter": #e4fff5,
|
|
21
21
|
),
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
'success': (
|
|
23
|
+
'dark': #00954a,
|
|
24
|
+
'base': #02b55c,
|
|
25
|
+
'light': #dcf9ea,
|
|
26
26
|
),
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
'warning': (
|
|
28
|
+
'dark': #ff9500,
|
|
29
|
+
'base': #f8a523,
|
|
30
|
+
'light': #f9ecd7,
|
|
31
31
|
),
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
'error': (
|
|
33
|
+
'dark': #fc3232,
|
|
34
|
+
'base': #ff5050,
|
|
35
|
+
'light': #ffe8e8,
|
|
36
36
|
),
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
'info': (
|
|
38
|
+
'dark': #0065b2,
|
|
39
|
+
'base': #2879b7,
|
|
40
|
+
'light': #d8edfc,
|
|
41
41
|
),
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
'link': (
|
|
43
|
+
'dark': #143c5b,
|
|
44
|
+
'base': #2879b7,
|
|
45
|
+
'light': #d8edfc,
|
|
46
46
|
),
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
'disable': (
|
|
48
|
+
'dark': #6f5c90,
|
|
49
|
+
'base': #ece9f1,
|
|
50
|
+
'text': #d0c9d6,
|
|
51
51
|
),
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
|
|
53
|
+
'sidebar': (
|
|
54
|
+
'base': #001723,
|
|
55
55
|
),
|
|
56
56
|
),
|
|
57
57
|
$--colors
|
|
58
58
|
);
|
|
59
59
|
|
|
60
|
-
$--color-white: map.get($--colors,
|
|
61
|
-
$--color-black: map.get($--colors,
|
|
60
|
+
$--color-white: map.get($--colors, 'white') !default;
|
|
61
|
+
$--color-black: map.get($--colors, 'black') !default;
|
|
62
62
|
/*Primary colors*/
|
|
63
|
-
$--color-primary-dark: map.get($--colors,
|
|
64
|
-
$--color-primary: map.get($--colors,
|
|
65
|
-
$--color-primary-light: map.get($--colors,
|
|
66
|
-
$--color-primary-lighter: map.get($--colors,
|
|
63
|
+
$--color-primary-dark: map.get($--colors, 'primary', 'dark') !default;
|
|
64
|
+
$--color-primary: map.get($--colors, 'primary', 'base') !default;
|
|
65
|
+
$--color-primary-light: map.get($--colors, 'primary', 'light') !default;
|
|
66
|
+
$--color-primary-lighter: map.get($--colors, 'primary', 'lighter') !default;
|
|
67
67
|
/*success colors*/
|
|
68
|
-
$--color-success-dark: map.get($--colors,
|
|
69
|
-
$--color-success: map.get($--colors,
|
|
70
|
-
$--color-success-light: map.get($--colors,
|
|
68
|
+
$--color-success-dark: map.get($--colors, 'success', 'dark') !default;
|
|
69
|
+
$--color-success: map.get($--colors, 'success', 'base') !default;
|
|
70
|
+
$--color-success-light: map.get($--colors, 'success', 'light') !default;
|
|
71
71
|
/*warning colors*/
|
|
72
|
-
$--color-warning-dark: map.get($--colors,
|
|
73
|
-
$--color-warning: map.get($--colors,
|
|
74
|
-
$--color-warning-light: map.get($--colors,
|
|
72
|
+
$--color-warning-dark: map.get($--colors, 'warning', 'dark') !default;
|
|
73
|
+
$--color-warning: map.get($--colors, 'warning', 'base') !default;
|
|
74
|
+
$--color-warning-light: map.get($--colors, 'warning', 'light') !default;
|
|
75
75
|
/*error colors*/
|
|
76
|
-
$--color-error-dark: map.get($--colors,
|
|
77
|
-
$--color-error: map.get($--colors,
|
|
78
|
-
$--color-error-light: map.get($--colors,
|
|
76
|
+
$--color-error-dark: map.get($--colors, 'error', 'dark') !default;
|
|
77
|
+
$--color-error: map.get($--colors, 'error', 'base') !default;
|
|
78
|
+
$--color-error-light: map.get($--colors, 'error', 'light') !default;
|
|
79
79
|
/*info colors*/
|
|
80
|
-
$--color-info-dark: map.get($--colors,
|
|
81
|
-
$--color-info: map.get($--colors,
|
|
82
|
-
$--color-info-light: map.get($--colors,
|
|
80
|
+
$--color-info-dark: map.get($--colors, 'info', 'dark') !default;
|
|
81
|
+
$--color-info: map.get($--colors, 'info', 'base') !default;
|
|
82
|
+
$--color-info-light: map.get($--colors, 'info', 'light') !default;
|
|
83
83
|
/*link colors*/
|
|
84
|
-
$--color-link-dark: map.get($--colors,
|
|
85
|
-
$--color-link: map.get($--colors,
|
|
86
|
-
$--color-link-light: map.get($--colors,
|
|
84
|
+
$--color-link-dark: map.get($--colors, 'link', 'dark') !default;
|
|
85
|
+
$--color-link: map.get($--colors, 'link', 'base') !default;
|
|
86
|
+
$--color-link-light: map.get($--colors, 'link', 'light') !default;
|
|
87
87
|
/*disable colors*/
|
|
88
|
-
$--color-disable-dark: map.get($--colors,
|
|
89
|
-
$--color-disable: map.get($--colors,
|
|
90
|
-
$--color-disable-text: map.get($--colors,
|
|
88
|
+
$--color-disable-dark: map.get($--colors, 'disable', 'dark') !default;
|
|
89
|
+
$--color-disable: map.get($--colors, 'disable', 'base') !default;
|
|
90
|
+
$--color-disable-text: map.get($--colors, 'disable', 'text') !default;
|
|
91
91
|
|
|
92
|
-
$--color-sidebar: map.get($--colors,
|
|
92
|
+
$--color-sidebar: map.get($--colors, 'sidebar', 'base') !default;
|
|
93
93
|
|
|
94
94
|
$--text-color: () !default;
|
|
95
95
|
$--text-color: map.merge(
|
|
@@ -115,10 +115,10 @@ $--text-color: map.merge(
|
|
|
115
115
|
$--border-color: () !default;
|
|
116
116
|
$--border-color: map.merge(
|
|
117
117
|
(
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
118
|
+
'': #d8d8d8,
|
|
119
|
+
'dark': #a6a6a6,
|
|
120
|
+
'light': #ebebeb,
|
|
121
|
+
'lighter': #f7f7f7,
|
|
122
122
|
),
|
|
123
123
|
$--border-color
|
|
124
124
|
);
|
|
@@ -126,8 +126,8 @@ $--border-color: map.merge(
|
|
|
126
126
|
$--variables: () !default;
|
|
127
127
|
$--variables: map.merge(
|
|
128
128
|
(
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
'border-radius': 5px,
|
|
130
|
+
'border-radius-round': 100px,
|
|
131
131
|
),
|
|
132
132
|
$--variables
|
|
133
133
|
);
|
|
@@ -136,7 +136,7 @@ $--line-height: map.merge(
|
|
|
136
136
|
(
|
|
137
137
|
xs: 1.125rem,
|
|
138
138
|
sm: 1.25rem,
|
|
139
|
-
|
|
139
|
+
'': 1.5rem,
|
|
140
140
|
lg: 1.75rem,
|
|
141
141
|
xl: 1.875rem,
|
|
142
142
|
xxl: 2rem,
|
|
@@ -146,37 +146,37 @@ $--line-height: map.merge(
|
|
|
146
146
|
$--font: () !default;
|
|
147
147
|
$--font: map.deep-merge(
|
|
148
148
|
(
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
149
|
+
'type': (
|
|
150
|
+
'title': 'QuickSand',
|
|
151
|
+
'content': 'OpenSans',
|
|
152
152
|
),
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
153
|
+
'header-size': (
|
|
154
|
+
'': 2.25rem,
|
|
155
|
+
'sm': 1.875rem,
|
|
156
|
+
'lg': 3rem,
|
|
157
|
+
'xl': 3.75rem,
|
|
158
|
+
'xxl': 4.5rem,
|
|
159
159
|
),
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
160
|
+
'content-size': (
|
|
161
|
+
'': 1rem,
|
|
162
|
+
'xs': 0.75rem,
|
|
163
|
+
'sm': 0.875rem,
|
|
164
|
+
'lg': 1.125rem,
|
|
165
|
+
'xl': 1.25rem,
|
|
166
166
|
),
|
|
167
167
|
),
|
|
168
168
|
$--font
|
|
169
169
|
);
|
|
170
170
|
|
|
171
171
|
/*Fonts*/
|
|
172
|
-
$dev:
|
|
173
|
-
@debug
|
|
174
|
-
$--font-path:
|
|
172
|
+
$dev: true;
|
|
173
|
+
@debug '#{$dev}';
|
|
174
|
+
$--font-path: '../fonts' !default;
|
|
175
175
|
$--font-pathd: -font-path($dev);
|
|
176
|
-
@debug
|
|
177
|
-
$--font-display:
|
|
178
|
-
$--font-type-content: map.get($--font,
|
|
179
|
-
$--font-type-title: map.get($--font,
|
|
176
|
+
@debug '#{$--font-pathd}';
|
|
177
|
+
$--font-display: 'auto' !default;
|
|
178
|
+
$--font-type-content: map.get($--font, 'type', 'content');
|
|
179
|
+
$--font-type-title: map.get($--font, 'type', 'title');
|
|
180
180
|
$--icon: () !default;
|
|
181
181
|
$--icon: map.merge(
|
|
182
182
|
(
|
|
@@ -195,133 +195,131 @@ $border-color-secondary: #ebebeb; /*changed as border-color-light*/
|
|
|
195
195
|
|
|
196
196
|
$grey: #ebebeb; /*changed as border-color-light*/
|
|
197
197
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
}
|
|
327
|
-
|
|
198
|
+
$grey-light: #f7f7f7; /*changed as border-color-lighter*/
|
|
199
|
+
|
|
200
|
+
$grey-dark: #a6a6a6; /*changed as border-color-dark*/
|
|
201
|
+
|
|
202
|
+
$font-path: $--font-pathd;
|
|
203
|
+
|
|
204
|
+
$primary-success-dark: #00954a;
|
|
205
|
+
$primary-success: #02b55c;
|
|
206
|
+
$secondary-success: #dcf9ea;
|
|
207
|
+
|
|
208
|
+
$primary-error-dark: #fc3232;
|
|
209
|
+
$primary-error: #ff5050;
|
|
210
|
+
$secondary-error: #ffe8e8;
|
|
211
|
+
|
|
212
|
+
$primary-info-dark: #0065b2;
|
|
213
|
+
$primary-info: #2879b7;
|
|
214
|
+
$secondary-info: #d8edfc;
|
|
215
|
+
|
|
216
|
+
$primary-warning-dark: #ff9500;
|
|
217
|
+
$primary-warning: #f8a523;
|
|
218
|
+
$secondary-warning: #f9ecd7;
|
|
219
|
+
|
|
220
|
+
$primary-link: #2879b7;
|
|
221
|
+
|
|
222
|
+
$secondary-link: #d8edfc;
|
|
223
|
+
|
|
224
|
+
$primary-color: #54bd95;
|
|
225
|
+
|
|
226
|
+
$primary-bg-light: #a8dec9;
|
|
227
|
+
|
|
228
|
+
$primary-color-dark: #265e4b;
|
|
229
|
+
|
|
230
|
+
$primary-disabled: #ece9f1;
|
|
231
|
+
$primary-disabled-text: #d0c9d6;
|
|
232
|
+
|
|
233
|
+
$primary-color-light: #a8dec9;
|
|
234
|
+
$primary-color-light-opacity: #e4fff5;
|
|
235
|
+
|
|
236
|
+
$secondary-color: #ffffff;
|
|
237
|
+
|
|
238
|
+
$secondary-color-green-light: #dcfae9;
|
|
239
|
+
|
|
240
|
+
$secondary-color-red: #ff5050;
|
|
241
|
+
|
|
242
|
+
$secondary-color-blue: #2879b7;
|
|
243
|
+
|
|
244
|
+
$secondary-color-blue-light: #d8edfc;
|
|
245
|
+
|
|
246
|
+
$secondary-color-dark: #161c28;
|
|
247
|
+
|
|
248
|
+
$primary-text-color: #fbfbfb;
|
|
249
|
+
|
|
250
|
+
/*Testing
|
|
251
|
+
$--dev:$dev;
|
|
252
|
+
*/
|
|
253
|
+
|
|
254
|
+
$font-color: #191a15; /*changed as text-color-primary*/
|
|
255
|
+
|
|
256
|
+
$sidebar-color: #222938; /*changed as color-sidebar*/
|
|
257
|
+
|
|
258
|
+
$primary-tree-text: #222f2b; /*changed as text-color-tree*/
|
|
259
|
+
|
|
260
|
+
$gradiant-left: linear-gradient(to left, #54bd95, #265e4b);
|
|
261
|
+
|
|
262
|
+
$gradiant-right: linear-gradient(to right, #54bd95, #265e4b);
|
|
263
|
+
|
|
264
|
+
$gradiant-down: linear-gradient(180deg, #54bd95, #265e4b);
|
|
265
|
+
|
|
266
|
+
$gradiant-up: linear-gradient(360deg, #54bd95, #265e4b);
|
|
267
|
+
|
|
268
|
+
$border-radius: 5px; /*changed as border-radius*/
|
|
269
|
+
|
|
270
|
+
$border-radius-round: 100px; /*changed as border-radius-round*/
|
|
271
|
+
|
|
272
|
+
/* Standard font styles */
|
|
273
|
+
|
|
274
|
+
$title-font: QuickSand; /*changed as font-type-tittle*/
|
|
275
|
+
|
|
276
|
+
$content-font: OpenSans; /*changed as font-type-content*/
|
|
277
|
+
|
|
278
|
+
$icon-xs: 1rem; /*changed as icon-size-xs*/
|
|
279
|
+
|
|
280
|
+
$icon-sm: 1.25rem; /*changed as icon-size-sm*/
|
|
281
|
+
|
|
282
|
+
$icon-md: 1.5rem; /*changed as icon-size-md*/
|
|
283
|
+
|
|
284
|
+
$icon-lr: 2rem; /*changed as icon-size-lg*/
|
|
285
|
+
|
|
286
|
+
$icon-xl: 2.25rem; /*changed as icon-size-xl*/
|
|
287
|
+
|
|
288
|
+
$header-font-size: 20px; /*changed as icon-size-tittle*/
|
|
289
|
+
|
|
290
|
+
/* Standard header font styles */
|
|
291
|
+
|
|
292
|
+
$font-h-xxl: 4.5rem; /*changed as font-header-size-xxl*/
|
|
293
|
+
|
|
294
|
+
$font-h-xl: 3.75rem; /*changed as font-header-size-xl*/
|
|
295
|
+
|
|
296
|
+
$font-h-lg: 3rem; /*changed as font-header-size-lg*/
|
|
297
|
+
|
|
298
|
+
$font-h-md: 2.25rem; /*changed as font-header-size*/
|
|
299
|
+
|
|
300
|
+
$font-h-sm: 1.875rem; /*changed as font-header-size-sm*/
|
|
301
|
+
/*line-height*/
|
|
302
|
+
$line-height-xxl: 2rem; /*changed as line-height-tittle*/
|
|
303
|
+
$line-height-xl: 1.875rem; /*changed as line-height-tittle*/
|
|
304
|
+
$line-height-lg: 1.75rem; /*changed as line-height-tittle*/
|
|
305
|
+
$line-height-md: 1.5rem; /*changed as line-height-tittle*/
|
|
306
|
+
$line-height-sm: 1.25rem; /*changed as line-height-tittle*/
|
|
307
|
+
$line-height-xs: 1.125rem; /*changed as line-height-tittle*/
|
|
308
|
+
/* Standard content font styles */
|
|
309
|
+
|
|
310
|
+
$font-c-xl: 1.25rem; /*changed as font-content-size-xl*/
|
|
311
|
+
|
|
312
|
+
$font-c-lg: 1.125rem; /*changed as font-content-size-lg*/
|
|
313
|
+
|
|
314
|
+
$font-c-md: 1rem; /*changed as font-content-size*/
|
|
315
|
+
|
|
316
|
+
$font-c-sm: 0.875rem; /*changed as font-content-size-sm*/
|
|
317
|
+
|
|
318
|
+
$font-c-xs: 0.75rem; /*changed as font-content-xs*/
|
|
319
|
+
|
|
320
|
+
.right-panel {
|
|
321
|
+
font-family: $content-font;
|
|
322
|
+
}
|
|
323
|
+
.left-panel {
|
|
324
|
+
font-family: $content-font;
|
|
325
|
+
}
|