chuijs 3.6.2 → 3.6.3
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/framework/appLayout/default/global_style.css +8 -6
- package/framework/appLayout/default/main_theme_style.css +2 -2
- package/framework/components/chui_inputs/chui_check_box/styles.css +1 -1
- package/framework/components/chui_inputs/chui_file/styles.css +1 -1
- package/framework/components/chui_inputs/chui_multi_combo_box/styles.css +1 -1
- package/framework/modules/chui_fonts.js +169 -14
- package/package.json +1 -1
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
--main_padding: 8px 11px;
|
|
4
4
|
--test_padding: 8px;
|
|
5
5
|
--header_icon_size: 13pt;
|
|
6
|
-
--font_default_size:
|
|
7
|
-
--font_labels_size:
|
|
8
|
-
--font_notification_size:
|
|
9
|
-
--border_radius: 0.
|
|
6
|
+
--font_default_size: 14px;
|
|
7
|
+
--font_labels_size: 12px;
|
|
8
|
+
--font_notification_size: 12px;
|
|
9
|
+
--border_radius: 0.50rem !important;;
|
|
10
10
|
--margin: 6px;
|
|
11
11
|
--box_shadow_main: 0 1px 5px 1px rgb(0 0 0 / 20%);
|
|
12
12
|
--transition_time: .165s
|
|
@@ -25,7 +25,8 @@ strong {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
* {
|
|
28
|
-
font-family: '
|
|
28
|
+
font-family: 'chui_I';
|
|
29
|
+
font-style: normal;
|
|
29
30
|
user-select: none;
|
|
30
31
|
outline: none;
|
|
31
32
|
transition: all var(--transition_time);
|
|
@@ -36,7 +37,8 @@ strong {
|
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
*:before {
|
|
39
|
-
font-family: '
|
|
40
|
+
font-family: 'chui_I';
|
|
41
|
+
font-style: normal;
|
|
40
42
|
user-select: none;
|
|
41
43
|
outline: none;
|
|
42
44
|
transition: all var(--transition_time);
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
--header_background: rgba(226, 226, 226, 0.65);
|
|
11
11
|
--header_background_drop: rgb(246, 246, 246, 1);
|
|
12
12
|
/* Обводка */
|
|
13
|
-
--border_color:
|
|
13
|
+
--border_color: rgba(240, 240, 240);
|
|
14
14
|
/* Элементы */
|
|
15
15
|
/* Кнопка */
|
|
16
16
|
--button_border_color: rgb(240, 240, 240);
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
--header_background: rgba(40, 40, 40, 0.65);
|
|
62
62
|
--header_background_drop: rgba(48, 48, 48, 1);
|
|
63
63
|
/* Обводка */
|
|
64
|
-
--border_color: rgb(
|
|
64
|
+
--border_color: rgb(60, 60, 60);
|
|
65
65
|
/* Элементы */
|
|
66
66
|
/* Кнопка */
|
|
67
67
|
--button_border_color: rgb(54, 54, 54);
|
|
@@ -32,7 +32,7 @@ checkbox {
|
|
|
32
32
|
align-items: center;
|
|
33
33
|
justify-content: center;
|
|
34
34
|
color: var(--element_background_2);
|
|
35
|
-
font-family: '
|
|
35
|
+
font-family: 'chui_I';
|
|
36
36
|
background: var(--element_background);
|
|
37
37
|
border: none;
|
|
38
38
|
box-shadow: 0 0 1px 0 var(--element_background_2);
|
|
@@ -76,7 +76,7 @@ input[type=file]::file-selector-button {
|
|
|
76
76
|
margin: 0 var(--margin) 0 0;
|
|
77
77
|
color: var(--text_color);
|
|
78
78
|
transition: all var(--transition_time);
|
|
79
|
-
font-family: '
|
|
79
|
+
font-family: 'chui_I';
|
|
80
80
|
background: var(--button_background);
|
|
81
81
|
border: 1px solid var(--button_border_color);
|
|
82
82
|
}
|
|
@@ -171,7 +171,7 @@ label input {
|
|
|
171
171
|
align-items: center;
|
|
172
172
|
justify-content: center;
|
|
173
173
|
color: var(--ap_slider_background);
|
|
174
|
-
font-family: '
|
|
174
|
+
font-family: 'chui_I';
|
|
175
175
|
background: var(--ap_slider_background);
|
|
176
176
|
border: none;
|
|
177
177
|
box-shadow: 0 0 1px 0 var(--ap_slider_background);
|