beercss 1.3.0 → 2.0.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/README.md +3 -3
- package/dist/cdn/beer.min.css +1 -1
- package/dist/cdn/beer.min.js +1 -1
- package/package.json +13 -13
- package/src/cdn/beer.css +2 -1
- package/src/cdn/beer.js +68 -43
- package/src/cdn/elements/badges.css +4 -4
- package/src/cdn/elements/buttons.css +77 -22
- package/src/cdn/elements/cards.css +6 -4
- package/src/cdn/elements/chips.css +13 -17
- package/src/cdn/elements/dropdowns.css +6 -6
- package/src/cdn/elements/expansions.css +1 -1
- package/src/cdn/elements/fields.css +195 -201
- package/src/cdn/elements/icons.css +1 -0
- package/src/cdn/elements/layouts.css +52 -1
- package/src/cdn/elements/loaders.css +1 -1
- package/src/cdn/elements/media.css +48 -2
- package/src/cdn/elements/menus.css +26 -38
- package/src/cdn/elements/modals.css +23 -8
- package/src/cdn/elements/navs.css +2 -2
- package/src/cdn/elements/overlays.css +3 -8
- package/src/cdn/elements/pages.css +7 -5
- package/src/cdn/elements/progress.css +29 -0
- package/src/cdn/elements/selections.css +21 -18
- package/src/cdn/elements/tables.css +2 -1
- package/src/cdn/elements/tabs.css +22 -3
- package/src/cdn/elements/toasts.css +9 -4
- package/src/cdn/elements/tooltips.css +2 -2
- package/src/cdn/helpers/colors.css +245 -226
- package/src/cdn/helpers/dividers.css +3 -3
- package/src/cdn/helpers/forms.css +14 -0
- package/src/cdn/helpers/margins.css +1 -1
- package/src/cdn/helpers/paddings.css +14 -14
- package/src/cdn/helpers/{others.css → reset.css} +29 -16
- package/src/cdn/helpers/shadows.css +16 -0
- package/src/cdn/helpers/typography.css +10 -10
- package/src/cdn/helpers/waves.css +3 -3
- package/src/cdn/settings/dark.css +37 -18
- package/src/cdn/settings/light.css +37 -18
|
@@ -38,12 +38,12 @@ video.circle,
|
|
|
38
38
|
video.responsive {
|
|
39
39
|
object-fit: cover;
|
|
40
40
|
object-position: center;
|
|
41
|
-
transition: var(--
|
|
41
|
+
transition: var(--speed3) transform, var(--speed3) border-radius, var(--speed3) padding;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
img.border,
|
|
45
45
|
video.border {
|
|
46
|
-
border: 1rem solid var(--
|
|
46
|
+
border: 1rem solid var(--outline);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
img.round,
|
|
@@ -96,6 +96,12 @@ video.responsive {
|
|
|
96
96
|
height: 100% !important;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
button > i,
|
|
100
|
+
.button > i,
|
|
101
|
+
.chip > i {
|
|
102
|
+
color: inherit;
|
|
103
|
+
}
|
|
104
|
+
|
|
99
105
|
button > img.responsive,
|
|
100
106
|
.button > img.responsive,
|
|
101
107
|
.chip > img.responsive {
|
|
@@ -160,4 +166,44 @@ button.circle > img,
|
|
|
160
166
|
button.square > img {
|
|
161
167
|
margin: 0!important;
|
|
162
168
|
padding: 0!important;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.button > .responsive:first-child,
|
|
172
|
+
button > .responsive:first-child,
|
|
173
|
+
.chip > .responsive:first-child {
|
|
174
|
+
margin-left: -16rem;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.button > .responsive:last-child,
|
|
178
|
+
button > .responsive:last-child,
|
|
179
|
+
.chip > .responsive:last-child {
|
|
180
|
+
margin-right: -16rem;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.button.extend > i:first-child,
|
|
184
|
+
.button.extend > img:first-child,
|
|
185
|
+
button.extend > i:first-child,
|
|
186
|
+
button.extend > img:first-child {
|
|
187
|
+
position: absolute;
|
|
188
|
+
left: 16rem;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.button.extend > i:last-child,
|
|
192
|
+
.button.extend > img:last-child,
|
|
193
|
+
button.extend > i:last-child,
|
|
194
|
+
button.extend > img:last-child {
|
|
195
|
+
position: absolute;
|
|
196
|
+
right: 16rem;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.button.extend > img.responsive:first-child,
|
|
200
|
+
button.extend > img.responsive:first-child {
|
|
201
|
+
position: absolute;
|
|
202
|
+
left: 0;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.button.extend > img.responsive:last-child,
|
|
206
|
+
button.extend > img.responsive:last-child {
|
|
207
|
+
position: absolute;
|
|
208
|
+
right: 0;
|
|
163
209
|
}
|
|
@@ -5,8 +5,9 @@
|
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
border: 0;
|
|
7
7
|
position: fixed;
|
|
8
|
-
box-shadow: var(--
|
|
9
|
-
|
|
8
|
+
box-shadow: var(--shadow2);
|
|
9
|
+
color: var(--on-surface-variant);
|
|
10
|
+
background-color: var(--surface-variant);
|
|
10
11
|
transform: none;
|
|
11
12
|
box-sizing: border-box;
|
|
12
13
|
z-index: 100;
|
|
@@ -43,7 +44,7 @@
|
|
|
43
44
|
|
|
44
45
|
.menu.border {
|
|
45
46
|
box-shadow: none;
|
|
46
|
-
border: 1rem solid var(--
|
|
47
|
+
border: 1rem solid var(--outline);
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
.menu.left.border {
|
|
@@ -70,26 +71,6 @@
|
|
|
70
71
|
border-left: none;
|
|
71
72
|
}
|
|
72
73
|
|
|
73
|
-
.menu.round {
|
|
74
|
-
border-radius: 40rem;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.menu.left.round:not(.margin, .small-margin, .medium-margin, .large-margin) {
|
|
78
|
-
border-radius: 0 24rem 24rem 0;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.menu.right.round:not(.margin, .small-margin, .medium-margin, .large-margin) {
|
|
82
|
-
border-radius: 24rem 0 0 24rem;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.menu.bottom.round:not(.margin, .small-margin, .medium-margin, .large-margin) {
|
|
86
|
-
border-radius: 24rem 24rem 0 0;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.menu.top.round:not(.margin, .small-margin, .medium-margin, .large-margin) {
|
|
90
|
-
border-radius: 0 0 24rem 24rem;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
74
|
.menu.active {
|
|
94
75
|
box-shadow: none;
|
|
95
76
|
}
|
|
@@ -144,7 +125,7 @@
|
|
|
144
125
|
z-index: 1;
|
|
145
126
|
}
|
|
146
127
|
|
|
147
|
-
.menu > a:not(.button, .chip) {
|
|
128
|
+
.menu > a:not(button, .button, .chip) {
|
|
148
129
|
border: 0;
|
|
149
130
|
display: flex;
|
|
150
131
|
align-items: center;
|
|
@@ -161,46 +142,53 @@
|
|
|
161
142
|
min-height: 56rem;
|
|
162
143
|
}
|
|
163
144
|
|
|
164
|
-
.menu.no-space:not(.left, .right) > a:not(.button, .chip) {
|
|
145
|
+
.menu.no-space:not(.left, .right) > a:not(button, .button, .chip) {
|
|
165
146
|
margin: 0;
|
|
166
147
|
}
|
|
167
148
|
|
|
168
|
-
.menu:not(.left, .right) > a:not(.button, .chip),
|
|
169
|
-
.menu.small-space:not(.left, .right) > a:not(.button, .chip) {
|
|
149
|
+
.menu:not(.left, .right) > a:not(button, .button, .chip),
|
|
150
|
+
.menu.small-space:not(.left, .right) > a:not(button, .button, .chip) {
|
|
170
151
|
margin: 0 8rem;
|
|
171
152
|
}
|
|
172
153
|
|
|
173
|
-
.menu.medium-space:not(.left, .right) > a:not(.button, .chip) {
|
|
154
|
+
.menu.medium-space:not(.left, .right) > a:not(button, .button, .chip) {
|
|
174
155
|
margin: 0 12rem;
|
|
175
156
|
}
|
|
176
157
|
|
|
177
|
-
.menu.large-space:not(.left, .right) > a:not(.button, .chip) {
|
|
158
|
+
.menu.large-space:not(.left, .right) > a:not(button, .button, .chip) {
|
|
178
159
|
margin: 0 16rem;
|
|
179
160
|
}
|
|
180
161
|
|
|
181
|
-
.menu.no-space:not(.top, .bottom) > a:not(.button, .chip) {
|
|
162
|
+
.menu.no-space:not(.top, .bottom) > a:not(button, .button, .chip) {
|
|
182
163
|
margin: 0;
|
|
183
164
|
}
|
|
184
165
|
|
|
185
|
-
.menu:not(.top, .bottom) > a:not(.button, .chip),
|
|
186
|
-
.menu.small-space:not(.top, .bottom) > a:not(.button, .chip) {
|
|
166
|
+
.menu:not(.top, .bottom) > a:not(button, .button, .chip),
|
|
167
|
+
.menu.small-space:not(.top, .bottom) > a:not(button, .button, .chip) {
|
|
187
168
|
margin: 4rem 0;
|
|
188
169
|
}
|
|
189
170
|
|
|
190
|
-
.menu.medium-space:not(.top, .bottom) > a:not(.button, .chip) {
|
|
171
|
+
.menu.medium-space:not(.top, .bottom) > a:not(button, .button, .chip) {
|
|
191
172
|
margin: 8rem 0;
|
|
192
173
|
}
|
|
193
174
|
|
|
194
|
-
.menu.large-space:not(.top, .bottom) > a:not(.button, .chip) {
|
|
175
|
+
.menu.large-space:not(.top, .bottom) > a:not(button, .button, .chip) {
|
|
195
176
|
margin: 12rem 0;
|
|
196
177
|
}
|
|
197
178
|
|
|
198
|
-
.menu > a:not(.button, .chip)
|
|
199
|
-
|
|
179
|
+
.menu > a:not(button, .button, .chip) > i {
|
|
180
|
+
margin-bottom: 4rem;
|
|
181
|
+
padding: 4rem;
|
|
182
|
+
border-radius: 32rem;
|
|
183
|
+
transition: var(--speed1) padding linear;
|
|
200
184
|
}
|
|
201
185
|
|
|
202
|
-
.menu > a:not(.button, .chip)
|
|
203
|
-
|
|
186
|
+
.menu > a:not(button, .button, .chip):hover > i,
|
|
187
|
+
.menu > a:not(button, .button, .chip):focus > i,
|
|
188
|
+
.menu > a:not(button, .button, .chip).active > i {
|
|
189
|
+
background-color: var(--primary);
|
|
190
|
+
color: var(--on-primary);
|
|
191
|
+
padding: 4rem 16rem;
|
|
204
192
|
}
|
|
205
193
|
|
|
206
194
|
.menu > .row {
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
opacity: 0;
|
|
3
3
|
visibility: hidden;
|
|
4
4
|
position: fixed;
|
|
5
|
-
box-shadow: var(--
|
|
6
|
-
|
|
5
|
+
box-shadow: var(--shadow2);
|
|
6
|
+
color: var(--on-surface-variant);
|
|
7
|
+
background-color: var(--surface-variant);
|
|
7
8
|
padding: 16rem;
|
|
8
9
|
box-sizing: border-box;
|
|
9
10
|
z-index: 100;
|
|
@@ -17,7 +18,7 @@
|
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
.modal.border {
|
|
20
|
-
border: 1rem solid var(--
|
|
21
|
+
border: 1rem solid var(--outline);
|
|
21
22
|
box-shadow: none;
|
|
22
23
|
}
|
|
23
24
|
|
|
@@ -60,27 +61,27 @@
|
|
|
60
61
|
opacity: 1;
|
|
61
62
|
visibility: visible;
|
|
62
63
|
transform: translate(-50%, 0);
|
|
63
|
-
animation: var(--
|
|
64
|
+
animation: var(--speed2) modal-to-center ease;
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
.modal.active.left {
|
|
67
68
|
transform: translate(0);
|
|
68
|
-
animation: var(--
|
|
69
|
+
animation: var(--speed2) modal-to-right ease;
|
|
69
70
|
}
|
|
70
71
|
|
|
71
72
|
.modal.active.right {
|
|
72
73
|
transform: translate(0);
|
|
73
|
-
animation: var(--
|
|
74
|
+
animation: var(--speed2) modal-to-left ease;
|
|
74
75
|
}
|
|
75
76
|
|
|
76
77
|
.modal.active.top {
|
|
77
78
|
transform: translate(0);
|
|
78
|
-
animation: var(--
|
|
79
|
+
animation: var(--speed2) modal-to-bottom ease;
|
|
79
80
|
}
|
|
80
81
|
|
|
81
82
|
.modal.active.bottom {
|
|
82
83
|
transform: translate(0);
|
|
83
|
-
animation: var(--
|
|
84
|
+
animation: var(--speed2) modal-to-top ease;
|
|
84
85
|
}
|
|
85
86
|
|
|
86
87
|
.modal.top {
|
|
@@ -159,6 +160,7 @@
|
|
|
159
160
|
text-align: left;
|
|
160
161
|
padding: 16rem 16rem 16rem 80rem;
|
|
161
162
|
overflow-y: auto;
|
|
163
|
+
background-color: inherit;
|
|
162
164
|
}
|
|
163
165
|
|
|
164
166
|
.menu.right > .modal {
|
|
@@ -173,6 +175,19 @@
|
|
|
173
175
|
padding: 16rem 48rem 80rem 48rem;
|
|
174
176
|
}
|
|
175
177
|
|
|
178
|
+
.modal > a:not(button, .button, .chip):hover,
|
|
179
|
+
.modal > a:not(button, .button, .chip).active {
|
|
180
|
+
background-color: var(--active);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.modal > a.row {
|
|
184
|
+
margin: 0 -8rem;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.modal > a:not(button, .button, .chip) {
|
|
188
|
+
padding: 12rem 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
176
191
|
@keyframes modal-to-right {
|
|
177
192
|
from {
|
|
178
193
|
opacity: 0;
|
|
@@ -6,16 +6,11 @@
|
|
|
6
6
|
left: 0;
|
|
7
7
|
width: 100%;
|
|
8
8
|
height: 100%;
|
|
9
|
-
color:
|
|
10
|
-
background-color:
|
|
9
|
+
color: var(--on-background);
|
|
10
|
+
background-color: var(--overlay);
|
|
11
11
|
z-index: 100;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
.overlay.light {
|
|
15
|
-
color: var(--color-2);
|
|
16
|
-
background-color: var(--color-4a);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
14
|
.menu > .overlay {
|
|
20
15
|
z-index: 0;
|
|
21
16
|
}
|
|
@@ -23,7 +18,7 @@
|
|
|
23
18
|
.overlay.active {
|
|
24
19
|
opacity: 1;
|
|
25
20
|
visibility: visible;
|
|
26
|
-
animation: var(--
|
|
21
|
+
animation: var(--speed3) overlay-to-active;
|
|
27
22
|
}
|
|
28
23
|
|
|
29
24
|
.overlay.active.top-align,
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
.page
|
|
1
|
+
.page,
|
|
2
|
+
.modal:not(.active) .page.active,
|
|
3
|
+
.page:not(.active) .page.active {
|
|
2
4
|
opacity: 0;
|
|
3
5
|
position: absolute;
|
|
4
6
|
visibility: hidden;
|
|
@@ -12,19 +14,19 @@
|
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
.page.top.active {
|
|
15
|
-
animation: var(--
|
|
17
|
+
animation: var(--speed4) page-to-bottom ease;
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
.page.bottom.active {
|
|
19
|
-
animation: var(--
|
|
21
|
+
animation: var(--speed4) page-to-top ease;
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
.page.left.active {
|
|
23
|
-
animation: var(--
|
|
25
|
+
animation: var(--speed4) page-to-right ease;
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
.page.right.active {
|
|
27
|
-
animation: var(--
|
|
29
|
+
animation: var(--speed4) page-to-left ease;
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
@keyframes page-to-bottom {
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
.progress {
|
|
2
|
+
position: absolute;
|
|
3
|
+
background-color: var(--active);
|
|
4
|
+
top: 0;
|
|
5
|
+
bottom: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
right: 0;
|
|
8
|
+
border-radius: inherit;
|
|
9
|
+
margin: 0 !important;
|
|
10
|
+
padding: 0 !important;
|
|
11
|
+
transition: var(--speed4) clip-path;
|
|
12
|
+
clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.progress.left {
|
|
16
|
+
clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0%);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.progress.right {
|
|
20
|
+
clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 100% 0%);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.progress.top {
|
|
24
|
+
clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.progress.bottom {
|
|
28
|
+
clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
|
|
29
|
+
}
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
line-height: normal;
|
|
8
8
|
white-space: nowrap;
|
|
9
9
|
cursor: pointer;
|
|
10
|
+
display: inline-flex;
|
|
11
|
+
align-items: center;
|
|
10
12
|
}
|
|
11
13
|
|
|
12
14
|
.checkbox > *,
|
|
@@ -28,7 +30,7 @@
|
|
|
28
30
|
.switch > span {
|
|
29
31
|
display: inline-flex;
|
|
30
32
|
align-items: center;
|
|
31
|
-
color: var(--
|
|
33
|
+
color: var(--on-background);
|
|
32
34
|
font-size: 14rem;
|
|
33
35
|
}
|
|
34
36
|
|
|
@@ -61,8 +63,8 @@
|
|
|
61
63
|
margin: 0 auto;
|
|
62
64
|
padding: 0;
|
|
63
65
|
outline: none;
|
|
64
|
-
cursor:
|
|
65
|
-
color:
|
|
66
|
+
cursor: inherit;
|
|
67
|
+
color: var(--primary);
|
|
66
68
|
position: absolute;
|
|
67
69
|
left: -24rem;
|
|
68
70
|
background-color: transparent;
|
|
@@ -79,18 +81,18 @@
|
|
|
79
81
|
|
|
80
82
|
.checkbox > input:focus + span::before,
|
|
81
83
|
.radio > input:focus + span::before {
|
|
82
|
-
background-color: var(--
|
|
83
|
-
box-shadow: 0 0 0 8rem var(--
|
|
84
|
-
animation: var(--
|
|
84
|
+
background-color: var(--active);
|
|
85
|
+
box-shadow: 0 0 0 8rem var(--active);
|
|
86
|
+
animation: var(--speed1) to-checked ease-out;
|
|
85
87
|
}
|
|
86
88
|
|
|
87
89
|
.checkbox > input:checked + span::before {
|
|
88
|
-
color: var(--
|
|
90
|
+
color: var(--primary);
|
|
89
91
|
content: "check_box";
|
|
90
92
|
}
|
|
91
93
|
|
|
92
94
|
.radio > input:checked + span::before {
|
|
93
|
-
color: var(--
|
|
95
|
+
color: var(--primary);
|
|
94
96
|
content: "radio_button_checked";
|
|
95
97
|
}
|
|
96
98
|
|
|
@@ -129,17 +131,17 @@
|
|
|
129
131
|
position:absolute;
|
|
130
132
|
left: 0;
|
|
131
133
|
top: 50%;
|
|
132
|
-
background-color:
|
|
134
|
+
background-color: var(--on-background);
|
|
135
|
+
opacity: .6;
|
|
133
136
|
width: 32rem;
|
|
134
137
|
height: 14rem;
|
|
135
138
|
border-radius: 8rem;
|
|
136
139
|
animation: none;
|
|
137
|
-
cursor: pointer;
|
|
138
140
|
transform: translate(-40rem, -50%);
|
|
139
141
|
}
|
|
140
142
|
|
|
141
143
|
.switch > input:checked + span::before {
|
|
142
|
-
background-color: var(--
|
|
144
|
+
background-color: var(--primary);
|
|
143
145
|
}
|
|
144
146
|
|
|
145
147
|
.switch > input + span::after {
|
|
@@ -149,33 +151,34 @@
|
|
|
149
151
|
width: 20rem;
|
|
150
152
|
height: 20rem;
|
|
151
153
|
background-color: #ffffff;
|
|
152
|
-
box-shadow: var(--
|
|
154
|
+
box-shadow: var(--shadow1);
|
|
153
155
|
left: 0;
|
|
154
156
|
top: 50%;
|
|
155
|
-
transition: var(--
|
|
157
|
+
transition: var(--speed1) transform, var(--speed1) background-color;
|
|
156
158
|
transform: translate(-44rem, -50%);
|
|
157
159
|
}
|
|
158
160
|
|
|
159
161
|
.switch > input:checked + span::after {
|
|
160
|
-
background-color: var(--
|
|
162
|
+
background-color: var(--primary);
|
|
161
163
|
transform: translate(-24rem, -50%);
|
|
162
164
|
}
|
|
163
165
|
|
|
164
166
|
.switch > input:focus + span::after {
|
|
165
|
-
box-shadow: 0 0 0 8rem var(--
|
|
167
|
+
box-shadow: 0 0 0 8rem var(--active);
|
|
166
168
|
}
|
|
167
169
|
|
|
168
170
|
.checkbox > input:disabled + span,
|
|
169
171
|
.radio > input:disabled + span,
|
|
170
172
|
.switch > input:disabled + span {
|
|
171
|
-
opacity:
|
|
173
|
+
opacity: .5;
|
|
174
|
+
cursor: not-allowed;
|
|
172
175
|
}
|
|
173
176
|
|
|
174
177
|
@keyframes to-checked {
|
|
175
178
|
from {
|
|
176
|
-
box-shadow: 0 0 0 0 var(--
|
|
179
|
+
box-shadow: 0 0 0 0 var(--active);
|
|
177
180
|
}
|
|
178
181
|
to {
|
|
179
|
-
box-shadow: 0 0 0 8rem var(--
|
|
182
|
+
box-shadow: 0 0 0 8rem var(--active);
|
|
180
183
|
}
|
|
181
184
|
}
|
|
@@ -2,6 +2,7 @@ table {
|
|
|
2
2
|
width: 100%;
|
|
3
3
|
border-spacing: 0;
|
|
4
4
|
font-size: 14rem;
|
|
5
|
+
color: var(--on-background);
|
|
5
6
|
}
|
|
6
7
|
|
|
7
8
|
table th {
|
|
@@ -21,7 +22,7 @@ table td {
|
|
|
21
22
|
|
|
22
23
|
table.border td,
|
|
23
24
|
table.border th {
|
|
24
|
-
border-bottom: 1rem solid var(--
|
|
25
|
+
border-bottom: 1rem solid var(--outline);
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
table.small td,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
.tabs {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: space-around;
|
|
2
4
|
margin-top: 16rem;
|
|
3
5
|
white-space: nowrap;
|
|
4
|
-
border-bottom: 1rem solid var(--
|
|
6
|
+
border-bottom: 1rem solid var(--outline);
|
|
5
7
|
}
|
|
6
8
|
|
|
7
9
|
* > .tabs:first-child {
|
|
@@ -13,12 +15,13 @@
|
|
|
13
15
|
align-items: center;
|
|
14
16
|
font-size: 14rem;
|
|
15
17
|
font-weight: 500;
|
|
16
|
-
color: var(--
|
|
18
|
+
color: var(--on-background);
|
|
17
19
|
padding: 0 16rem;
|
|
18
20
|
text-transform: uppercase;
|
|
19
21
|
border-bottom: 2rem solid transparent;
|
|
20
22
|
text-align: center;
|
|
21
23
|
min-height: 40rem;
|
|
24
|
+
width: 100%;
|
|
22
25
|
}
|
|
23
26
|
|
|
24
27
|
.tabs > a > span {
|
|
@@ -38,5 +41,21 @@
|
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
.tabs > a.active {
|
|
41
|
-
|
|
44
|
+
color: var(--primary);
|
|
45
|
+
border-bottom: 2rem solid var(--primary);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.tabs > a.active > i {
|
|
49
|
+
color: var(--primary);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.tabs > a > i,
|
|
53
|
+
.tabs > a > img {
|
|
54
|
+
margin: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.tabs.left-align > a,
|
|
58
|
+
.tabs.center-align > a,
|
|
59
|
+
.tabs.right-align > a {
|
|
60
|
+
width: auto;
|
|
42
61
|
}
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
z-index: 200;
|
|
10
10
|
visibility: hidden;
|
|
11
11
|
display: inline-block;
|
|
12
|
-
box-shadow: var(--
|
|
13
|
-
|
|
12
|
+
box-shadow: var(--shadow2);
|
|
13
|
+
color: var(--on-error);
|
|
14
|
+
background-color: var(--error-background);
|
|
14
15
|
padding: 16rem;
|
|
15
16
|
opacity: 1;
|
|
16
17
|
margin: 0;
|
|
@@ -32,12 +33,12 @@
|
|
|
32
33
|
|
|
33
34
|
.toast.active {
|
|
34
35
|
visibility: visible;
|
|
35
|
-
animation: var(--
|
|
36
|
+
animation: var(--speed2) toast-to-top;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
.toast.active.top {
|
|
39
40
|
visibility: visible;
|
|
40
|
-
animation: var(--
|
|
41
|
+
animation: var(--speed2) toast-to-bottom;
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
.toast.small {
|
|
@@ -60,6 +61,10 @@
|
|
|
60
61
|
margin-left: 8rem;
|
|
61
62
|
}
|
|
62
63
|
|
|
64
|
+
.toast > * {
|
|
65
|
+
color: inherit;
|
|
66
|
+
}
|
|
67
|
+
|
|
63
68
|
@keyframes toast-to-top {
|
|
64
69
|
0% {
|
|
65
70
|
opacity: 0;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.tooltip {
|
|
2
2
|
display: none;
|
|
3
|
-
background-color:rgba(0,
|
|
3
|
+
background-color: rgba(0,0,0,.9);
|
|
4
4
|
color: #ffffff;
|
|
5
5
|
font-size: 12rem;
|
|
6
6
|
text-align: center;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.tooltip.border {
|
|
28
|
-
border: 1rem solid var(--
|
|
28
|
+
border: 1rem solid var(--outline);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
.tooltip.left {
|