ui-theme-igc-effect 1.4.11 → 1.4.13
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/dist/themes/igcEffect/Theme.css +32 -32
- package/dist/themes/igcEffect/_color/Theme_color_igcEffectCustom.css +28 -26
- package/dist/themes/igcEffect/_color/Theme_color_igcEffectDark.css +112 -112
- package/dist/themes/igcEffect/_color/Theme_color_igcEffectDefault.css +110 -110
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectButton.css +15 -15
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectCheckbox.css +35 -35
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectCommon.css +28 -24
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectDatePicker.css +3 -3
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectRctable.css +55 -55
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectSelect.css +196 -191
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectSwitch.css +39 -10
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectTabs.css +25 -25
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectTextField.css +44 -43
- package/dist/themes/igcEffect/_component/Theme_component_igcEffectTooltip.css +5 -5
- package/dist/themes/igcEffect/_control/Theme_control_igcEffect.css +19 -19
- package/dist/themes/igcEffect/_font/Theme_font_igcEffect.css +107 -107
- package/dist/themes/igcEffect/_shadow/Theme_shadow_igcEffect.css +8 -8
- package/dist/themes/igcEffect/_size/Theme_size_igcEffect.css +27 -27
- package/dist/themes/igcEffect/_space/Theme_space_igcEffect.css +14 -14
- package/package.json +36 -36
|
@@ -1,10 +1,39 @@
|
|
|
1
|
-
.Theme_control_igcEffect .
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
1
|
+
.Theme_control_igcEffect .Switch_view_primary {
|
|
2
|
+
& .Switch-Input:disabled {
|
|
3
|
+
opacity: 0.4;
|
|
4
|
+
--background-color: var(--color-control-bg-disable);
|
|
5
|
+
--content-color: var(--color-control-typo-primary);
|
|
6
|
+
|
|
7
|
+
&:checked {
|
|
8
|
+
--background-color: var(--color-control-bg-primary);
|
|
9
|
+
--content-color: var(--color-control-typo-primary);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
& .Switch-Input:not(:checked),
|
|
14
|
+
& .Switch-Input:not(:checked):hover {
|
|
15
|
+
--border-color: var(--color-control-bg-border-default);
|
|
16
|
+
--content-color: var(--color-bg-default);
|
|
17
|
+
--background-color: var(--color-control-bg-border-default);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.Theme_control_igcEffect .Switch_size_l {
|
|
22
|
+
--switch-circle-size: 18px;
|
|
23
|
+
|
|
24
|
+
& .Switch-Input {
|
|
25
|
+
height: 22px;
|
|
26
|
+
|
|
27
|
+
&::before {
|
|
28
|
+
box-shadow: 0px 2px 4px 0px rgba(0, 35, 11, 0.2);
|
|
29
|
+
|
|
30
|
+
transform: translateX(
|
|
31
|
+
calc((var(--box-height) - var(--switch-border-gap)) * -1 - 1px)
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:checked::before {
|
|
36
|
+
transform: translateX(-1px);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
.Theme_control_igcEffect .Tabs .MixFocus {
|
|
2
|
-
--mix-focus-color-one: transparent;
|
|
3
|
-
--mix-focus-color-two: transparent;
|
|
4
|
-
--mix-focus-animation: none;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.Theme_control_igcEffect .Tabs .TabsLine_type_running {
|
|
8
|
-
--line-thickness: 4px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.Theme_control_igcEffect .Tabs .ListItemGrid-Slot {
|
|
12
|
-
font-family: var(--font-primary);
|
|
13
|
-
line-height: 18px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.Theme_control_igcEffect .Tabs .ListItemGrid-Slot_position_center {
|
|
17
|
-
color: var(--color-typo-primary);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.Theme_control_igcEffect
|
|
21
|
-
.Tabs
|
|
22
|
-
.TabsTab_checked
|
|
23
|
-
.ListItemGrid-Slot_position_center {
|
|
24
|
-
color: var(--color-typo-system);
|
|
25
|
-
}
|
|
1
|
+
.Theme_control_igcEffect .Tabs .MixFocus {
|
|
2
|
+
--mix-focus-color-one: transparent;
|
|
3
|
+
--mix-focus-color-two: transparent;
|
|
4
|
+
--mix-focus-animation: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.Theme_control_igcEffect .Tabs .TabsLine_type_running {
|
|
8
|
+
--line-thickness: 4px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.Theme_control_igcEffect .Tabs .ListItemGrid-Slot {
|
|
12
|
+
font-family: var(--font-primary);
|
|
13
|
+
line-height: 18px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.Theme_control_igcEffect .Tabs .ListItemGrid-Slot_position_center {
|
|
17
|
+
color: var(--color-typo-primary);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.Theme_control_igcEffect
|
|
21
|
+
.Tabs
|
|
22
|
+
.TabsTab_checked
|
|
23
|
+
.ListItemGrid-Slot_position_center {
|
|
24
|
+
color: var(--color-typo-system);
|
|
25
|
+
}
|
|
@@ -1,43 +1,44 @@
|
|
|
1
|
-
.Theme_control_igcEffect .TextField-Input::placeholder {
|
|
2
|
-
color: var(--color-control-typo-placeholder);
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
padding-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
1
|
+
.Theme_control_igcEffect .TextField-Input::placeholder {
|
|
2
|
+
color: var(--color-control-typo-placeholder);
|
|
3
|
+
font-weight: var(--font-weight-placeholder);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.Theme_control_igcEffect
|
|
7
|
+
.TextField-InputContainer.TextField-InputContainer_status_alert {
|
|
8
|
+
--container-border-color: var(--color-typo-alert);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.Theme_control_igcEffect
|
|
12
|
+
.TextField-InputContainer.TextField-InputContainer_status_warning {
|
|
13
|
+
--container-border-color: var(--color-typo-warning);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.Theme_control_igcEffect .TextField-InputContainer_view_default {
|
|
17
|
+
padding-left: 16px;
|
|
18
|
+
padding-right: 16px;
|
|
19
|
+
}
|
|
20
|
+
.Theme_control_igcEffect .TextField-ClearButton {
|
|
21
|
+
align-self: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.Theme_control_igcEffect .TextField-ClearButton .IconClear svg {
|
|
25
|
+
display: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.Theme_control_igcEffect .TextField-ClearButton .IconClear:before {
|
|
29
|
+
width: 12px;
|
|
30
|
+
height: 12px;
|
|
31
|
+
content: url('data:image/svg+xml,%3Csvg width%3D%2212%22 height%3D%2212%22 viewBox%3D%220 0 12 12%22 fill%3D%22none%22%0D xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D %3Cpath d%3D%22M11.8327 1.34187L10.6577 0.16687L5.99935 4.8252L1.34102 0.16687L0.166016 1.34187L4.82435 6.0002L0.166016 10.6585L1.34102 11.8335L5.99935 7.1752L10.6577 11.8335L11.8327 10.6585L7.17435 6.0002L11.8327 1.34187Z%22 fill%3D%22%233521FF%22%2F%3E%0D%3C%2Fsvg%3E%0D');
|
|
32
|
+
}
|
|
33
|
+
.Theme_control_igcEffect .TextField-InputContainer_view_default {
|
|
34
|
+
--control-radius: 2px;
|
|
35
|
+
}
|
|
36
|
+
.Theme_control_igcEffect
|
|
37
|
+
.TextField-InputContainer_view_default:not(
|
|
38
|
+
.TextField-InputContainer_disabled
|
|
39
|
+
):hover,
|
|
40
|
+
.Theme_control_igcEffect
|
|
41
|
+
.TextField-InputContainer_view_default.TextField-InputContainer_focus {
|
|
42
|
+
border-color: var(--color-control-bg-border-secondary);
|
|
43
|
+
box-shadow: 0px 0px 0px 4px var(--color-royal-blue);
|
|
44
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
.Theme_control_igcEffect.Tooltip {
|
|
2
|
-
--tooltip-bg-color: var(--color-control-typo-primary);
|
|
3
|
-
--shadow-layer: 0px 0px 1px var(--color-shadow-layer-1),
|
|
4
|
-
0px 4px 8px var(--color-shadow-layer-1);
|
|
5
|
-
}
|
|
1
|
+
.Theme_control_igcEffect.Tooltip {
|
|
2
|
+
--tooltip-bg-color: var(--color-control-typo-primary);
|
|
3
|
+
--shadow-layer: 0px 0px 1px var(--color-shadow-layer-1),
|
|
4
|
+
0px 4px 8px var(--color-shadow-layer-1);
|
|
5
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
.Theme_control_igcEffect {
|
|
2
|
-
--control-radius: 4px;
|
|
3
|
-
--control-border-width: 1px;
|
|
4
|
-
--control-height-l: var(--space-4xl);
|
|
5
|
-
--control-height-m: var(--space-3xl);
|
|
6
|
-
--control-height-s: var(--space-2xl);
|
|
7
|
-
--control-height-xs: var(--space-xl);
|
|
8
|
-
--control-box-size-s: var(--space-s);
|
|
9
|
-
--control-box-size-m: var(--space-m);
|
|
10
|
-
--control-box-size-l: var(--space-l);
|
|
11
|
-
--control-space-l: var(--space-xl);
|
|
12
|
-
--control-space-m: var(--space-l);
|
|
13
|
-
--control-space-s: var(--space-m);
|
|
14
|
-
--control-space-xs: var(--space-s);
|
|
15
|
-
--control-text-size-l: var(--size-text-l);
|
|
16
|
-
--control-text-size-m: var(--size-text-m);
|
|
17
|
-
--control-text-size-s: var(--size-text-s);
|
|
18
|
-
--control-text-size-xs: var(--size-text-xs);
|
|
19
|
-
}
|
|
1
|
+
.Theme_control_igcEffect {
|
|
2
|
+
--control-radius: 4px;
|
|
3
|
+
--control-border-width: 1px;
|
|
4
|
+
--control-height-l: var(--space-4xl);
|
|
5
|
+
--control-height-m: var(--space-3xl);
|
|
6
|
+
--control-height-s: var(--space-2xl);
|
|
7
|
+
--control-height-xs: var(--space-xl);
|
|
8
|
+
--control-box-size-s: var(--space-s);
|
|
9
|
+
--control-box-size-m: var(--space-m);
|
|
10
|
+
--control-box-size-l: var(--space-l);
|
|
11
|
+
--control-space-l: var(--space-xl);
|
|
12
|
+
--control-space-m: var(--space-l);
|
|
13
|
+
--control-space-s: var(--space-m);
|
|
14
|
+
--control-space-xs: var(--space-s);
|
|
15
|
+
--control-text-size-l: var(--size-text-l);
|
|
16
|
+
--control-text-size-m: var(--size-text-m);
|
|
17
|
+
--control-text-size-s: var(--size-text-s);
|
|
18
|
+
--control-text-size-xs: var(--size-text-xs);
|
|
19
|
+
}
|
|
@@ -1,107 +1,107 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'PT Root UI';
|
|
3
|
-
src:
|
|
4
|
-
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
5
|
-
url('pt-root-ui_vf.woff') format('woff');
|
|
6
|
-
font-weight: 100;
|
|
7
|
-
font-style: normal;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
@font-face {
|
|
11
|
-
font-family: 'PT Root UI';
|
|
12
|
-
src:
|
|
13
|
-
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
14
|
-
url('pt-root-ui_vf.woff') format('woff');
|
|
15
|
-
font-weight: 200;
|
|
16
|
-
font-style: normal;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@font-face {
|
|
20
|
-
font-family: 'PT Root UI';
|
|
21
|
-
src:
|
|
22
|
-
url('pt-root-ui_light.woff2') format('woff2'),
|
|
23
|
-
url('pt-root-ui_light.woff') format('woff');
|
|
24
|
-
font-weight: 300;
|
|
25
|
-
font-style: normal;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@font-face {
|
|
29
|
-
font-family: 'PT Root UI';
|
|
30
|
-
src:
|
|
31
|
-
url('pt-root-ui_regular.woff2') format('woff2'),
|
|
32
|
-
url('pt-root-ui_regular.woff') format('woff');
|
|
33
|
-
font-weight: normal;
|
|
34
|
-
font-style: normal;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@font-face {
|
|
38
|
-
font-family: 'PT Root UI';
|
|
39
|
-
src:
|
|
40
|
-
url('pt-root-ui_regular.woff2') format('woff2'),
|
|
41
|
-
url('pt-root-ui_regular.woff') format('woff');
|
|
42
|
-
font-weight: 400;
|
|
43
|
-
font-style: normal;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
@font-face {
|
|
47
|
-
font-family: 'PT Root UI';
|
|
48
|
-
src:
|
|
49
|
-
url('pt-root-ui_medium.woff2') format('woff2'),
|
|
50
|
-
url('pt-root-ui_medium.woff') format('woff');
|
|
51
|
-
font-weight: 500;
|
|
52
|
-
font-style: normal;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
@font-face {
|
|
56
|
-
font-family: 'PT Root UI';
|
|
57
|
-
src:
|
|
58
|
-
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
59
|
-
url('pt-root-ui_vf.woff') format('woff');
|
|
60
|
-
font-weight: 600;
|
|
61
|
-
font-style: normal;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@font-face {
|
|
65
|
-
font-family: 'PT Root UI';
|
|
66
|
-
src:
|
|
67
|
-
url('pt-root-ui_bold.woff2') format('woff2'),
|
|
68
|
-
url('pt-root-ui_bold.woff') format('woff');
|
|
69
|
-
font-weight: 700;
|
|
70
|
-
font-style: normal;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
@font-face {
|
|
74
|
-
font-family: 'PT Root UI';
|
|
75
|
-
src:
|
|
76
|
-
url('pt-root-ui_bold.woff2') format('woff2'),
|
|
77
|
-
url('pt-root-ui_bold.woff') format('woff');
|
|
78
|
-
font-weight: bold;
|
|
79
|
-
font-style: normal;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@font-face {
|
|
83
|
-
font-family: 'PT Root UI';
|
|
84
|
-
src:
|
|
85
|
-
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
86
|
-
url('pt-root-ui_vf.woff') format('woff');
|
|
87
|
-
font-weight: 800;
|
|
88
|
-
font-style: normal;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
@font-face {
|
|
92
|
-
font-family: 'PT Root UI';
|
|
93
|
-
src:
|
|
94
|
-
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
95
|
-
url('pt-root-ui_vf.woff') format('woff');
|
|
96
|
-
font-weight: 900;
|
|
97
|
-
font-style: normal;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.Theme_font_igcEffect {
|
|
101
|
-
--font-primary: 'PT Root UI', -apple-system, BlinkMacSystemFont, 'Roboto',
|
|
102
|
-
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
|
|
103
|
-
'Helvetica Neue', sans-serif;
|
|
104
|
-
--font-mono: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
105
|
-
monospace;
|
|
106
|
-
font-family: var(--font-primary);
|
|
107
|
-
}
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'PT Root UI';
|
|
3
|
+
src:
|
|
4
|
+
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
5
|
+
url('pt-root-ui_vf.woff') format('woff');
|
|
6
|
+
font-weight: 100;
|
|
7
|
+
font-style: normal;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@font-face {
|
|
11
|
+
font-family: 'PT Root UI';
|
|
12
|
+
src:
|
|
13
|
+
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
14
|
+
url('pt-root-ui_vf.woff') format('woff');
|
|
15
|
+
font-weight: 200;
|
|
16
|
+
font-style: normal;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: 'PT Root UI';
|
|
21
|
+
src:
|
|
22
|
+
url('pt-root-ui_light.woff2') format('woff2'),
|
|
23
|
+
url('pt-root-ui_light.woff') format('woff');
|
|
24
|
+
font-weight: 300;
|
|
25
|
+
font-style: normal;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: 'PT Root UI';
|
|
30
|
+
src:
|
|
31
|
+
url('pt-root-ui_regular.woff2') format('woff2'),
|
|
32
|
+
url('pt-root-ui_regular.woff') format('woff');
|
|
33
|
+
font-weight: normal;
|
|
34
|
+
font-style: normal;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@font-face {
|
|
38
|
+
font-family: 'PT Root UI';
|
|
39
|
+
src:
|
|
40
|
+
url('pt-root-ui_regular.woff2') format('woff2'),
|
|
41
|
+
url('pt-root-ui_regular.woff') format('woff');
|
|
42
|
+
font-weight: 400;
|
|
43
|
+
font-style: normal;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@font-face {
|
|
47
|
+
font-family: 'PT Root UI';
|
|
48
|
+
src:
|
|
49
|
+
url('pt-root-ui_medium.woff2') format('woff2'),
|
|
50
|
+
url('pt-root-ui_medium.woff') format('woff');
|
|
51
|
+
font-weight: 500;
|
|
52
|
+
font-style: normal;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
@font-face {
|
|
56
|
+
font-family: 'PT Root UI';
|
|
57
|
+
src:
|
|
58
|
+
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
59
|
+
url('pt-root-ui_vf.woff') format('woff');
|
|
60
|
+
font-weight: 600;
|
|
61
|
+
font-style: normal;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@font-face {
|
|
65
|
+
font-family: 'PT Root UI';
|
|
66
|
+
src:
|
|
67
|
+
url('pt-root-ui_bold.woff2') format('woff2'),
|
|
68
|
+
url('pt-root-ui_bold.woff') format('woff');
|
|
69
|
+
font-weight: 700;
|
|
70
|
+
font-style: normal;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@font-face {
|
|
74
|
+
font-family: 'PT Root UI';
|
|
75
|
+
src:
|
|
76
|
+
url('pt-root-ui_bold.woff2') format('woff2'),
|
|
77
|
+
url('pt-root-ui_bold.woff') format('woff');
|
|
78
|
+
font-weight: bold;
|
|
79
|
+
font-style: normal;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@font-face {
|
|
83
|
+
font-family: 'PT Root UI';
|
|
84
|
+
src:
|
|
85
|
+
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
86
|
+
url('pt-root-ui_vf.woff') format('woff');
|
|
87
|
+
font-weight: 800;
|
|
88
|
+
font-style: normal;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@font-face {
|
|
92
|
+
font-family: 'PT Root UI';
|
|
93
|
+
src:
|
|
94
|
+
url('pt-root-ui_vf.woff2') format('woff2'),
|
|
95
|
+
url('pt-root-ui_vf.woff') format('woff');
|
|
96
|
+
font-weight: 900;
|
|
97
|
+
font-style: normal;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.Theme_font_igcEffect {
|
|
101
|
+
--font-primary: 'PT Root UI', -apple-system, BlinkMacSystemFont, 'Roboto',
|
|
102
|
+
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
|
|
103
|
+
'Helvetica Neue', sans-serif;
|
|
104
|
+
--font-mono: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
105
|
+
monospace;
|
|
106
|
+
font-family: var(--font-primary);
|
|
107
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.Theme_shadow_igcEffect {
|
|
2
|
-
--shadow-group: 0px 2px 2px var(--color-shadow-group-1),
|
|
3
|
-
0px 2px 2px var(--color-shadow-group-2);
|
|
4
|
-
--shadow-layer: 0px 4px 4px var(--color-shadow-layer-1),
|
|
5
|
-
0px 4px 4px var(--color-shadow-layer-2);
|
|
6
|
-
--shadow-modal: 0px 4px 8px 0px var(--color-shadow-modal-1),
|
|
7
|
-
0px 0px 1px 0px var(--color-shadow-modal-2);
|
|
8
|
-
}
|
|
1
|
+
.Theme_shadow_igcEffect {
|
|
2
|
+
--shadow-group: 0px 2px 2px var(--color-shadow-group-1),
|
|
3
|
+
0px 2px 2px var(--color-shadow-group-2);
|
|
4
|
+
--shadow-layer: 0px 4px 4px var(--color-shadow-layer-1),
|
|
5
|
+
0px 4px 4px var(--color-shadow-layer-2);
|
|
6
|
+
--shadow-modal: 0px 4px 8px 0px var(--color-shadow-modal-1),
|
|
7
|
+
0px 0px 1px 0px var(--color-shadow-modal-2);
|
|
8
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
.Theme_size_igcEffect {
|
|
2
|
-
--size-text-2xs: 10px;
|
|
3
|
-
--size-text-xs: 12px;
|
|
4
|
-
--size-text-s: 14px;
|
|
5
|
-
--size-text-m: 16px;
|
|
6
|
-
--size-text-l: 18px;
|
|
7
|
-
--size-text-xl: 20px;
|
|
8
|
-
--size-text-2xl: 24px;
|
|
9
|
-
--size-text-3xl: 32px;
|
|
10
|
-
--size-text-4xl: 48px;
|
|
11
|
-
--size-text-5xl: 72px;
|
|
12
|
-
--size-text-6xl: 96px;
|
|
13
|
-
--line-height-text-2xs: 1.1em;
|
|
14
|
-
--line-height-text-xs: 1.2em;
|
|
15
|
-
--line-height-text-s: 1.4em;
|
|
16
|
-
--line-height-text-m: 18px;
|
|
17
|
-
--line-height-text-l: 1.6em;
|
|
18
|
-
--font-weight-text-thin: 100;
|
|
19
|
-
--font-weight-text-extralight: 100;
|
|
20
|
-
--font-weight-text-light: 300;
|
|
21
|
-
--font-weight-text-regular: normal;
|
|
22
|
-
--font-weight-text-medium: 500;
|
|
23
|
-
--font-weight-text-semibold: 600;
|
|
24
|
-
--font-weight-text-bold: bold;
|
|
25
|
-
--font-weight-text-extrabold: 800;
|
|
26
|
-
--font-weight-text-black: 900;
|
|
27
|
-
}
|
|
1
|
+
.Theme_size_igcEffect {
|
|
2
|
+
--size-text-2xs: 10px;
|
|
3
|
+
--size-text-xs: 12px;
|
|
4
|
+
--size-text-s: 14px;
|
|
5
|
+
--size-text-m: 16px;
|
|
6
|
+
--size-text-l: 18px;
|
|
7
|
+
--size-text-xl: 20px;
|
|
8
|
+
--size-text-2xl: 24px;
|
|
9
|
+
--size-text-3xl: 32px;
|
|
10
|
+
--size-text-4xl: 48px;
|
|
11
|
+
--size-text-5xl: 72px;
|
|
12
|
+
--size-text-6xl: 96px;
|
|
13
|
+
--line-height-text-2xs: 1.1em;
|
|
14
|
+
--line-height-text-xs: 1.2em;
|
|
15
|
+
--line-height-text-s: 1.4em;
|
|
16
|
+
--line-height-text-m: 18px;
|
|
17
|
+
--line-height-text-l: 1.6em;
|
|
18
|
+
--font-weight-text-thin: 100;
|
|
19
|
+
--font-weight-text-extralight: 100;
|
|
20
|
+
--font-weight-text-light: 300;
|
|
21
|
+
--font-weight-text-regular: normal;
|
|
22
|
+
--font-weight-text-medium: 500;
|
|
23
|
+
--font-weight-text-semibold: 600;
|
|
24
|
+
--font-weight-text-bold: bold;
|
|
25
|
+
--font-weight-text-extrabold: 800;
|
|
26
|
+
--font-weight-text-black: 900;
|
|
27
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
.Theme_space_igcEffect {
|
|
2
|
-
--space-3xs: 2px;
|
|
3
|
-
--space-2xs: 4px;
|
|
4
|
-
--space-xs: 8px;
|
|
5
|
-
--space-s: 12px;
|
|
6
|
-
--space-m: 16px;
|
|
7
|
-
--space-l: 20px;
|
|
8
|
-
--space-xl: 24px;
|
|
9
|
-
--space-2xl: 32px;
|
|
10
|
-
--space-3xl: 40px;
|
|
11
|
-
--space-4xl: 48px;
|
|
12
|
-
--space-5xl: 72px;
|
|
13
|
-
--space-6xl: 96px;
|
|
14
|
-
}
|
|
1
|
+
.Theme_space_igcEffect {
|
|
2
|
+
--space-3xs: 2px;
|
|
3
|
+
--space-2xs: 4px;
|
|
4
|
+
--space-xs: 8px;
|
|
5
|
+
--space-s: 12px;
|
|
6
|
+
--space-m: 16px;
|
|
7
|
+
--space-l: 20px;
|
|
8
|
+
--space-xl: 24px;
|
|
9
|
+
--space-2xl: 32px;
|
|
10
|
+
--space-3xl: 40px;
|
|
11
|
+
--space-4xl: 48px;
|
|
12
|
+
--space-5xl: 72px;
|
|
13
|
+
--space-6xl: 96px;
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ui-theme-igc-effect",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "1.4.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"main": "./dist/index.js",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": "./dist/index.js"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build:css": "npx postcss dist/**/*.css --replace",
|
|
18
|
-
"build:copy": "node --loader ts-node/esm ./scripts/copyToDist.ts",
|
|
19
|
-
"build:rmAssets": "node --loader ts-node/esm ./scripts/rmAssets.ts",
|
|
20
|
-
"build": "tsc --build && npm run build:copy && npm run build:css && npm run build:rmAssets && npm run prettier:dist",
|
|
21
|
-
"prettier:dist": "prettier --write dist --ignore-path ''"
|
|
22
|
-
},
|
|
23
|
-
"peerDependencies": {
|
|
24
|
-
"@consta/uikit": "4 - 5"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"@types/node": "^20.11.5",
|
|
28
|
-
"postcss": "^8.4.33",
|
|
29
|
-
"postcss-cli": "^11.0.0",
|
|
30
|
-
"postcss-discard-comments": "^6.0.1",
|
|
31
|
-
"postcss-url": "^10.1.3",
|
|
32
|
-
"prettier": "^3.2.4",
|
|
33
|
-
"ts-node": "^10.9.2",
|
|
34
|
-
"typescript": "^5.2.2"
|
|
35
|
-
}
|
|
36
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ui-theme-igc-effect",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.4.13",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build:css": "npx postcss dist/**/*.css --replace",
|
|
18
|
+
"build:copy": "node --loader ts-node/esm ./scripts/copyToDist.ts",
|
|
19
|
+
"build:rmAssets": "node --loader ts-node/esm ./scripts/rmAssets.ts",
|
|
20
|
+
"build": "tsc --build && npm run build:copy && npm run build:css && npm run build:rmAssets && npm run prettier:dist",
|
|
21
|
+
"prettier:dist": "prettier --write dist --ignore-path ''"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@consta/uikit": "4 - 5"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/node": "^20.11.5",
|
|
28
|
+
"postcss": "^8.4.33",
|
|
29
|
+
"postcss-cli": "^11.0.0",
|
|
30
|
+
"postcss-discard-comments": "^6.0.1",
|
|
31
|
+
"postcss-url": "^10.1.3",
|
|
32
|
+
"prettier": "^3.2.4",
|
|
33
|
+
"ts-node": "^10.9.2",
|
|
34
|
+
"typescript": "^5.2.2"
|
|
35
|
+
}
|
|
36
|
+
}
|