@transferwise/neptune-css 14.28.2 → 14.29.0

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 (44) hide show
  1. package/dist/css/accordion.css +24 -46
  2. package/dist/css/alerts.css +56 -124
  3. package/dist/css/badge.css +20 -30
  4. package/dist/css/breadcrumbs.css +6 -4
  5. package/dist/css/button-groups.css +116 -254
  6. package/dist/css/buttons.css +51 -90
  7. package/dist/css/circles.css +38 -76
  8. package/dist/css/close.css +1 -4
  9. package/dist/css/column-layout.css +38 -60
  10. package/dist/css/currency-flags.css +4 -17
  11. package/dist/css/decision.css +14 -12
  12. package/dist/css/dropdowns.css +59 -210
  13. package/dist/css/droppable.css +43 -38
  14. package/dist/css/flex.css +40 -136
  15. package/dist/css/footer.css +15 -14
  16. package/dist/css/grid.css +383 -1430
  17. package/dist/css/input-groups.css +254 -542
  18. package/dist/css/link-callout.css +2 -8
  19. package/dist/css/list-group.css +57 -92
  20. package/dist/css/loaders.css +11 -11
  21. package/dist/css/media.css +10 -34
  22. package/dist/css/modals.css +49 -59
  23. package/dist/css/navbar.css +372 -812
  24. package/dist/css/navs.css +59 -124
  25. package/dist/css/neptune-addons.css +687 -1234
  26. package/dist/css/neptune-core.css +123 -229
  27. package/dist/css/neptune-social-media.css +9 -33
  28. package/dist/css/neptune.css +3039 -6483
  29. package/dist/css/panels.css +143 -243
  30. package/dist/css/popovers.css +114 -295
  31. package/dist/css/process.css +64 -77
  32. package/dist/css/progress-bars.css +13 -19
  33. package/dist/css/select.css +21 -53
  34. package/dist/css/sequences.css +99 -219
  35. package/dist/css/table.css +48 -43
  36. package/dist/css/tick.css +10 -10
  37. package/dist/css/tooltip.css +49 -82
  38. package/dist/css/utilities.css +12 -40
  39. package/dist/css/wells.css +16 -16
  40. package/package.json +2 -2
  41. package/src/less/addons/_spacing-utilities.less +4 -4
  42. package/src/less/mixins/_logical-properties-IE-friendly.less +1 -0
  43. package/src/less/mixins/_logical-properties-modern-browsers.less +80 -41
  44. package/src/less/mixins/_logical-properties.less +3 -3
@@ -1,9 +1,9 @@
1
1
  .panel {
2
- margin-bottom: 16px;
2
+ margin-block-end: 16px;
3
3
  background-color: transparent;
4
4
  border: 0;
5
- margin-left: -16px;
6
- margin-right: -16px;
5
+ margin-inline-start: -16px;
6
+ margin-inline-end: -16px;
7
7
  }
8
8
  .panel-body {
9
9
  padding: 16px;
@@ -11,14 +11,15 @@
11
11
  background-color: var(--color-background-screen);
12
12
  }
13
13
  .panel-heading {
14
- padding: 16px 16px 8px 16px;
14
+ padding-block: 16px 8px;
15
+ padding-inline: 16px 16px;
15
16
  }
16
17
  .panel-heading > .dropdown .dropdown-toggle {
17
18
  color: inherit;
18
19
  }
19
20
  .panel-title {
20
- margin-top: 0;
21
- margin-bottom: 0;
21
+ margin-block-start: 0;
22
+ margin-block-end: 0;
22
23
  line-height: calc(1.2 + 8px);
23
24
  line-height: calc(var(--line-height-title) + 8px);
24
25
  }
@@ -31,12 +32,13 @@
31
32
  }
32
33
  @media (min-width: 600px) {
33
34
  .panel {
34
- margin-bottom: 24px;
35
- margin-left: -24px;
36
- margin-right: -24px;
35
+ margin-block-end: 24px;
36
+ margin-inline-start: -24px;
37
+ margin-inline-end: -24px;
37
38
  }
38
39
  .panel-heading {
39
- padding: 16px 24px 8px 24px;
40
+ padding-block: 16px 8px;
41
+ padding-inline: 24px 24px;
40
42
  }
41
43
  .panel-body {
42
44
  padding: 24px;
@@ -47,16 +49,17 @@
47
49
  }
48
50
  @media (min-width: 840px) {
49
51
  .panel {
50
- margin-left: 0;
51
- margin-right: 0;
52
+ margin-inline-start: 0;
53
+ margin-inline-end: 0;
52
54
  }
53
55
  .panel-heading {
54
- padding: 16px 0 8px 0;
56
+ padding-block: 16px 8px;
57
+ padding-inline: 0 0;
55
58
  }
56
59
  }
57
60
  @media (min-width: 1160px) {
58
61
  .panel {
59
- margin-bottom: 32px;
62
+ margin-block-end: 32px;
60
63
  border-radius: 3px;
61
64
  }
62
65
  .panel-body {
@@ -72,215 +75,147 @@
72
75
  line-height: calc(var(--line-height-title) * 2);
73
76
  }
74
77
  .panel-heading > .btn-sm {
75
- margin-top: 8px;
78
+ margin-block-start: 8px;
76
79
  }
77
80
  }
78
81
  .panel > .list-group,
79
82
  .panel > .panel-collapse > .list-group {
80
- margin-bottom: 0;
81
- border-left: 0;
82
- border-right: 0;
83
+ margin-block-end: 0;
84
+ border-inline-start: 0;
85
+ border-inline-end: 0;
83
86
  }
84
87
  .panel > .list-group .list-group-item,
85
88
  .panel > .panel-collapse > .list-group .list-group-item {
86
89
  border-radius: 0;
87
90
  }
88
91
  .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
89
- border-top-right-radius: 0;
90
- border-top-left-radius: 0;
92
+ border-start-end-radius: 0;
93
+ border-start-start-radius: 0;
91
94
  }
92
95
  .panel-list-group {
93
- margin-bottom: 0;
94
- border-left: 0;
95
- border-right: 0;
96
+ margin-block-end: 0;
97
+ border-inline-start: 0;
98
+ border-inline-end: 0;
96
99
  }
97
100
  .list-group + .panel-footer {
98
- border-top-width: 0;
101
+ border-block-start-width: 0;
99
102
  }
100
103
  .panel > .table,
101
104
  .panel > .table-responsive > .table,
102
105
  .panel > .panel-collapse > .table {
103
- margin-bottom: 0;
106
+ margin-block-end: 0;
104
107
  }
105
108
  .panel > .table caption,
106
109
  .panel > .table-responsive > .table caption,
107
110
  .panel > .panel-collapse > .table caption {
108
- padding-left: 32px;
109
- padding-right: 32px;
111
+ padding-inline-start: 32px;
112
+ padding-inline-end: 32px;
110
113
  }
111
114
  .panel > .table:first-child,
112
115
  .panel > .table-responsive:first-child > .table:first-child {
113
- border-top-right-radius: 2px;
114
- border-top-left-radius: 2px;
116
+ border-start-end-radius: 2px;
117
+ border-start-start-radius: 2px;
115
118
  }
116
119
  .panel > .table:first-child > thead:first-child > tr:first-child,
117
120
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
118
121
  .panel > .table:first-child > tbody:first-child > tr:first-child,
119
122
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
120
- border-top-left-radius: 2px;
121
- border-top-right-radius: 2px;
122
- }
123
- [dir="rtl"] .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
124
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
125
- [dir="rtl"] .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
126
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
127
- [dir="rtl"] .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
128
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
129
- [dir="rtl"] .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
130
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
131
- border-top-right-radius: 2px;
132
- }
133
- html:not([dir="rtl"]) .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
134
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
135
- html:not([dir="rtl"]) .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
136
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
137
- html:not([dir="rtl"]) .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
138
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
139
- html:not([dir="rtl"]) .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
140
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
141
- border-top-left-radius: 2px;
142
- }
143
- [dir="rtl"] .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
144
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
145
- [dir="rtl"] .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
146
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
147
- [dir="rtl"] .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
148
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
149
- [dir="rtl"] .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
150
- [dir="rtl"] .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
151
- border-top-left-radius: 2px;
152
- }
153
- html:not([dir="rtl"]) .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
154
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
155
- html:not([dir="rtl"]) .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
156
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
157
- html:not([dir="rtl"]) .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
158
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
159
- html:not([dir="rtl"]) .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
160
- html:not([dir="rtl"]) .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
161
- border-top-right-radius: 2px;
123
+ border-start-start-radius: 2px;
124
+ border-start-end-radius: 2px;
125
+ }
126
+ .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
127
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
128
+ .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
129
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
130
+ .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
131
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
132
+ .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
133
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
134
+ border-start-start-radius: 2px;
135
+ }
136
+ .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
137
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
138
+ .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
139
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
140
+ .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
141
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
142
+ .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
143
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
144
+ border-start-end-radius: 2px;
162
145
  }
163
146
  .panel > .table:last-child,
164
147
  .panel > .table-responsive:last-child > .table:last-child {
165
- border-bottom-right-radius: 2px;
166
- border-bottom-left-radius: 2px;
148
+ border-end-end-radius: 2px;
149
+ border-end-start-radius: 2px;
167
150
  }
168
151
  .panel > .table:last-child > tbody:last-child > tr:last-child,
169
152
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
170
153
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
171
154
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
172
- border-bottom-left-radius: 2px;
173
- border-bottom-right-radius: 2px;
174
- }
175
- [dir="rtl"] .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
176
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
177
- [dir="rtl"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
178
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
179
- [dir="rtl"] .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
180
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
181
- [dir="rtl"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
182
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
183
- border-bottom-right-radius: 2px;
184
- }
185
- html:not([dir="rtl"]) .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
186
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
187
- html:not([dir="rtl"]) .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
188
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
189
- html:not([dir="rtl"]) .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
190
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
191
- html:not([dir="rtl"]) .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
192
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
193
- border-bottom-left-radius: 2px;
194
- }
195
- [dir="rtl"] .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
196
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
197
- [dir="rtl"] .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
198
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
199
- [dir="rtl"] .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
200
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
201
- [dir="rtl"] .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
202
- [dir="rtl"] .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
203
- border-bottom-left-radius: 2px;
204
- }
205
- html:not([dir="rtl"]) .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
206
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
207
- html:not([dir="rtl"]) .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
208
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
209
- html:not([dir="rtl"]) .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
210
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
211
- html:not([dir="rtl"]) .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
212
- html:not([dir="rtl"]) .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
213
- border-bottom-right-radius: 2px;
155
+ border-end-start-radius: 2px;
156
+ border-end-end-radius: 2px;
157
+ }
158
+ .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
159
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
160
+ .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
161
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
162
+ .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
163
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
164
+ .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
165
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
166
+ border-end-start-radius: 2px;
167
+ }
168
+ .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
169
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
170
+ .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
171
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
172
+ .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
173
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
174
+ .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
175
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
176
+ border-end-end-radius: 2px;
214
177
  }
215
178
  .panel > .panel-body + .table,
216
179
  .panel > .panel-body + .table-responsive,
217
180
  .panel > .table + .panel-body,
218
181
  .panel > .table-responsive + .panel-body {
219
- border-top: 1px solid #f2f5f7;
182
+ border-block-start: 1px solid #f2f5f7;
220
183
  }
221
184
  .panel > .table > tbody:first-child > tr:first-child th,
222
185
  .panel > .table > tbody:first-child > tr:first-child td {
223
- border-top: 0;
186
+ border-block-start: 0;
224
187
  }
225
188
  .panel > .table-bordered,
226
189
  .panel > .table-responsive > .table-bordered {
227
190
  border: 0;
228
191
  }
229
- [dir="rtl"] .panel > .table-bordered > thead > tr > th:first-child,
230
- [dir="rtl"] .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
231
- [dir="rtl"] .panel > .table-bordered > tbody > tr > th:first-child,
232
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
233
- [dir="rtl"] .panel > .table-bordered > tfoot > tr > th:first-child,
234
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
235
- [dir="rtl"] .panel > .table-bordered > thead > tr > td:first-child,
236
- [dir="rtl"] .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
237
- [dir="rtl"] .panel > .table-bordered > tbody > tr > td:first-child,
238
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
239
- [dir="rtl"] .panel > .table-bordered > tfoot > tr > td:first-child,
240
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
241
- border-right: 0 ;
242
- }
243
- html:not([dir="rtl"]) .panel > .table-bordered > thead > tr > th:first-child,
244
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
245
- html:not([dir="rtl"]) .panel > .table-bordered > tbody > tr > th:first-child,
246
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
247
- html:not([dir="rtl"]) .panel > .table-bordered > tfoot > tr > th:first-child,
248
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
249
- html:not([dir="rtl"]) .panel > .table-bordered > thead > tr > td:first-child,
250
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
251
- html:not([dir="rtl"]) .panel > .table-bordered > tbody > tr > td:first-child,
252
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
253
- html:not([dir="rtl"]) .panel > .table-bordered > tfoot > tr > td:first-child,
254
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
255
- border-left: 0 ;
256
- }
257
- [dir="rtl"] .panel > .table-bordered > thead > tr > th:last-child,
258
- [dir="rtl"] .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
259
- [dir="rtl"] .panel > .table-bordered > tbody > tr > th:last-child,
260
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
261
- [dir="rtl"] .panel > .table-bordered > tfoot > tr > th:last-child,
262
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
263
- [dir="rtl"] .panel > .table-bordered > thead > tr > td:last-child,
264
- [dir="rtl"] .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
265
- [dir="rtl"] .panel > .table-bordered > tbody > tr > td:last-child,
266
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
267
- [dir="rtl"] .panel > .table-bordered > tfoot > tr > td:last-child,
268
- [dir="rtl"] .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
269
- border-left: 0 ;
270
- }
271
- html:not([dir="rtl"]) .panel > .table-bordered > thead > tr > th:last-child,
272
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
273
- html:not([dir="rtl"]) .panel > .table-bordered > tbody > tr > th:last-child,
274
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
275
- html:not([dir="rtl"]) .panel > .table-bordered > tfoot > tr > th:last-child,
276
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
277
- html:not([dir="rtl"]) .panel > .table-bordered > thead > tr > td:last-child,
278
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
279
- html:not([dir="rtl"]) .panel > .table-bordered > tbody > tr > td:last-child,
280
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
281
- html:not([dir="rtl"]) .panel > .table-bordered > tfoot > tr > td:last-child,
282
- html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
283
- border-right: 0 ;
192
+ .panel > .table-bordered > thead > tr > th:first-child,
193
+ .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
194
+ .panel > .table-bordered > tbody > tr > th:first-child,
195
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
196
+ .panel > .table-bordered > tfoot > tr > th:first-child,
197
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
198
+ .panel > .table-bordered > thead > tr > td:first-child,
199
+ .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
200
+ .panel > .table-bordered > tbody > tr > td:first-child,
201
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
202
+ .panel > .table-bordered > tfoot > tr > td:first-child,
203
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
204
+ border-inline-start: 0 ;
205
+ }
206
+ .panel > .table-bordered > thead > tr > th:last-child,
207
+ .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
208
+ .panel > .table-bordered > tbody > tr > th:last-child,
209
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
210
+ .panel > .table-bordered > tfoot > tr > th:last-child,
211
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
212
+ .panel > .table-bordered > thead > tr > td:last-child,
213
+ .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
214
+ .panel > .table-bordered > tbody > tr > td:last-child,
215
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
216
+ .panel > .table-bordered > tfoot > tr > td:last-child,
217
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
218
+ border-inline-end: 0 ;
284
219
  }
285
220
  .panel > .table-bordered > thead > tr:first-child > td,
286
221
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
@@ -290,7 +225,7 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
290
225
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
291
226
  .panel > .table-bordered > tbody > tr:first-child > th,
292
227
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
293
- border-bottom: 0;
228
+ border-block-end: 0;
294
229
  }
295
230
  .panel > .table-bordered > tbody > tr:last-child > td,
296
231
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
@@ -300,99 +235,63 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
300
235
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
301
236
  .panel > .table-bordered > tfoot > tr:last-child > th,
302
237
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
303
- border-bottom: 0;
238
+ border-block-end: 0;
304
239
  }
305
240
  .panel > .table-responsive {
306
241
  border: 0;
307
- margin-bottom: 0;
242
+ margin-block-end: 0;
308
243
  }
309
244
  .panel > .table tr > :first-child,
310
245
  .panel > .table-responsive tr > :first-child {
311
- padding-left: 16px;
312
- }
313
- [dir="rtl"] .panel > .table tr > :first-child,
314
- [dir="rtl"] .panel > .table-responsive tr > :first-child {
315
- padding-right: 16px;
316
- padding-left: 0;
317
- padding-left: initial;
246
+ padding-inline-start: 16px;
318
247
  }
319
248
  .panel > .table tr > :last-child,
320
249
  .panel > .table-responsive tr > :last-child {
321
- padding-right: 16px;
322
- }
323
- [dir="rtl"] .panel > .table tr > :last-child,
324
- [dir="rtl"] .panel > .table-responsive tr > :last-child {
325
- padding-left: 16px;
326
- padding-right: 0;
327
- padding-right: initial;
250
+ padding-inline-end: 16px;
328
251
  }
329
252
  @media (min-width: 840px) {
330
253
  .panel > .table tr > :first-child,
331
254
  .panel > .table-responsive tr > :first-child {
332
- padding-left: 24px;
333
- }
334
- [dir="rtl"] .panel > .table tr > :first-child,
335
- [dir="rtl"] .panel > .table-responsive tr > :first-child {
336
- padding-right: 24px;
337
- padding-left: 0;
338
- padding-left: initial;
255
+ padding-inline-start: 24px;
339
256
  }
340
257
  .panel > .table tr > :last-child,
341
258
  .panel > .table-responsive tr > :last-child {
342
- padding-right: 24px;
343
- }
344
- [dir="rtl"] .panel > .table tr > :last-child,
345
- [dir="rtl"] .panel > .table-responsive tr > :last-child {
346
- padding-left: 24px;
347
- padding-right: 0;
348
- padding-right: initial;
259
+ padding-inline-end: 24px;
349
260
  }
350
261
  }
351
262
  @media (min-width: 1160px) {
352
263
  .panel > .table tr > :first-child,
353
264
  .panel > .table-responsive tr > :first-child {
354
- padding-left: 32px;
355
- }
356
- [dir="rtl"] .panel > .table tr > :first-child,
357
- [dir="rtl"] .panel > .table-responsive tr > :first-child {
358
- padding-right: 32px;
359
- padding-left: 0;
360
- padding-left: initial;
265
+ padding-inline-start: 32px;
361
266
  }
362
267
  .panel > .table tr > :last-child,
363
268
  .panel > .table-responsive tr > :last-child {
364
- padding-right: 32px;
365
- }
366
- [dir="rtl"] .panel > .table tr > :last-child,
367
- [dir="rtl"] .panel > .table-responsive tr > :last-child {
368
- padding-left: 32px;
369
- padding-right: 0;
370
- padding-right: initial;
269
+ padding-inline-end: 32px;
371
270
  }
372
271
  }
373
272
  .panel-group {
374
- margin-bottom: 24px;
375
- margin-bottom: var(--size-24);
273
+ margin-block-end: 24px;
274
+ margin-block-end: var(--size-24);
376
275
  }
377
276
  .panel-group .panel {
378
- margin-bottom: 0;
277
+ margin-block-end: 0;
379
278
  border-radius: 3px;
380
279
  }
381
280
  .panel-group .panel + .panel {
382
- margin-top: 8px;
281
+ margin-block-start: 8px;
383
282
  }
384
283
  .panel-group .panel-heading {
385
- border-bottom: 0;
284
+ border-block-end: 0;
386
285
  }
387
286
  .panel-group .panel-heading + .panel-collapse > .panel-body,
388
287
  .panel-group .panel-heading + .panel-collapse > .list-group {
389
- border-top: 1px solid #FFF;
288
+ border-block-start: 1px solid #FFF;
390
289
  }
391
290
  .panel-group .panel-footer {
392
- border-top: 0;
291
+ border-block-start: 0;
393
292
  }
394
293
  .panel-group .panel-footer + .panel-collapse .panel-body {
395
- border-bottom: 1px solid #FFF;
294
+ border-block-end: 1px solid #FFF;
396
295
  }
397
296
  .panel-default {
398
297
  border-color: #e2e6e8 !important;
@@ -402,14 +301,14 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
402
301
  border-color: #e2e6e8;
403
302
  }
404
303
  .panel-default > .panel-heading + .panel-collapse > .panel-body {
405
- border-top-color: #e2e6e8;
304
+ border-block-start-color: #e2e6e8;
406
305
  }
407
306
  .panel-default > .panel-heading .badge {
408
307
  color: #fff;
409
308
  background-color: #4a5860;
410
309
  }
411
310
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
412
- border-bottom-color: #e2e6e8;
311
+ border-block-end-color: #e2e6e8;
413
312
  }
414
313
  .panel-primary {
415
314
  border-color: #37517e !important;
@@ -419,14 +318,14 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
419
318
  border-color: #37517e;
420
319
  }
421
320
  .panel-primary > .panel-heading + .panel-collapse > .panel-body {
422
- border-top-color: #37517e;
321
+ border-block-start-color: #37517e;
423
322
  }
424
323
  .panel-primary > .panel-heading .badge {
425
324
  color: #fff;
426
325
  background-color: #fff;
427
326
  }
428
327
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
429
- border-bottom-color: #37517e;
328
+ border-block-end-color: #37517e;
430
329
  }
431
330
  .panel-success {
432
331
  border-color: #2ED06E !important;
@@ -436,14 +335,14 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
436
335
  border-color: #2ED06E;
437
336
  }
438
337
  .panel-success > .panel-heading + .panel-collapse > .panel-body {
439
- border-top-color: #2ED06E;
338
+ border-block-start-color: #2ED06E;
440
339
  }
441
340
  .panel-success > .panel-heading .badge {
442
341
  color: #FFF;
443
342
  background-color: #1B7940;
444
343
  }
445
344
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
446
- border-bottom-color: #2ED06E;
345
+ border-block-end-color: #2ED06E;
447
346
  }
448
347
  .panel-info {
449
348
  border-color: #00b9ff !important;
@@ -453,14 +352,14 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
453
352
  border-color: #00b9ff;
454
353
  }
455
354
  .panel-info > .panel-heading + .panel-collapse > .panel-body {
456
- border-top-color: #00b9ff;
355
+ border-block-start-color: #00b9ff;
457
356
  }
458
357
  .panel-info > .panel-heading .badge {
459
358
  color: #FFF;
460
359
  background-color: #00a4df;
461
360
  }
462
361
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
463
- border-bottom-color: #00b9ff;
362
+ border-block-end-color: #00b9ff;
464
363
  }
465
364
  .panel-warning {
466
365
  border-color: #FFA600 !important;
@@ -470,14 +369,14 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
470
369
  border-color: #FFA600;
471
370
  }
472
371
  .panel-warning > .panel-heading + .panel-collapse > .panel-body {
473
- border-top-color: #FFA600;
372
+ border-block-start-color: #FFA600;
474
373
  }
475
374
  .panel-warning > .panel-heading .badge {
476
375
  color: #FFF;
477
376
  background-color: #9E5F00;
478
377
  }
479
378
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
480
- border-bottom-color: #FFA600;
379
+ border-block-end-color: #FFA600;
481
380
  }
482
381
  .panel-danger {
483
382
  border-color: #F53636 !important;
@@ -487,21 +386,21 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
487
386
  border-color: #F53636;
488
387
  }
489
388
  .panel-danger > .panel-heading + .panel-collapse > .panel-body {
490
- border-top-color: #F53636;
389
+ border-block-start-color: #F53636;
491
390
  }
492
391
  .panel-danger > .panel-heading .badge {
493
392
  color: #FFF;
494
393
  background-color: #C22E2E;
495
394
  }
496
395
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
497
- border-bottom-color: #F53636;
396
+ border-block-end-color: #F53636;
498
397
  }
499
398
  .panel ul:last-child {
500
- margin-bottom: 0;
399
+ margin-block-end: 0;
501
400
  }
502
401
  .panel-group .panel {
503
- margin-left: 0;
504
- margin-right: 0;
402
+ margin-inline-start: 0;
403
+ margin-inline-end: 0;
505
404
  border: 1px solid #e2e6e8;
506
405
  }
507
406
  .panel-group .panel-heading,
@@ -517,12 +416,13 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
517
416
  @media (min-width: 1160px) {
518
417
  .panel-group .panel .panel-heading,
519
418
  .panel-group .panel .panel-footer {
520
- padding: 24px 32px;
419
+ padding-block: 24px;
420
+ padding-inline: 32px;
521
421
  }
522
422
  }
523
423
  @media (min-width: 840px) {
524
424
  .panel {
525
- margin-left: 0;
526
- margin-right: 0;
425
+ margin-inline-start: 0;
426
+ margin-inline-end: 0;
527
427
  }
528
428
  }