@trionesdev/antd-mobile-base-react 0.0.2-beta.17 → 0.0.2-beta.19
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/LICENSE +21 -21
- package/README.md +23 -23
- package/dist/Alert/alert.js +1 -1
- package/dist/Alert/style.scss +69 -69
- package/dist/Avatar/style.scss +17 -17
- package/dist/Badge/style.scss +100 -100
- package/dist/Card/style.scss +35 -35
- package/dist/CascaderView/cascader-column-item.js +1 -1
- package/dist/CascaderView/style.scss +22 -22
- package/dist/Cell/styles.scss +81 -81
- package/dist/Checkbox/checkbox-button.js +1 -1
- package/dist/Checkbox/checkbox-round.js +1 -1
- package/dist/Checkbox/index.scss +165 -165
- package/dist/DemoBlock/index.scss +20 -20
- package/dist/DemoDescription/index.scss +3 -3
- package/dist/Descriptions/style.scss +65 -65
- package/dist/Divider/style.scss +62 -62
- package/dist/Ellipsis/style.scss +13 -13
- package/dist/Empty/style.scss +29 -29
- package/dist/ErrorBlock/demo/base.js +2 -2
- package/dist/ErrorBlock/style.scss +62 -62
- package/dist/Footer/style.scss +55 -55
- package/dist/Form/styles.scss +11 -11
- package/dist/FormCell/styles.scss +103 -103
- package/dist/Grid/style.scss +17 -17
- package/dist/Icon/demo/base.js +2 -2
- package/dist/InputNumber/style.scss +100 -100
- package/dist/Loading/DotLoading.d.ts +0 -1
- package/dist/Loading/DotLoading.js +0 -1
- package/dist/Loading/SpinLoading.d.ts +0 -1
- package/dist/Loading/SpinLoading.js +0 -1
- package/dist/Loading/index.d.ts +1 -0
- package/dist/Loading/index.js +1 -0
- package/dist/Loading/{dot-loading.scss → style.scss} +113 -72
- package/dist/NavBar/nav-bar.js +1 -1
- package/dist/NavBar/style.scss +65 -64
- package/dist/NoticeBar/style.scss +130 -130
- package/dist/PageIndicator/style.scss +59 -59
- package/dist/Progress/style.scss +33 -33
- package/dist/Radio/radio.js +1 -1
- package/dist/Radio/style.scss +154 -154
- package/dist/Rate/rate.js +1 -1
- package/dist/Rate/style.scss +37 -37
- package/dist/Result/demo/base.js +2 -2
- package/dist/Result/style.scss +73 -73
- package/dist/Result/use-result-icon.js +1 -1
- package/dist/SafeArea/style.scss +20 -20
- package/dist/Scaffold/style.scss +17 -17
- package/dist/Segmented/style.scss +75 -75
- package/dist/Skeleton/style.scss +215 -215
- package/dist/Space/style.scss +101 -101
- package/dist/Stepper/style.scss +100 -100
- package/dist/Steps/style.scss +153 -153
- package/dist/Switch/style.scss +127 -127
- package/dist/TabBar/demo/base.js +2 -2
- package/dist/TabBar/index.scss +37 -37
- package/dist/Tabs/style.scss +108 -108
- package/dist/Tag/style.scss +110 -110
- package/dist/WaterMark/style.scss +17 -17
- package/dist/style/css-variable.scss +6 -6
- package/dist/style/style.scss +52 -52
- package/dist/style/theme-dark.scss +24 -24
- package/dist/style/theme-default.scss +54 -54
- package/dist/style/variable.scss +180 -180
- package/dist/utils/type.js +36 -36
- package/dist/utils/with-default-props.js +4 -4
- package/package.json +3 -3
- package/dist/Loading/spin-loading.scss +0 -39
package/dist/Tabs/style.scss
CHANGED
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
@use "../style/variable" as variable;
|
|
2
|
-
$tabsCls: 'triones-antm-tabs';
|
|
3
|
-
|
|
4
|
-
.#{$tabsCls} {
|
|
5
|
-
display: flex;
|
|
6
|
-
flex-direction: column;
|
|
7
|
-
&-nav {
|
|
8
|
-
position: relative;
|
|
9
|
-
display: flex;
|
|
10
|
-
flex: none;
|
|
11
|
-
align-items: center;
|
|
12
|
-
|
|
13
|
-
&::before {
|
|
14
|
-
bottom: 0;
|
|
15
|
-
position: absolute;
|
|
16
|
-
right: 0;
|
|
17
|
-
left: 0;
|
|
18
|
-
border-bottom: 1Px solid #f0f0f0;
|
|
19
|
-
content: ' ';
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&-wrap {
|
|
23
|
-
//position: relative;
|
|
24
|
-
//display: flex;
|
|
25
|
-
//flex: auto;
|
|
26
|
-
//align-self: stretch;
|
|
27
|
-
//overflow: hidden;
|
|
28
|
-
//white-space: nowrap;
|
|
29
|
-
//transform: translate(0);
|
|
30
|
-
width: 100%;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
&-list {
|
|
34
|
-
position: relative;
|
|
35
|
-
display: flex;
|
|
36
|
-
flex: auto;
|
|
37
|
-
overflow-y: auto;
|
|
38
|
-
scrollbar-width: none;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&-ink-bar {
|
|
43
|
-
position: absolute;
|
|
44
|
-
bottom: 0;
|
|
45
|
-
background-color: variable.$trionesColorPrimary;
|
|
46
|
-
height: 2px;
|
|
47
|
-
//width: 100px;
|
|
48
|
-
&-animated {
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&-tab {
|
|
54
|
-
position: relative;
|
|
55
|
-
display: inline-flex;
|
|
56
|
-
align-items: center;
|
|
57
|
-
justify-content: center;
|
|
58
|
-
padding: 10Px 10Px;
|
|
59
|
-
font-size: 14Px;
|
|
60
|
-
background: transparent;
|
|
61
|
-
border: 0;
|
|
62
|
-
outline: none;
|
|
63
|
-
cursor: pointer;
|
|
64
|
-
color: rgba(0, 0, 0, 0.88);
|
|
65
|
-
white-space: nowrap;
|
|
66
|
-
|
|
67
|
-
&-stretch {
|
|
68
|
-
flex: auto;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
&-active {
|
|
72
|
-
color: variable.$trionesColorPrimary;
|
|
73
|
-
&::after{
|
|
74
|
-
content: ' ';
|
|
75
|
-
position: absolute;
|
|
76
|
-
bottom: 0;
|
|
77
|
-
width: calc(100% - 0.24rem * 2);
|
|
78
|
-
height: 2Px;
|
|
79
|
-
overflow: hidden;
|
|
80
|
-
font-size: 0;
|
|
81
|
-
border-radius: 50vh;
|
|
82
|
-
box-sizing: border-box;
|
|
83
|
-
background-color: variable.$trionesColorPrimary;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
&-content-holder {
|
|
90
|
-
flex: auto;
|
|
91
|
-
overflow: hidden;
|
|
92
|
-
.#{$tabsCls} {
|
|
93
|
-
&-content {
|
|
94
|
-
height: 100%;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
&-tab-pane {
|
|
100
|
-
height: 100%;
|
|
101
|
-
display: none;
|
|
102
|
-
|
|
103
|
-
&-active {
|
|
104
|
-
display: block;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
1
|
+
@use "../style/variable" as variable;
|
|
2
|
+
$tabsCls: 'triones-antm-tabs';
|
|
3
|
+
|
|
4
|
+
.#{$tabsCls} {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
&-nav {
|
|
8
|
+
position: relative;
|
|
9
|
+
display: flex;
|
|
10
|
+
flex: none;
|
|
11
|
+
align-items: center;
|
|
12
|
+
|
|
13
|
+
&::before {
|
|
14
|
+
bottom: 0;
|
|
15
|
+
position: absolute;
|
|
16
|
+
right: 0;
|
|
17
|
+
left: 0;
|
|
18
|
+
border-bottom: 1Px solid #f0f0f0;
|
|
19
|
+
content: ' ';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-wrap {
|
|
23
|
+
//position: relative;
|
|
24
|
+
//display: flex;
|
|
25
|
+
//flex: auto;
|
|
26
|
+
//align-self: stretch;
|
|
27
|
+
//overflow: hidden;
|
|
28
|
+
//white-space: nowrap;
|
|
29
|
+
//transform: translate(0);
|
|
30
|
+
width: 100%;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&-list {
|
|
34
|
+
position: relative;
|
|
35
|
+
display: flex;
|
|
36
|
+
flex: auto;
|
|
37
|
+
overflow-y: auto;
|
|
38
|
+
scrollbar-width: none;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&-ink-bar {
|
|
43
|
+
position: absolute;
|
|
44
|
+
bottom: 0;
|
|
45
|
+
background-color: variable.$trionesColorPrimary;
|
|
46
|
+
height: 2px;
|
|
47
|
+
//width: 100px;
|
|
48
|
+
&-animated {
|
|
49
|
+
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&-tab {
|
|
54
|
+
position: relative;
|
|
55
|
+
display: inline-flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
padding: 10Px 10Px;
|
|
59
|
+
font-size: 14Px;
|
|
60
|
+
background: transparent;
|
|
61
|
+
border: 0;
|
|
62
|
+
outline: none;
|
|
63
|
+
cursor: pointer;
|
|
64
|
+
color: rgba(0, 0, 0, 0.88);
|
|
65
|
+
white-space: nowrap;
|
|
66
|
+
|
|
67
|
+
&-stretch {
|
|
68
|
+
flex: auto;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&-active {
|
|
72
|
+
color: variable.$trionesColorPrimary;
|
|
73
|
+
&::after{
|
|
74
|
+
content: ' ';
|
|
75
|
+
position: absolute;
|
|
76
|
+
bottom: 0;
|
|
77
|
+
width: calc(100% - 0.24rem * 2);
|
|
78
|
+
height: 2Px;
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
font-size: 0;
|
|
81
|
+
border-radius: 50vh;
|
|
82
|
+
box-sizing: border-box;
|
|
83
|
+
background-color: variable.$trionesColorPrimary;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&-content-holder {
|
|
90
|
+
flex: auto;
|
|
91
|
+
overflow: hidden;
|
|
92
|
+
.#{$tabsCls} {
|
|
93
|
+
&-content {
|
|
94
|
+
height: 100%;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&-tab-pane {
|
|
100
|
+
height: 100%;
|
|
101
|
+
display: none;
|
|
102
|
+
|
|
103
|
+
&-active {
|
|
104
|
+
display: block;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
package/dist/Tag/style.scss
CHANGED
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
@use "../style/variable" as variable;
|
|
2
|
-
|
|
3
|
-
$tagCls: 'triones-antm-tag';
|
|
4
|
-
|
|
5
|
-
.#{$tagCls} {
|
|
6
|
-
display: inline-flex;
|
|
7
|
-
align-items: center;
|
|
8
|
-
padding: 2Px 8Px;
|
|
9
|
-
font-size: variable.$trionesFontSizeSm;
|
|
10
|
-
line-height: 1;
|
|
11
|
-
border-radius: variable.$trionesBorderRadiusXs;
|
|
12
|
-
box-sizing: border-box;
|
|
13
|
-
white-space: nowrap;
|
|
14
|
-
|
|
15
|
-
&-square {
|
|
16
|
-
border-radius: 0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&-round {
|
|
20
|
-
padding: 2Px 8Px;
|
|
21
|
-
border-radius: 12Px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// Default variant styles
|
|
25
|
-
&-default {
|
|
26
|
-
&.#{$tagCls}-solid {
|
|
27
|
-
background: #666;
|
|
28
|
-
color: #fff;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
&.#{$tagCls}-outline {
|
|
32
|
-
color: #666;
|
|
33
|
-
border: 1px solid #666;
|
|
34
|
-
background: transparent;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// processing variant styles
|
|
39
|
-
&-processing {
|
|
40
|
-
&.#{$tagCls}-solid {
|
|
41
|
-
background: variable.$trionesColorPrimary;
|
|
42
|
-
color: #fff;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&.#{$tagCls}-outline {
|
|
46
|
-
color: variable.$trionesColorPrimary;
|
|
47
|
-
border: 1px solid variable.$trionesColorPrimary;
|
|
48
|
-
background: transparent;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
// Success variant styles
|
|
53
|
-
&-success {
|
|
54
|
-
&.#{$tagCls}-solid {
|
|
55
|
-
background: variable.$trionesColorSuccess;
|
|
56
|
-
color: #fff;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
&.#{$tagCls}-outline {
|
|
60
|
-
color: variable.$trionesColorSuccess;
|
|
61
|
-
border: 1px solid variable.$trionesColorSuccess;
|
|
62
|
-
background: transparent;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// Warning variant styles
|
|
67
|
-
&-warning {
|
|
68
|
-
&.#{$tagCls}-solid {
|
|
69
|
-
background: variable.$trionesColorWarning;
|
|
70
|
-
color: #fff;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
&.#{$tagCls}-outline {
|
|
74
|
-
color: variable.$trionesColorWarning;
|
|
75
|
-
border: 1px solid variable.$trionesColorWarning;
|
|
76
|
-
background: transparent;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
// Danger variant styles
|
|
81
|
-
&-error {
|
|
82
|
-
&.#{$tagCls}-solid {
|
|
83
|
-
background: variable.$trionesColorError;
|
|
84
|
-
color: #fff;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
&.#{$tagCls}-outline {
|
|
88
|
-
color: variable.$trionesColorError;
|
|
89
|
-
border: 1px solid variable.$trionesColorError;
|
|
90
|
-
background: transparent;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
&-icon {
|
|
95
|
-
margin-inline-end: 4Px;
|
|
96
|
-
|
|
97
|
-
.triones-antm-icon {
|
|
98
|
-
font-size: 10Px;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
&-close {
|
|
103
|
-
margin-inline-start: 4Px;
|
|
104
|
-
display: flex;
|
|
105
|
-
|
|
106
|
-
.triones-antm-icon {
|
|
107
|
-
font-size: 10Px;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
1
|
+
@use "../style/variable" as variable;
|
|
2
|
+
|
|
3
|
+
$tagCls: 'triones-antm-tag';
|
|
4
|
+
|
|
5
|
+
.#{$tagCls} {
|
|
6
|
+
display: inline-flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
padding: 2Px 8Px;
|
|
9
|
+
font-size: variable.$trionesFontSizeSm;
|
|
10
|
+
line-height: 1;
|
|
11
|
+
border-radius: variable.$trionesBorderRadiusXs;
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
white-space: nowrap;
|
|
14
|
+
|
|
15
|
+
&-square {
|
|
16
|
+
border-radius: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&-round {
|
|
20
|
+
padding: 2Px 8Px;
|
|
21
|
+
border-radius: 12Px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// Default variant styles
|
|
25
|
+
&-default {
|
|
26
|
+
&.#{$tagCls}-solid {
|
|
27
|
+
background: #666;
|
|
28
|
+
color: #fff;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.#{$tagCls}-outline {
|
|
32
|
+
color: #666;
|
|
33
|
+
border: 1px solid #666;
|
|
34
|
+
background: transparent;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// processing variant styles
|
|
39
|
+
&-processing {
|
|
40
|
+
&.#{$tagCls}-solid {
|
|
41
|
+
background: variable.$trionesColorPrimary;
|
|
42
|
+
color: #fff;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.#{$tagCls}-outline {
|
|
46
|
+
color: variable.$trionesColorPrimary;
|
|
47
|
+
border: 1px solid variable.$trionesColorPrimary;
|
|
48
|
+
background: transparent;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Success variant styles
|
|
53
|
+
&-success {
|
|
54
|
+
&.#{$tagCls}-solid {
|
|
55
|
+
background: variable.$trionesColorSuccess;
|
|
56
|
+
color: #fff;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.#{$tagCls}-outline {
|
|
60
|
+
color: variable.$trionesColorSuccess;
|
|
61
|
+
border: 1px solid variable.$trionesColorSuccess;
|
|
62
|
+
background: transparent;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// Warning variant styles
|
|
67
|
+
&-warning {
|
|
68
|
+
&.#{$tagCls}-solid {
|
|
69
|
+
background: variable.$trionesColorWarning;
|
|
70
|
+
color: #fff;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&.#{$tagCls}-outline {
|
|
74
|
+
color: variable.$trionesColorWarning;
|
|
75
|
+
border: 1px solid variable.$trionesColorWarning;
|
|
76
|
+
background: transparent;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// Danger variant styles
|
|
81
|
+
&-error {
|
|
82
|
+
&.#{$tagCls}-solid {
|
|
83
|
+
background: variable.$trionesColorError;
|
|
84
|
+
color: #fff;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&.#{$tagCls}-outline {
|
|
88
|
+
color: variable.$trionesColorError;
|
|
89
|
+
border: 1px solid variable.$trionesColorError;
|
|
90
|
+
background: transparent;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
&-icon {
|
|
95
|
+
margin-inline-end: 4Px;
|
|
96
|
+
|
|
97
|
+
.triones-antm-icon {
|
|
98
|
+
font-size: 10Px;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&-close {
|
|
103
|
+
margin-inline-start: 4Px;
|
|
104
|
+
display: flex;
|
|
105
|
+
|
|
106
|
+
.triones-antm-icon {
|
|
107
|
+
font-size: 10Px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
$class-prefix-water-mark: 'triones-antm-water-mark';
|
|
2
|
-
/* prettier-ignore */
|
|
3
|
-
.#{$class-prefix-water-mark} {
|
|
4
|
-
--z-index: var(--triones-antm-water-mark-z-index, 2000);
|
|
5
|
-
|
|
6
|
-
position: absolute;
|
|
7
|
-
z-index: var(--z-index);
|
|
8
|
-
left: 0;
|
|
9
|
-
right: 0;
|
|
10
|
-
top: 0;
|
|
11
|
-
bottom: 0;
|
|
12
|
-
pointer-events: none;
|
|
13
|
-
background-repeat: repeat;
|
|
14
|
-
&-full-page {
|
|
15
|
-
position: fixed;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
1
|
+
$class-prefix-water-mark: 'triones-antm-water-mark';
|
|
2
|
+
/* prettier-ignore */
|
|
3
|
+
.#{$class-prefix-water-mark} {
|
|
4
|
+
--z-index: var(--triones-antm-water-mark-z-index, 2000);
|
|
5
|
+
|
|
6
|
+
position: absolute;
|
|
7
|
+
z-index: var(--z-index);
|
|
8
|
+
left: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
top: 0;
|
|
11
|
+
bottom: 0;
|
|
12
|
+
pointer-events: none;
|
|
13
|
+
background-repeat: repeat;
|
|
14
|
+
&-full-page {
|
|
15
|
+
position: fixed;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
:root,page {
|
|
2
|
-
//--triones-blue: #1677FF;
|
|
3
|
-
//--trioens-color-primary: #1677FF;
|
|
4
|
-
|
|
5
|
-
--triones-safe-area-multiple:1;
|
|
6
|
-
}
|
|
1
|
+
:root,page {
|
|
2
|
+
//--triones-blue: #1677FF;
|
|
3
|
+
//--trioens-color-primary: #1677FF;
|
|
4
|
+
|
|
5
|
+
--triones-safe-area-multiple:1;
|
|
6
|
+
}
|
package/dist/style/style.scss
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
@use './theme-default.scss' as default;
|
|
2
|
-
@use './theme-dark.scss' as dark;
|
|
3
|
-
|
|
4
|
-
:root {
|
|
5
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
html {
|
|
9
|
-
background-color: var(--triones-antm-color-background-body);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
body {
|
|
13
|
-
color: var(--triones-antm-color-text);
|
|
14
|
-
font-size: 14Px;
|
|
15
|
-
font-family: var(--triones-antm-font-family);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
a,
|
|
19
|
-
button {
|
|
20
|
-
cursor: pointer;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
a {
|
|
24
|
-
color: var(--triones-antm-color-primary);
|
|
25
|
-
transition: opacity ease-in-out 0.2s;
|
|
26
|
-
&:active {
|
|
27
|
-
opacity: 0.8;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.adm-plain-anchor {
|
|
32
|
-
color: unset;
|
|
33
|
-
transition: none;
|
|
34
|
-
&:active {
|
|
35
|
-
opacity: unset;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
body.triones-antm-overflow-hidden {
|
|
40
|
-
overflow: hidden !important;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
div.triones-antm-px-tester {
|
|
44
|
-
--size: 1;
|
|
45
|
-
height: calc(var(--size) / 2 * 2Px);
|
|
46
|
-
width: 0;
|
|
47
|
-
position: fixed;
|
|
48
|
-
left: -100vw;
|
|
49
|
-
top: -100vh;
|
|
50
|
-
user-select: none;
|
|
51
|
-
pointer-events: none;
|
|
52
|
-
}
|
|
1
|
+
@use './theme-default.scss' as default;
|
|
2
|
+
@use './theme-dark.scss' as dark;
|
|
3
|
+
|
|
4
|
+
:root {
|
|
5
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
html {
|
|
9
|
+
background-color: var(--triones-antm-color-background-body);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
body {
|
|
13
|
+
color: var(--triones-antm-color-text);
|
|
14
|
+
font-size: 14Px;
|
|
15
|
+
font-family: var(--triones-antm-font-family);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
a,
|
|
19
|
+
button {
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
a {
|
|
24
|
+
color: var(--triones-antm-color-primary);
|
|
25
|
+
transition: opacity ease-in-out 0.2s;
|
|
26
|
+
&:active {
|
|
27
|
+
opacity: 0.8;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.adm-plain-anchor {
|
|
32
|
+
color: unset;
|
|
33
|
+
transition: none;
|
|
34
|
+
&:active {
|
|
35
|
+
opacity: unset;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
body.triones-antm-overflow-hidden {
|
|
40
|
+
overflow: hidden !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
div.triones-antm-px-tester {
|
|
44
|
+
--size: 1;
|
|
45
|
+
height: calc(var(--size) / 2 * 2Px);
|
|
46
|
+
width: 0;
|
|
47
|
+
position: fixed;
|
|
48
|
+
left: -100vw;
|
|
49
|
+
top: -100vh;
|
|
50
|
+
user-select: none;
|
|
51
|
+
pointer-events: none;
|
|
52
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
html[data-prefers-color-scheme='dark'] {
|
|
2
|
-
// variables should be exposed to users:
|
|
3
|
-
--triones-antm-color-primary: #3086ff;
|
|
4
|
-
--triones-antm-color-success: #34b368;
|
|
5
|
-
--triones-antm-color-warning: #ffa930;
|
|
6
|
-
--triones-antm-color-danger: #ff4a58;
|
|
7
|
-
|
|
8
|
-
--triones-antm-color-yellow: #ffa930;
|
|
9
|
-
--triones-antm-color-orange: #e65a2b;
|
|
10
|
-
--triones-antm-color-wathet: #0d2543;
|
|
11
|
-
|
|
12
|
-
--triones-antm-color-text: #e6e6e6;
|
|
13
|
-
--triones-antm-color-text-secondary: #b3b3b3;
|
|
14
|
-
--triones-antm-color-weak: #808080;
|
|
15
|
-
--triones-antm-color-light: #4d4d4d;
|
|
16
|
-
--triones-antm-color-border: #2b2b2b;
|
|
17
|
-
--triones-antm-color-box: #0a0a0a;
|
|
18
|
-
--triones-antm-color-background: #1a1a1a;
|
|
19
|
-
|
|
20
|
-
--triones-antm-color-background-body: var(--triones-antm-color-background);
|
|
21
|
-
|
|
22
|
-
// The variables below are deprecated and only exist for backward compatibility:
|
|
23
|
-
--triones-antm-border-color: var(--triones-antm-color-border);
|
|
24
|
-
}
|
|
1
|
+
html[data-prefers-color-scheme='dark'] {
|
|
2
|
+
// variables should be exposed to users:
|
|
3
|
+
--triones-antm-color-primary: #3086ff;
|
|
4
|
+
--triones-antm-color-success: #34b368;
|
|
5
|
+
--triones-antm-color-warning: #ffa930;
|
|
6
|
+
--triones-antm-color-danger: #ff4a58;
|
|
7
|
+
|
|
8
|
+
--triones-antm-color-yellow: #ffa930;
|
|
9
|
+
--triones-antm-color-orange: #e65a2b;
|
|
10
|
+
--triones-antm-color-wathet: #0d2543;
|
|
11
|
+
|
|
12
|
+
--triones-antm-color-text: #e6e6e6;
|
|
13
|
+
--triones-antm-color-text-secondary: #b3b3b3;
|
|
14
|
+
--triones-antm-color-weak: #808080;
|
|
15
|
+
--triones-antm-color-light: #4d4d4d;
|
|
16
|
+
--triones-antm-color-border: #2b2b2b;
|
|
17
|
+
--triones-antm-color-box: #0a0a0a;
|
|
18
|
+
--triones-antm-color-background: #1a1a1a;
|
|
19
|
+
|
|
20
|
+
--triones-antm-color-background-body: var(--triones-antm-color-background);
|
|
21
|
+
|
|
22
|
+
// The variables below are deprecated and only exist for backward compatibility:
|
|
23
|
+
--triones-antm-border-color: var(--triones-antm-color-border);
|
|
24
|
+
}
|