pallote-css 0.10.9 → 0.10.11

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.
Files changed (35) hide show
  1. package/package.json +1 -1
  2. package/pallote.min.css +1 -1
  3. package/pallote.min.css.map +1 -1
  4. package/styles/common/_editor.scss +20 -20
  5. package/styles/common/_global.scss +10 -10
  6. package/styles/common/_mixins.scss +5 -5
  7. package/styles/common/_reset.scss +2 -3
  8. package/styles/common/_variables.scss +17 -15
  9. package/styles/components/_accordion.scss +7 -7
  10. package/styles/components/_alert.scss +22 -22
  11. package/styles/components/_breadcrumbs.scss +8 -8
  12. package/styles/components/_button.scss +6 -13
  13. package/styles/components/_card.scss +32 -29
  14. package/styles/components/_chip.scss +4 -4
  15. package/styles/components/_datatable.scss +6 -6
  16. package/styles/components/_divider.scss +6 -6
  17. package/styles/components/_form.scss +3 -3
  18. package/styles/components/_input.scss +51 -38
  19. package/styles/components/_link.scss +3 -3
  20. package/styles/components/_list.scss +3 -3
  21. package/styles/components/_nav.scss +12 -12
  22. package/styles/components/_navbar.scss +13 -13
  23. package/styles/components/_section.scss +77 -34
  24. package/styles/components/_sidebar.scss +12 -12
  25. package/styles/components/_snippet.scss +16 -14
  26. package/styles/components/_status.scss +1 -1
  27. package/styles/components/_stepper.scss +3 -3
  28. package/styles/components/_switch.scss +5 -5
  29. package/styles/components/_table.scss +8 -9
  30. package/styles/components/_tabs.scss +22 -22
  31. package/styles/components/_tag.scss +5 -5
  32. package/styles/components/_tooltip.scss +6 -6
  33. package/styles/modules/_cookie.scss +6 -6
  34. package/styles/utilities/_global.scss +77 -70
  35. package/styles/utilities/_text.scss +3 -3
@@ -50,11 +50,11 @@ header {
50
50
  }
51
51
 
52
52
  .navbar {
53
- top: 0;
54
- left: 0;
53
+ inset-block-start: 0;
54
+ inset-inline-start: 0;
55
55
  width: 100%;
56
56
  background-color: variables.$background-paper;
57
- border-bottom: variables.$border;
57
+ border-block-end: variables.$border;
58
58
  z-index: 13;
59
59
 
60
60
  @include mixins.responsive(up, tablet) {
@@ -70,8 +70,8 @@ header {
70
70
  flex-direction: row;
71
71
  align-items: center;
72
72
  justify-content: space-between;
73
- padding-top: 0;
74
- padding-bottom: 0;
73
+ padding-block-start: 0;
74
+ padding-block-end: 0;
75
75
 
76
76
  @include mixins.responsive(up, tablet) {
77
77
  height: 100%;
@@ -80,7 +80,7 @@ header {
80
80
  @include mixins.responsive(down, tablet) {
81
81
  flex-direction: column;
82
82
  align-items: stretch;
83
- padding-top: 0;
83
+ padding-block-start: 0;
84
84
  }
85
85
  }
86
86
 
@@ -194,8 +194,8 @@ header {
194
194
  align-items: stretch;
195
195
  overflow: scroll;
196
196
  width: 100%;
197
- margin-top: 1rem;
198
- margin-bottom: 1rem;
197
+ margin-block-start: 1rem;
198
+ margin-block-end: 1rem;
199
199
  flex-direction: column;
200
200
  width: 100%;
201
201
  }
@@ -204,8 +204,8 @@ header {
204
204
  &_item:not(:first-child) {
205
205
 
206
206
  @include mixins.responsive(down, tablet) {
207
- margin-top: .25rem;
208
- margin-left: 0;
207
+ margin-block-start: .25rem;
208
+ margin-inline-start: 0;
209
209
  }
210
210
  }
211
211
 
@@ -214,9 +214,9 @@ header {
214
214
  @include mixins.responsive(up, tablet) {
215
215
 
216
216
  .nav_target {
217
- @include mixins.calc(top, '100% +' variables.$nav-item*0.5);
217
+ @include mixins.calc(inset-block-start, '100% +' variables.$nav-item*0.5);
218
218
  position: absolute;
219
- left: -(variables.$nav-item*.5);
219
+ inset-inline-start: -(variables.$nav-item*.5);
220
220
  width: 10rem;
221
221
  padding: variables.$nav-item*.5;
222
222
  border-radius: variables.$border-radius-md;
@@ -233,7 +233,7 @@ header {
233
233
  // align
234
234
  // —————————————————————————————————————————————————————————————————
235
235
 
236
- .navbar-right {
236
+ .navbar-end {
237
237
 
238
238
  .section_container {
239
239
 
@@ -15,8 +15,8 @@
15
15
  // —————————————————————————————————————————————————————————————————
16
16
 
17
17
  .section {
18
- @include mixins.clamp(padding-right, 1rem, 4vw, 4rem);
19
- @include mixins.clamp(padding-left, 1rem, 4vw, 4rem);
18
+ @include mixins.clamp(padding-inline-end, 1rem, 4vw, 4rem);
19
+ @include mixins.clamp(padding-inline-start, 1rem, 4vw, 4rem);
20
20
  width: 100%;
21
21
  position: relative;
22
22
  display: flex;
@@ -24,22 +24,19 @@
24
24
  align-items: center;
25
25
 
26
26
  &_container {
27
- @include mixins.clamp(padding-top, 2rem, 8vw, 4rem);
28
- @include mixins.clamp(padding-bottom, 2rem, 8vw, 4rem);
27
+ @include mixins.clamp(padding-block-start, 2rem, 8vw, 4rem);
28
+ @include mixins.clamp(padding-block-end, 2rem, 8vw, 4rem);
29
29
  width: 100%;
30
30
  max-width: variables.$desktop;
31
31
  position: relative; // needed to have the content over section-landing:before
32
32
  }
33
33
 
34
34
  &_header {
35
+ display: flex;
36
+ flex-direction: column;
35
37
 
36
- @include mixins.responsive(down, tablet) {
37
- display: flex;
38
- flex-direction: column;
39
- }
40
-
41
- & + .section_content { @include mixins.clamp(padding-top, 2rem, 8vw, 4rem); }
42
- &-dense + .section_content { padding-top: 2rem; }
38
+ & + .section_content { @include mixins.clamp(padding-block-start, 2rem, 8vw, 4rem); }
39
+ &-dense + .section_content { padding-block-start: 2rem; }
43
40
  }
44
41
 
45
42
  &_content {
@@ -47,23 +44,25 @@
47
44
 
48
45
  & + &,
49
46
  & + .section_header {
50
- @include mixins.clamp(padding-top, 2rem, 8vw, 4rem);
47
+ @include mixins.clamp(padding-block-start, 2rem, 8vw, 4rem);
51
48
  }
52
49
  }
53
50
 
54
51
  &_label {
55
52
  color: variables.$text-alt;
56
53
  font-weight: variables.$weight-bold;
57
- margin-bottom: .5rem;
54
+ margin-block-end: .5rem;
58
55
  }
59
56
 
60
57
  &_titleWrapper {
61
58
  display: flex;
62
59
  align-items: center;
63
60
  justify-content: space-between;
61
+ gap: 1rem;
62
+ width: 100%;
64
63
 
65
64
  div.section_actions {
66
- margin-top: 0;
65
+ margin-block-start: 0;
67
66
  }
68
67
  }
69
68
 
@@ -75,14 +74,14 @@
75
74
  &_subtitle {
76
75
  @extend %subtitle;
77
76
  max-width: variables.$max-width-subtitle;
78
- margin-top: 1rem;
77
+ margin-block-start: 1rem;
79
78
  word-wrap: normal;
80
79
  }
81
80
 
82
81
  &_actions {
83
82
 
84
83
  @include mixins.responsive(down, tablet) {
85
- margin-top: 2rem;
84
+ margin-block-start: 2rem;
86
85
  }
87
86
  }
88
87
  }
@@ -103,13 +102,27 @@
103
102
  text-align: center;
104
103
  }
105
104
 
106
- .section-right .section_container,
107
- .section-right .section_header,
108
- .section_content-right {
105
+ .section-center {
106
+
107
+ .section_titleWrapper {
108
+ justify-content: center;
109
+ }
110
+ }
111
+
112
+ .section-end .section_container,
113
+ .section-end .section_header,
114
+ .section_content-end {
109
115
  align-items: flex-end;
110
116
  text-align: right;
111
117
  }
112
118
 
119
+ .section-end {
120
+
121
+ .section_titleWrapper {
122
+ flex-direction: row-reverse;
123
+ }
124
+ }
125
+
113
126
  // —————————————————————————————————————————————————————————————————
114
127
  // color
115
128
  // —————————————————————————————————————————————————————————————————
@@ -127,7 +140,7 @@
127
140
  & + & {
128
141
 
129
142
  .section_container {
130
- padding-top: 0;
143
+ padding-block-start: 0;
131
144
  }
132
145
  }
133
146
 
@@ -136,6 +149,22 @@
136
149
  .snippet {
137
150
  border-color: $border-color;
138
151
  }
152
+
153
+ a[href],
154
+ area[href],
155
+ input,
156
+ input[type="checkbox"],
157
+ input[type='radio'],
158
+ select,
159
+ textarea,
160
+ button,
161
+ iframe,
162
+ [tabindex],
163
+ [contentEditable=true] {
164
+
165
+ &:focus-visible { outline-color: $color; }
166
+ }
167
+
139
168
  }
140
169
 
141
170
  .section {
@@ -146,15 +175,29 @@
146
175
  variables.$primary-contrast, // title-color
147
176
  variables.$primary-contrast, // color
148
177
  variables.$hover-contrast, // paper-color
149
- variables.$border-color-contrast // border-color
150
- );}
178
+ variables.$primary-border-color // border-color
179
+ ); }
151
180
  &-primaryLight { @include section-color(
152
181
  variables.$primary-light, // background-color
153
182
  variables.$text, // title-color
154
183
  variables.$text, // color
155
184
  variables.$hover-contrast, // paper-color
156
- variables.$border-color-contrast // border-color
157
- );}
185
+ variables.$border-color // border-color
186
+ ); }
187
+ &-secondary { @include section-color(
188
+ variables.$secondary, // background-color
189
+ variables.$secondary-contrast, // title-color
190
+ variables.$secondary-contrast, // color
191
+ variables.$hover-contrast, // paper-color
192
+ variables.$secondary-border-color // border-color
193
+ ); }
194
+ &-secondaryLight { @include section-color(
195
+ variables.$secondary-light, // background-color
196
+ variables.$text, // title-color
197
+ variables.$text, // color
198
+ variables.$hover-contrast, // paper-color
199
+ variables.$border-color // border-color
200
+ ); }
158
201
  }
159
202
 
160
203
  // —————————————————————————————————————————————————————————————————
@@ -162,9 +205,9 @@
162
205
  // —————————————————————————————————————————————————————————————————
163
206
 
164
207
  @mixin section-header-level($label-mb, $subtitle-mt, $actions-mt) {
165
- .section_label { margin-bottom: $label-mb; }
166
- .section_subtitle { margin-top: $subtitle-mt; }
167
- .section_actions { margin-top: $actions-mt; }
208
+ .section_label { margin-block-end: $label-mb; }
209
+ .section_subtitle { margin-block-start: $subtitle-mt; }
210
+ .section_actions { margin-block-start: $actions-mt; }
168
211
  }
169
212
 
170
213
  .section_header-1 { @include section-header-level(.75rem, 1.5rem, 2.5rem); }
@@ -180,15 +223,15 @@
180
223
  .section {
181
224
 
182
225
  &_container {
183
- @include mixins.clamp(padding-top, 2rem, 10vw, 7rem);
184
- @include mixins.clamp(padding-bottom, 2rem, 10vw, 7rem);
226
+ @include mixins.clamp(padding-block-start, 2rem, 10vw, 7rem);
227
+ @include mixins.clamp(padding-block-end, 2rem, 10vw, 7rem);
185
228
  }
186
229
 
187
230
  &_label {
188
- margin-bottom: 1rem;
231
+ margin-block-end: 1rem;
189
232
 
190
233
  @include mixins.responsive(down, tablet) {
191
- margin-bottom: 0.75rem;
234
+ margin-block-end: 0.75rem;
192
235
  }
193
236
  }
194
237
 
@@ -199,17 +242,17 @@
199
242
 
200
243
  &_subtitle {
201
244
  @extend %h6;
202
- margin-top: 2rem;
245
+ margin-block-start: 2rem;
203
246
 
204
247
  @include mixins.responsive(down, tablet) {
205
- margin-top: 1.5rem;
248
+ margin-block-start: 1.5rem;
206
249
  }
207
250
  }
208
251
 
209
252
  &_actions {
210
253
 
211
254
  @include mixins.responsive(down, tablet) {
212
- margin-top: 3rem;
255
+ margin-block-start: 3rem;
213
256
  }
214
257
  }
215
258
  }
@@ -5,13 +5,13 @@
5
5
  $sidebar-width: 200px;
6
6
 
7
7
  .sidebar {
8
- transition: left variables.$transition-md;
8
+ transition: inset-inline-start variables.$transition-md;
9
9
  @include mixins.calc(height, '100vh - 'variables.$navbar-height);
10
10
  position: sticky;
11
11
  flex-shrink: 0;
12
- border-right: variables.$border;
12
+ border-inline-end: variables.$border;
13
13
  width: $sidebar-width;
14
- top: variables.$navbar-height;
14
+ inset-block-start: variables.$navbar-height;
15
15
  padding: 1rem;
16
16
  overflow-y: scroll;
17
17
  scrollbar-color: light;
@@ -19,15 +19,15 @@ $sidebar-width: 200px;
19
19
  background-color: variables.$background-default;
20
20
 
21
21
  &.js-opened {
22
- left: 0;
22
+ inset-inline-start: 0;
23
23
  }
24
24
 
25
25
  @include mixins.responsive(down, tablet) {
26
26
  position: fixed;
27
27
  height: 100vh;
28
- top: 0;
29
- left: -$sidebar-width;
30
- padding-top: variables.$navbar-height-sm;
28
+ inset-block-start: 0;
29
+ inset-inline-start: -$sidebar-width;
30
+ padding-block-start: variables.$navbar-height-sm;
31
31
  z-index: 13;
32
32
  }
33
33
 
@@ -37,7 +37,7 @@ $sidebar-width: 200px;
37
37
  border-width: 0 2px 2px 0;
38
38
  padding: 4px;
39
39
  transform: rotate(-45deg);
40
- margin-right: 1rem;
40
+ margin-inline-end: 1rem;
41
41
  display: none;
42
42
 
43
43
  .page-withSidebar & { display: initial; }
@@ -45,8 +45,8 @@ $sidebar-width: 200px;
45
45
 
46
46
  &-close {
47
47
  position: absolute;
48
- top: variables.$navbar-height-sm*0.5;
49
- left: variables.$navbar-height-sm*0.5;
48
+ inset-block-start: variables.$navbar-height-sm*0.5;
49
+ inset-inline-start: variables.$navbar-height-sm*0.5;
50
50
  transform: translateY(-50%) rotate(135deg);
51
51
  }
52
52
  }
@@ -55,7 +55,7 @@ $sidebar-width: 200px;
55
55
  @extend %overline;
56
56
  color: variables.$text-alt;
57
57
  font-weight: variables.$weight-bold;
58
- margin-bottom: .25rem;
59
- margin-left: 0;
58
+ margin-block-end: .25rem;
59
+ margin-inline-start: 0;
60
60
  }
61
61
  }
@@ -24,19 +24,20 @@
24
24
  border: variables.$border;
25
25
 
26
26
  & + & {
27
- margin-top: .5rem;
27
+ margin-block-start: .5rem;
28
28
  }
29
29
 
30
30
  p > & {
31
- margin-right: .25rem;
32
- margin-left: .25rem;
31
+ margin-inline-end: .25rem;
32
+ margin-inline-start: .25rem;
33
33
  }
34
34
 
35
35
  .tag {
36
36
  font-family: variables.$font, variables.$font-fallback;
37
37
  float: right;
38
- margin-top: 1px;
39
- margin-right: -.25rem;
38
+ float: inline-end;
39
+ margin-block-start: 1px;
40
+ margin-inline-end: -.25rem;
40
41
  }
41
42
  }
42
43
 
@@ -51,8 +52,9 @@
51
52
  content: "Default";
52
53
  font-family: variables.$font, variables.$font-fallback;
53
54
  float: right;
54
- margin-top: 1px;
55
- margin-right: -.25rem;
55
+ float: inline-end;
56
+ margin-block-start: 1px;
57
+ margin-inline-end: -.25rem;
56
58
  display: inline-flex;
57
59
  align-items: center;
58
60
  justify-content: center;
@@ -60,12 +62,12 @@
60
62
  border-radius: variables.$border-radius-sm;
61
63
  white-space: nowrap; // prevent text to go on multiple lines
62
64
  position: absolute;
63
- top: .5rem;
64
- right: .75rem;
65
+ inset-block-start: .5rem;
66
+ inset-inline-end: .75rem;
65
67
  height: 1rem;
66
- padding-right: .25rem;
67
- padding-left: .25rem;
68
- padding-bottom: 0.1em;
68
+ padding-inline-end: .25rem;
69
+ padding-inline-start: .25rem;
70
+ padding-block-end: 0.1em;
69
71
  background-color: variables.$text-disabled;
70
72
  }
71
73
  }
@@ -79,7 +81,7 @@
79
81
  padding: .25rem .5rem !important;
80
82
 
81
83
  &.snippet-default:after {
82
- top: .25rem;
83
- right: .5rem;
84
+ inset-block-start: .25rem;
85
+ inset-inline-end: .5rem;
84
86
  }
85
87
  }
@@ -22,7 +22,7 @@ $spacing-status: .5rem;
22
22
  width: $spacing-status;
23
23
  background-color: variables.$text-alt;
24
24
  border-radius: 50%;
25
- margin-right: 0.35em;
25
+ margin-inline-end: 0.35em;
26
26
  transform: translateY(-0.05em);
27
27
  }
28
28
  }
@@ -45,9 +45,9 @@
45
45
  &:not(:last-child)::after {
46
46
  content: '';
47
47
  position: absolute;
48
- top: 1rem;
49
- left: calc(50% + 1.25rem);
50
- right: calc(-50% + 1.25rem);
48
+ inset-block-start: 1rem;
49
+ inset-inline-start: calc(50% + 1.25rem);
50
+ inset-inline-end: calc(-50% + 1.25rem);
51
51
  height: 2px;
52
52
  background-color: variables.$border-color;
53
53
  z-index: 0;
@@ -30,7 +30,7 @@ $spacing-switch: 1rem;
30
30
  background-color: variables.$primary-light;
31
31
 
32
32
  .switch_toggle {
33
- @include mixins.calc(left, '100% -'($spacing-switch));
33
+ @include mixins.calc(inset-inline-start, '100% -'($spacing-switch));
34
34
  background-color: variables.$primary;
35
35
  }
36
36
  }
@@ -38,8 +38,8 @@ $spacing-switch: 1rem;
38
38
 
39
39
  &_label {
40
40
 
41
- &:first-child { margin-right: .75em; }
42
- &:last-child { margin-left: .75em; }
41
+ &:first-child { margin-inline-end: .75em; }
42
+ &:last-child { margin-inline-start: .75em; }
43
43
  }
44
44
 
45
45
  &_switch {
@@ -54,12 +54,12 @@ $spacing-switch: 1rem;
54
54
  border-radius: $spacing-switch;
55
55
  position: relative;
56
56
 
57
- &:nth-child(2) { margin-left: .25rem; }
57
+ &:nth-child(2) { margin-inline-start: .25rem; }
58
58
  }
59
59
 
60
60
  &_toggle {
61
61
  position: absolute;
62
- left: -.25rem;
62
+ inset-inline-start: -.25rem;
63
63
  width: $spacing-switch*1.25;
64
64
  height: $spacing-switch*1.25;
65
65
  border-radius: $spacing-switch*1.25;
@@ -58,7 +58,7 @@ $padding-dense-horizontal: .5rem;
58
58
  justify-content: space-between;
59
59
  width: 100%;
60
60
  padding: $padding-vertical $padding-horizontal;
61
- border-top: variables.$border;
61
+ border-block-start: variables.$border;
62
62
  }
63
63
 
64
64
  &_paginationInfo {
@@ -84,7 +84,7 @@ $padding-dense-horizontal: .5rem;
84
84
 
85
85
  &_rowSelect {
86
86
  width: 5rem;
87
- margin-bottom: 0;
87
+ margin-block-end: 0;
88
88
 
89
89
  .input_label {
90
90
  display: none;
@@ -92,7 +92,7 @@ $padding-dense-horizontal: .5rem;
92
92
  }
93
93
  }
94
94
 
95
- td.table_cell { border-top: variables.$border; }
95
+ td.table_cell { border-block-start: variables.$border; }
96
96
  th.table_cell { background-color: rgba(variables.$contrast, 0.05); }
97
97
 
98
98
  // —————————————————————————————————————————————————————————————————
@@ -151,12 +151,11 @@ th.table_cell { background-color: rgba(variables.$contrast, 0.05); }
151
151
  border-radius: variables.$border-radius-md;
152
152
 
153
153
  ~ .table_pagination {
154
- border-top: 0;
155
- border-left: variables.$border;
156
- border-bottom: variables.$border;
157
- border-right: variables.$border;
158
- border-bottom-right-radius: variables.$border-radius-md;
159
- border-bottom-left-radius: variables.$border-radius-md;
154
+ border-block-start: 0;
155
+ border-block-end: variables.$border;
156
+ border-inline: variables.$border;
157
+ border-end-start-radius: variables.$border-radius-md;
158
+ border-end-end-radius: variables.$border-radius-md;
160
159
  }
161
160
  }
162
161
 
@@ -22,11 +22,11 @@ $spacing-dense: .5rem;
22
22
  &_controls {
23
23
  display: flex;
24
24
  width: 100%;
25
- border-bottom: variables.$border;
25
+ border-block-end: variables.$border;
26
26
  }
27
27
 
28
28
  &_panel {
29
- margin-top: $spacing;
29
+ margin-block-start: $spacing;
30
30
  }
31
31
  }
32
32
 
@@ -34,8 +34,8 @@ $spacing-dense: .5rem;
34
34
  position: relative;
35
35
  cursor: pointer;
36
36
  padding: $spacing*.5 $spacing;
37
- border-top-left-radius: variables.$border-radius-md;
38
- border-top-right-radius: variables.$border-radius-md;
37
+ border-start-start-radius: variables.$border-radius-md;
38
+ border-start-end-radius: variables.$border-radius-md;
39
39
  text-transform: variables.$button-transform;
40
40
  font-weight: variables.$button-weight;
41
41
  font-size: variables.$button-sm-size;
@@ -48,9 +48,9 @@ $spacing-dense: .5rem;
48
48
  &:after {
49
49
  content: '';
50
50
  position: absolute;
51
- right: 0;
52
- bottom: -1px;
53
- left: 0;
51
+ inset-inline-end: 0;
52
+ inset-block-end: -1px;
53
+ inset-inline-start: 0;
54
54
  height: 3px;
55
55
  }
56
56
  }
@@ -79,26 +79,26 @@ $spacing-dense: .5rem;
79
79
  &_controls {
80
80
  flex-direction: column;
81
81
  width: 10rem;
82
- border-bottom: 0;
83
- border-right: variables.$border;
82
+ border-block-end: 0;
83
+ border-inline-end: variables.$border;
84
84
  }
85
85
 
86
86
  &_panel {
87
- margin-top: 0;
88
- margin-left: $spacing;
87
+ margin-block-start: 0;
88
+ margin-inline-start: $spacing;
89
89
  }
90
90
  }
91
91
 
92
92
  .tab {
93
93
  text-align: left;
94
- border-top-left-radius: variables.$border-radius-sm;
95
- border-top-right-radius: 0 !important;
96
- border-bottom-left-radius: variables.$border-radius-sm;
94
+ border-start-start-radius: variables.$border-radius-sm;
95
+ border-start-end-radius: 0 !important;
96
+ border-end-start-radius: variables.$border-radius-sm;
97
97
 
98
98
  &:after {
99
- top: 0;
100
- right: -1px;
101
- left: auto;
99
+ inset-block-start: 0;
100
+ inset-inline-end: -1px;
101
+ inset-inline-start: auto;
102
102
  height: 100%;
103
103
  width: 3px;
104
104
  }
@@ -112,13 +112,13 @@ $spacing-dense: .5rem;
112
112
  .tabs-dense {
113
113
 
114
114
  .tabs_panel {
115
- margin-top: $spacing-dense;
115
+ margin-block-start: $spacing-dense;
116
116
  }
117
117
 
118
118
  .tab {
119
119
  padding: $spacing-dense*.5 $spacing-dense;
120
- border-top-left-radius: variables.$border-radius-sm;
121
- border-top-right-radius: variables.$border-radius-sm;
120
+ border-start-start-radius: variables.$border-radius-sm;
121
+ border-start-end-radius: variables.$border-radius-sm;
122
122
  }
123
123
  }
124
124
 
@@ -132,8 +132,8 @@ $spacing-dense: .5rem;
132
132
  border-radius: variables.$border-radius-md;
133
133
 
134
134
  .tabs_panel {
135
- margin-top: 0;
136
- margin-left: 0;
135
+ margin-block-start: 0;
136
+ margin-inline-start: 0;
137
137
  padding: $spacing;
138
138
  }
139
139
 
@@ -16,7 +16,7 @@
16
16
  display: flex;
17
17
 
18
18
  .tag:not(:last-child) {
19
- margin-right: .25rem;
19
+ margin-inline-end: .25rem;
20
20
  }
21
21
 
22
22
  &-portrait {
@@ -24,8 +24,8 @@
24
24
  align-items: flex-start;
25
25
 
26
26
  .tag:not(:last-child) {
27
- margin-bottom: .25rem;
28
- margin-right: 0;
27
+ margin-block-end: .25rem;
28
+ margin-inline-end: 0;
29
29
  }
30
30
  }
31
31
  }
@@ -41,8 +41,8 @@
41
41
  height: 1.5rem;
42
42
  width: fit-content;
43
43
  min-width: fit-content;
44
- padding-right: 0.4em;
45
- padding-left: 0.4em;
44
+ padding-inline-end: 0.4em;
45
+ padding-inline-start: 0.4em;
46
46
  }
47
47
 
48
48
  // —————————————————————————————————————————————————————————————————