ar-design 0.2.81 → 0.2.83
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/assets/css/components/data-display/chip/chip.css +1 -3
- package/dist/assets/css/components/feedback/alert/alert.css +2 -4
- package/dist/assets/css/components/form/checkbox/core/border.css +106 -74
- package/dist/assets/css/components/form/select/styles.css +1 -1
- package/dist/assets/css/components/form/switch/core/border.css +178 -59
- package/dist/assets/css/components/form/switch/styles.css +4 -8
- package/dist/assets/css/core/animation.css +164 -0
- package/dist/assets/css/core/ar-core.css +23 -49
- package/dist/assets/css/core/color-palette.css +111 -0
- package/dist/assets/css/core/statuses.css +206 -0
- package/dist/assets/css/core/variants/animation.css +90 -60
- package/dist/assets/css/core/variants/borderless.css +373 -0
- package/dist/assets/css/core/variants/dashed.css +373 -0
- package/dist/assets/css/core/variants/filled.css +439 -0
- package/dist/assets/css/core/variants/outlined.css +406 -0
- package/dist/assets/css/core/variants/surface.css +263 -0
- package/dist/components/data-display/card/index.js +1 -1
- package/dist/components/data-display/chip/IProps.d.ts +2 -2
- package/dist/components/data-display/chip/index.js +2 -2
- package/dist/components/data-display/table/index.js +7 -7
- package/dist/components/feedback/alert/IProps.d.ts +6 -2
- package/dist/components/feedback/alert/index.js +6 -10
- package/dist/components/feedback/popover/index.js +2 -2
- package/dist/components/feedback/popup/index.js +6 -6
- package/dist/components/feedback/progress/index.js +1 -1
- package/dist/components/form/button/IProps.d.ts +2 -2
- package/dist/components/form/button/index.js +2 -2
- package/dist/components/form/button-action/index.js +2 -2
- package/dist/components/form/checkbox/IProps.d.ts +2 -2
- package/dist/components/form/checkbox/index.js +2 -2
- package/dist/components/form/date-picker/Props.d.ts +1 -1
- package/dist/components/form/date-picker/index.js +2 -2
- package/dist/components/form/input/IProps.d.ts +2 -2
- package/dist/components/form/input/index.js +3 -3
- package/dist/components/form/input-tag/IProps.d.ts +1 -1
- package/dist/components/form/radio/IProps.d.ts +2 -2
- package/dist/components/form/radio/index.js +2 -2
- package/dist/components/form/select/Props.d.ts +5 -5
- package/dist/components/form/select/index.js +8 -6
- package/dist/components/form/switch/IProps.d.ts +2 -2
- package/dist/components/form/switch/index.js +2 -2
- package/dist/components/form/text-editor/IProps.d.ts +2 -2
- package/dist/components/form/text-editor/index.d.ts +1 -1
- package/dist/components/form/text-editor/index.js +3 -3
- package/dist/components/form/upload/PreviewSelectedFile.js +1 -1
- package/dist/components/form/upload/PreviewSelectedFiles.js +1 -1
- package/dist/components/navigation/steps/index.js +2 -2
- package/dist/libs/infrastructure/shared/Utils.d.ts +2 -2
- package/dist/libs/infrastructure/shared/Utils.js +10 -2
- package/dist/libs/types/IGlobalProps.d.ts +21 -5
- package/dist/libs/types/index.d.ts +2 -1
- package/package.json +1 -1
- package/dist/assets/css/components/feedback/alert/core/border.css +0 -24
- package/dist/assets/css/components/feedback/alert/core/color.css +0 -32
- package/dist/assets/css/core/variants/borderless/borderless.css +0 -170
- package/dist/assets/css/core/variants/dashed/dashed.css +0 -197
- package/dist/assets/css/core/variants/filled/filled.css +0 -260
- package/dist/assets/css/core/variants/outlined/outlined.css +0 -206
|
@@ -1,133 +1,163 @@
|
|
|
1
|
-
/* #region Animation ->
|
|
2
|
-
@keyframes clicked-
|
|
1
|
+
/* #region Animation -> BLUE */
|
|
2
|
+
@keyframes clicked-blue {
|
|
3
3
|
0% {
|
|
4
|
-
box-shadow: 0 0 0 0px
|
|
4
|
+
box-shadow: 0 0 0 0px var(--blue-500);
|
|
5
5
|
}
|
|
6
|
-
|
|
7
|
-
box-shadow: 0 0 0 5px
|
|
6
|
+
50% {
|
|
7
|
+
box-shadow: 0 0 0 5px var(--blue-100);
|
|
8
8
|
}
|
|
9
9
|
100% {
|
|
10
|
-
box-shadow: 0 0 0 7.5px
|
|
10
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
/* #endregion */
|
|
14
|
-
/* Animation ->
|
|
14
|
+
/* Animation -> BLUE */
|
|
15
15
|
|
|
16
|
-
/* #region Animation ->
|
|
17
|
-
@keyframes clicked-
|
|
16
|
+
/* #region Animation -> PURPLE */
|
|
17
|
+
@keyframes clicked-purple {
|
|
18
18
|
0% {
|
|
19
|
-
box-shadow: 0 0 0 0px
|
|
19
|
+
box-shadow: 0 0 0 0px var(--purple-500);
|
|
20
20
|
}
|
|
21
|
-
|
|
22
|
-
box-shadow: 0 0 0 5px
|
|
21
|
+
50% {
|
|
22
|
+
box-shadow: 0 0 0 5px var(--purple-100);
|
|
23
23
|
}
|
|
24
24
|
100% {
|
|
25
|
-
box-shadow: 0 0 0 7.5px
|
|
25
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
/* #endregion */
|
|
29
|
-
/* Animation ->
|
|
29
|
+
/* Animation -> PURPLE */
|
|
30
30
|
|
|
31
|
-
/* #region Animation ->
|
|
32
|
-
@keyframes clicked-
|
|
31
|
+
/* #region Animation -> PINK */
|
|
32
|
+
@keyframes clicked-pink {
|
|
33
33
|
0% {
|
|
34
|
-
box-shadow: 0 0 0 0px
|
|
34
|
+
box-shadow: 0 0 0 0px var(--pink-500);
|
|
35
35
|
}
|
|
36
|
-
|
|
37
|
-
box-shadow: 0 0 0 5px
|
|
36
|
+
50% {
|
|
37
|
+
box-shadow: 0 0 0 5px var(--pink-100);
|
|
38
38
|
}
|
|
39
39
|
100% {
|
|
40
|
-
box-shadow: 0 0 0 7.5px
|
|
40
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
/* #endregion */
|
|
44
|
-
/* Animation ->
|
|
44
|
+
/* Animation -> PINK */
|
|
45
45
|
|
|
46
|
-
/* #region Animation ->
|
|
47
|
-
@keyframes clicked-
|
|
46
|
+
/* #region Animation -> RED */
|
|
47
|
+
@keyframes clicked-red {
|
|
48
48
|
0% {
|
|
49
|
-
box-shadow: 0 0 0 0px
|
|
49
|
+
box-shadow: 0 0 0 0px var(--red-500);
|
|
50
50
|
}
|
|
51
|
-
|
|
52
|
-
box-shadow: 0 0 0 5px
|
|
51
|
+
50% {
|
|
52
|
+
box-shadow: 0 0 0 5px var(--red-100);
|
|
53
53
|
}
|
|
54
54
|
100% {
|
|
55
|
-
box-shadow: 0 0 0 7.5px
|
|
55
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
/* #endregion */
|
|
59
|
-
/* Animation ->
|
|
59
|
+
/* Animation -> RED */
|
|
60
60
|
|
|
61
|
-
/* #region Animation ->
|
|
62
|
-
@keyframes clicked-
|
|
61
|
+
/* #region Animation -> ORANGE */
|
|
62
|
+
@keyframes clicked-orange {
|
|
63
63
|
0% {
|
|
64
|
-
box-shadow: 0 0 0 0px
|
|
64
|
+
box-shadow: 0 0 0 0px var(--orange-500);
|
|
65
65
|
}
|
|
66
|
-
|
|
67
|
-
box-shadow: 0 0 0 5px
|
|
66
|
+
50% {
|
|
67
|
+
box-shadow: 0 0 0 5px var(--orange-100);
|
|
68
68
|
}
|
|
69
69
|
100% {
|
|
70
|
-
box-shadow: 0 0 0 7.5px
|
|
70
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
/* #endregion */
|
|
74
|
-
/* Animation ->
|
|
74
|
+
/* Animation -> ORANGE */
|
|
75
75
|
|
|
76
|
-
/* #region Animation ->
|
|
77
|
-
@keyframes clicked-
|
|
76
|
+
/* #region Animation -> YELLOW */
|
|
77
|
+
@keyframes clicked-yellow {
|
|
78
78
|
0% {
|
|
79
|
-
box-shadow: 0 0 0 0px
|
|
79
|
+
box-shadow: 0 0 0 0px var(--yellow-500);
|
|
80
80
|
}
|
|
81
|
-
|
|
82
|
-
box-shadow: 0 0 0 5px
|
|
81
|
+
50% {
|
|
82
|
+
box-shadow: 0 0 0 5px var(--yellow-100);
|
|
83
83
|
}
|
|
84
84
|
100% {
|
|
85
|
-
box-shadow: 0 0 0 7.5px
|
|
85
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
/* #endregion */
|
|
89
|
-
/* Animation ->
|
|
89
|
+
/* Animation -> YELLOW */
|
|
90
90
|
|
|
91
|
-
/* #region Animation ->
|
|
92
|
-
@keyframes clicked-
|
|
91
|
+
/* #region Animation -> GREEN */
|
|
92
|
+
@keyframes clicked-green {
|
|
93
93
|
0% {
|
|
94
|
-
box-shadow: 0 0 0 0px
|
|
94
|
+
box-shadow: 0 0 0 0px var(--green-500);
|
|
95
95
|
}
|
|
96
|
-
|
|
97
|
-
box-shadow: 0 0 0 5px
|
|
96
|
+
50% {
|
|
97
|
+
box-shadow: 0 0 0 5px var(--green-100);
|
|
98
98
|
}
|
|
99
99
|
100% {
|
|
100
|
-
box-shadow: 0 0 0 7.5px
|
|
100
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
/* #endregion */
|
|
104
|
-
/* Animation ->
|
|
104
|
+
/* Animation -> GREEN */
|
|
105
105
|
|
|
106
|
-
/* #region Animation ->
|
|
107
|
-
@keyframes clicked-
|
|
106
|
+
/* #region Animation -> TEAL */
|
|
107
|
+
@keyframes clicked-teal {
|
|
108
108
|
0% {
|
|
109
|
-
box-shadow: 0 0 0 0px
|
|
109
|
+
box-shadow: 0 0 0 0px var(--teal-500);
|
|
110
110
|
}
|
|
111
|
-
|
|
112
|
-
box-shadow: 0 0 0 5px
|
|
111
|
+
50% {
|
|
112
|
+
box-shadow: 0 0 0 5px var(--teal-100);
|
|
113
113
|
}
|
|
114
114
|
100% {
|
|
115
|
-
box-shadow: 0 0 0 7.5px
|
|
115
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
/* #endregion */
|
|
119
|
-
/* Animation ->
|
|
119
|
+
/* Animation -> TEAL */
|
|
120
|
+
|
|
121
|
+
/* #region Animation -> CYAN */
|
|
122
|
+
@keyframes clicked-cyan {
|
|
123
|
+
0% {
|
|
124
|
+
box-shadow: 0 0 0 0px var(--cyan-500);
|
|
125
|
+
}
|
|
126
|
+
50% {
|
|
127
|
+
box-shadow: 0 0 0 5px var(--cyan-100);
|
|
128
|
+
}
|
|
129
|
+
100% {
|
|
130
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
/* #endregion */
|
|
134
|
+
/* Animation -> CYAN */
|
|
135
|
+
|
|
136
|
+
/* #region Animation -> GRAY */
|
|
137
|
+
@keyframes clicked-gray {
|
|
138
|
+
0% {
|
|
139
|
+
box-shadow: 0 0 0 0px var(--gray-500);
|
|
140
|
+
}
|
|
141
|
+
50% {
|
|
142
|
+
box-shadow: 0 0 0 5px var(--gray-100);
|
|
143
|
+
}
|
|
144
|
+
100% {
|
|
145
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
/* #endregion */
|
|
149
|
+
/* Animation -> GRAY */
|
|
120
150
|
|
|
121
151
|
/* #region Animation -> LIGHT */
|
|
122
152
|
@keyframes clicked-light {
|
|
123
153
|
0% {
|
|
124
|
-
box-shadow: 0 0 0 0px
|
|
154
|
+
box-shadow: 0 0 0 0px var(--light-500);
|
|
125
155
|
}
|
|
126
|
-
|
|
127
|
-
box-shadow: 0 0 0 5px
|
|
156
|
+
50% {
|
|
157
|
+
box-shadow: 0 0 0 5px var(--light-100);
|
|
128
158
|
}
|
|
129
159
|
100% {
|
|
130
|
-
box-shadow: 0 0 0 7.5px
|
|
160
|
+
box-shadow: 0 0 0 7.5px transparent;
|
|
131
161
|
}
|
|
132
162
|
}
|
|
133
163
|
/* #endregion */
|
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
/* #region BLUE */
|
|
2
|
+
.borderless:not(.disabled) {
|
|
3
|
+
&.blue {
|
|
4
|
+
color: var(--blue-500);
|
|
5
|
+
|
|
6
|
+
&.active {
|
|
7
|
+
animation: clicked-blue ease-in-out 750ms 0s 1 normal both;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
input.borderless:not(.disabled),
|
|
13
|
+
iframe.borderless:not(.disabled) {
|
|
14
|
+
&.blue {
|
|
15
|
+
&:focus,
|
|
16
|
+
&.focused {
|
|
17
|
+
border-color: var(--);
|
|
18
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
button.borderless:not(.disabled) {
|
|
24
|
+
&.blue {
|
|
25
|
+
&:hover,
|
|
26
|
+
&:focus {
|
|
27
|
+
background-color: var(--blue-500);
|
|
28
|
+
color: var(--white)
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
/* #endregion */
|
|
33
|
+
/* BLUE */
|
|
34
|
+
|
|
35
|
+
/* #region PURPLE */
|
|
36
|
+
.borderless:not(.disabled) {
|
|
37
|
+
&.purple {
|
|
38
|
+
color: var(--purple-500);
|
|
39
|
+
|
|
40
|
+
&.active {
|
|
41
|
+
animation: clicked-purple ease-in-out 750ms 0s 1 normal both;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
input.borderless:not(.disabled),
|
|
47
|
+
iframe.borderless:not(.disabled) {
|
|
48
|
+
&.purple {
|
|
49
|
+
&:focus,
|
|
50
|
+
&.focused {
|
|
51
|
+
border-color: var(--);
|
|
52
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
button.borderless:not(.disabled) {
|
|
58
|
+
&.purple {
|
|
59
|
+
&:hover,
|
|
60
|
+
&:focus {
|
|
61
|
+
background-color: var(--purple-500);
|
|
62
|
+
color: var(--white)
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
/* #endregion */
|
|
67
|
+
/* PURPLE */
|
|
68
|
+
|
|
69
|
+
/* #region PINK */
|
|
70
|
+
.borderless:not(.disabled) {
|
|
71
|
+
&.pink {
|
|
72
|
+
color: var(--pink-500);
|
|
73
|
+
|
|
74
|
+
&.active {
|
|
75
|
+
animation: clicked-pink ease-in-out 750ms 0s 1 normal both;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
input.borderless:not(.disabled),
|
|
81
|
+
iframe.borderless:not(.disabled) {
|
|
82
|
+
&.pink {
|
|
83
|
+
&:focus,
|
|
84
|
+
&.focused {
|
|
85
|
+
border-color: var(--);
|
|
86
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
button.borderless:not(.disabled) {
|
|
92
|
+
&.pink {
|
|
93
|
+
&:hover,
|
|
94
|
+
&:focus {
|
|
95
|
+
background-color: var(--pink-500);
|
|
96
|
+
color: var(--white)
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
/* #endregion */
|
|
101
|
+
/* PINK */
|
|
102
|
+
|
|
103
|
+
/* #region RED */
|
|
104
|
+
.borderless:not(.disabled) {
|
|
105
|
+
&.red {
|
|
106
|
+
color: var(--red-500);
|
|
107
|
+
|
|
108
|
+
&.active {
|
|
109
|
+
animation: clicked-red ease-in-out 750ms 0s 1 normal both;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
input.borderless:not(.disabled),
|
|
115
|
+
iframe.borderless:not(.disabled) {
|
|
116
|
+
&.red {
|
|
117
|
+
&:focus,
|
|
118
|
+
&.focused {
|
|
119
|
+
border-color: var(--);
|
|
120
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
button.borderless:not(.disabled) {
|
|
126
|
+
&.red {
|
|
127
|
+
&:hover,
|
|
128
|
+
&:focus {
|
|
129
|
+
background-color: var(--red-500);
|
|
130
|
+
color: var(--white)
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
/* #endregion */
|
|
135
|
+
/* RED */
|
|
136
|
+
|
|
137
|
+
/* #region ORANGE */
|
|
138
|
+
.borderless:not(.disabled) {
|
|
139
|
+
&.orange {
|
|
140
|
+
color: var(--orange-500);
|
|
141
|
+
|
|
142
|
+
&.active {
|
|
143
|
+
animation: clicked-orange ease-in-out 750ms 0s 1 normal both;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
input.borderless:not(.disabled),
|
|
149
|
+
iframe.borderless:not(.disabled) {
|
|
150
|
+
&.orange {
|
|
151
|
+
&:focus,
|
|
152
|
+
&.focused {
|
|
153
|
+
border-color: var(--);
|
|
154
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
button.borderless:not(.disabled) {
|
|
160
|
+
&.orange {
|
|
161
|
+
&:hover,
|
|
162
|
+
&:focus {
|
|
163
|
+
background-color: var(--orange-500);
|
|
164
|
+
color: var(--white)
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
/* #endregion */
|
|
169
|
+
/* ORANGE */
|
|
170
|
+
|
|
171
|
+
/* #region YELLOW */
|
|
172
|
+
.borderless:not(.disabled) {
|
|
173
|
+
&.yellow {
|
|
174
|
+
color: var(--yellow-500);
|
|
175
|
+
|
|
176
|
+
&.active {
|
|
177
|
+
animation: clicked-yellow ease-in-out 750ms 0s 1 normal both;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
input.borderless:not(.disabled),
|
|
183
|
+
iframe.borderless:not(.disabled) {
|
|
184
|
+
&.yellow {
|
|
185
|
+
&:focus,
|
|
186
|
+
&.focused {
|
|
187
|
+
border-color: var(--);
|
|
188
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
button.borderless:not(.disabled) {
|
|
194
|
+
&.yellow {
|
|
195
|
+
&:hover,
|
|
196
|
+
&:focus {
|
|
197
|
+
background-color: var(--yellow-500);
|
|
198
|
+
color: var(--white)
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
/* #endregion */
|
|
203
|
+
/* YELLOW */
|
|
204
|
+
|
|
205
|
+
/* #region GREEN */
|
|
206
|
+
.borderless:not(.disabled) {
|
|
207
|
+
&.green {
|
|
208
|
+
color: var(--green-500);
|
|
209
|
+
|
|
210
|
+
&.active {
|
|
211
|
+
animation: clicked-green ease-in-out 750ms 0s 1 normal both;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
input.borderless:not(.disabled),
|
|
217
|
+
iframe.borderless:not(.disabled) {
|
|
218
|
+
&.green {
|
|
219
|
+
&:focus,
|
|
220
|
+
&.focused {
|
|
221
|
+
border-color: var(--);
|
|
222
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
button.borderless:not(.disabled) {
|
|
228
|
+
&.green {
|
|
229
|
+
&:hover,
|
|
230
|
+
&:focus {
|
|
231
|
+
background-color: var(--green-500);
|
|
232
|
+
color: var(--white)
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
/* #endregion */
|
|
237
|
+
/* GREEN */
|
|
238
|
+
|
|
239
|
+
/* #region TEAL */
|
|
240
|
+
.borderless:not(.disabled) {
|
|
241
|
+
&.teal {
|
|
242
|
+
color: var(--teal-500);
|
|
243
|
+
|
|
244
|
+
&.active {
|
|
245
|
+
animation: clicked-teal ease-in-out 750ms 0s 1 normal both;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
input.borderless:not(.disabled),
|
|
251
|
+
iframe.borderless:not(.disabled) {
|
|
252
|
+
&.teal {
|
|
253
|
+
&:focus,
|
|
254
|
+
&.focused {
|
|
255
|
+
border-color: var(--);
|
|
256
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
button.borderless:not(.disabled) {
|
|
262
|
+
&.teal {
|
|
263
|
+
&:hover,
|
|
264
|
+
&:focus {
|
|
265
|
+
background-color: var(--teal-500);
|
|
266
|
+
color: var(--white)
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
/* #endregion */
|
|
271
|
+
/* TEAL */
|
|
272
|
+
|
|
273
|
+
/* #region CYAN */
|
|
274
|
+
.borderless:not(.disabled) {
|
|
275
|
+
&.cyan {
|
|
276
|
+
color: var(--cyan-500);
|
|
277
|
+
|
|
278
|
+
&.active {
|
|
279
|
+
animation: clicked-cyan ease-in-out 750ms 0s 1 normal both;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
input.borderless:not(.disabled),
|
|
285
|
+
iframe.borderless:not(.disabled) {
|
|
286
|
+
&.cyan {
|
|
287
|
+
&:focus,
|
|
288
|
+
&.focused {
|
|
289
|
+
border-color: var(--);
|
|
290
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
button.borderless:not(.disabled) {
|
|
296
|
+
&.cyan {
|
|
297
|
+
&:hover,
|
|
298
|
+
&:focus {
|
|
299
|
+
background-color: var(--cyan-500);
|
|
300
|
+
color: var(--white)
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
/* #endregion */
|
|
305
|
+
/* CYAN */
|
|
306
|
+
|
|
307
|
+
/* #region GRAY */
|
|
308
|
+
.borderless:not(.disabled) {
|
|
309
|
+
&.gray {
|
|
310
|
+
color: var(--gray-500);
|
|
311
|
+
|
|
312
|
+
&.active {
|
|
313
|
+
animation: clicked-gray ease-in-out 750ms 0s 1 normal both;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
input.borderless:not(.disabled),
|
|
319
|
+
iframe.borderless:not(.disabled) {
|
|
320
|
+
&.gray {
|
|
321
|
+
&:focus,
|
|
322
|
+
&.focused {
|
|
323
|
+
border-color: var(--);
|
|
324
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
button.borderless:not(.disabled) {
|
|
330
|
+
&.gray {
|
|
331
|
+
&:hover,
|
|
332
|
+
&:focus {
|
|
333
|
+
background-color: var(--gray-500);
|
|
334
|
+
color: var(--white)
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
/* #endregion */
|
|
339
|
+
/* GRAY */
|
|
340
|
+
|
|
341
|
+
/* #region LIGHT */
|
|
342
|
+
.borderless:not(.disabled) {
|
|
343
|
+
&.light {
|
|
344
|
+
color: var(--light-500);
|
|
345
|
+
|
|
346
|
+
&.active {
|
|
347
|
+
animation: clicked-light ease-in-out 750ms 0s 1 normal both;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
input.borderless:not(.disabled),
|
|
353
|
+
iframe.borderless:not(.disabled) {
|
|
354
|
+
&.light {
|
|
355
|
+
&:focus,
|
|
356
|
+
&.focused {
|
|
357
|
+
border-color: var(--);
|
|
358
|
+
box-shadow: 0 0 0 3.5px rgba(var(---rgb), 0.25);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
button.borderless:not(.disabled) {
|
|
364
|
+
&.light {
|
|
365
|
+
&:hover,
|
|
366
|
+
&:focus {
|
|
367
|
+
background-color: var(--light-500);
|
|
368
|
+
color: var(--white)
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
/* #endregion */
|
|
373
|
+
/* LIGHT */
|