@norges-domstoler/dds-components 0.0.0-dev-20250423104601 → 0.0.0-dev-20250425135658
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/index.css +190 -181
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +80 -52
- package/dist/index.d.ts +80 -52
- package/dist/index.js +1253 -1121
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +988 -858
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.css
CHANGED
|
@@ -992,7 +992,7 @@
|
|
|
992
992
|
--dds-r-t: var(--dds-r-sm-t);
|
|
993
993
|
}
|
|
994
994
|
.layout_dds-b {
|
|
995
|
-
--dds-r-
|
|
995
|
+
--dds-r-b: var(--dds-r-sm-b);
|
|
996
996
|
}
|
|
997
997
|
.layout_dds-o {
|
|
998
998
|
--dds-r-o: var(--dds-r-sm-o);
|
|
@@ -1093,7 +1093,7 @@
|
|
|
1093
1093
|
--dds-r-t: var(--dds-r-md-t);
|
|
1094
1094
|
}
|
|
1095
1095
|
.layout_dds-b {
|
|
1096
|
-
--dds-r-
|
|
1096
|
+
--dds-r-b: var(--dds-r-md-b);
|
|
1097
1097
|
}
|
|
1098
1098
|
.layout_dds-o {
|
|
1099
1099
|
--dds-r-o: var(--dds-r-md-o);
|
|
@@ -1194,7 +1194,7 @@
|
|
|
1194
1194
|
--dds-r-t: var(--dds-r-lg-t);
|
|
1195
1195
|
}
|
|
1196
1196
|
.layout_dds-b {
|
|
1197
|
-
--dds-r-
|
|
1197
|
+
--dds-r-b: var(--dds-r-lg-b);
|
|
1198
1198
|
}
|
|
1199
1199
|
.layout_dds-o {
|
|
1200
1200
|
--dds-r-o: var(--dds-r-lg-o);
|
|
@@ -2008,6 +2008,183 @@
|
|
|
2008
2008
|
background-color: var(--dds-color-surface-inverse-default);
|
|
2009
2009
|
}
|
|
2010
2010
|
|
|
2011
|
+
/* src/components/SelectionControl/SelectionControl.module.css */
|
|
2012
|
+
.SelectionControl_container {
|
|
2013
|
+
display: flex;
|
|
2014
|
+
flex-direction: column;
|
|
2015
|
+
gap: var(--dds-spacing-x0-125);
|
|
2016
|
+
}
|
|
2017
|
+
.SelectionControl_group {
|
|
2018
|
+
display: flex;
|
|
2019
|
+
}
|
|
2020
|
+
.SelectionControl_group--row {
|
|
2021
|
+
flex-direction: row;
|
|
2022
|
+
gap: var(--dds-spacing-x0-75);
|
|
2023
|
+
}
|
|
2024
|
+
.SelectionControl_group--column {
|
|
2025
|
+
flex-direction: column;
|
|
2026
|
+
gap: var(--dds-spacing-x0-5);
|
|
2027
|
+
}
|
|
2028
|
+
.SelectionControl_label {
|
|
2029
|
+
cursor: pointer;
|
|
2030
|
+
-webkit-user-select: none;
|
|
2031
|
+
-moz-user-select: none;
|
|
2032
|
+
user-select: none;
|
|
2033
|
+
input ~ .SelectionControl_selection-control {
|
|
2034
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
2035
|
+
transition:
|
|
2036
|
+
box-shadow 0.2s,
|
|
2037
|
+
background-color 0.2s,
|
|
2038
|
+
border 0.2s,
|
|
2039
|
+
var(--dds-focus-transition);
|
|
2040
|
+
}
|
|
2041
|
+
}
|
|
2042
|
+
&:hover:not(.SelectionControl_label--readonly) input:enabled:not(:checked) ~ .SelectionControl_selection-control {
|
|
2043
|
+
background-color: var(--dds-color-surface-hover-default);
|
|
2044
|
+
box-shadow: inset 0 0 0 1px var(--dds-color-border-action-hover);
|
|
2045
|
+
border-color: var(--dds-color-border-action-hover);
|
|
2046
|
+
}
|
|
2047
|
+
input:checked:enabled ~ .SelectionControl_selection-control,
|
|
2048
|
+
input:enabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
2049
|
+
border-color: var(--dds-color-surface-action-selected);
|
|
2050
|
+
background-color: var(--dds-color-surface-action-selected);
|
|
2051
|
+
}
|
|
2052
|
+
&.SelectionControl_label--readonly input:checked:enabled ~ .SelectionControl_selection-control,
|
|
2053
|
+
&.SelectionControl_label--readonly input:enabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
2054
|
+
border-color: var(--dds-color-surface-action-selected-disabled);
|
|
2055
|
+
background-color: var(--dds-color-surface-action-selected-disabled);
|
|
2056
|
+
}
|
|
2057
|
+
&:hover:not(.SelectionControl_label--readonly) input:checked:enabled[type=checkbox] ~ .SelectionControl_selection-control,
|
|
2058
|
+
&:hover:not(.SelectionControl_label--readonly) input:enabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
2059
|
+
background-color: var(--dds-color-surface-action-hover);
|
|
2060
|
+
border-color: var(--dds-color-surface-action-hover);
|
|
2061
|
+
}
|
|
2062
|
+
input:checked ~ .SelectionControl_selection-control:after,
|
|
2063
|
+
input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
2064
|
+
display: block;
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
.SelectionControl_label--checkbox {
|
|
2068
|
+
.SelectionControl_selection-control:after {
|
|
2069
|
+
border: solid var(--dds-color-icon-on-action);
|
|
2070
|
+
border-width: 0 1px 1px 0;
|
|
2071
|
+
left: 6px;
|
|
2072
|
+
top: 1px;
|
|
2073
|
+
width: 5px;
|
|
2074
|
+
height: 10px;
|
|
2075
|
+
transform: rotate(45deg);
|
|
2076
|
+
}
|
|
2077
|
+
input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
2078
|
+
border-width: 1px 0 0 0;
|
|
2079
|
+
left: 25%;
|
|
2080
|
+
top: 50%;
|
|
2081
|
+
width: 50%;
|
|
2082
|
+
height: 1px;
|
|
2083
|
+
transform: none;
|
|
2084
|
+
}
|
|
2085
|
+
}
|
|
2086
|
+
.SelectionControl_label--radio {
|
|
2087
|
+
.SelectionControl_selection-control:after {
|
|
2088
|
+
border-radius: var(--dds-border-radius-rounded);
|
|
2089
|
+
background-color: var(--dds-color-icon-on-action);
|
|
2090
|
+
height: 8px;
|
|
2091
|
+
width: 8px;
|
|
2092
|
+
left: 50%;
|
|
2093
|
+
top: 50%;
|
|
2094
|
+
transform: translate(-50%, -50%);
|
|
2095
|
+
}
|
|
2096
|
+
}
|
|
2097
|
+
.SelectionControl_label--disabled {
|
|
2098
|
+
cursor: not-allowed;
|
|
2099
|
+
input:disabled ~ .SelectionControl_selection-control {
|
|
2100
|
+
border-color: var(--dds-color-border-default);
|
|
2101
|
+
}
|
|
2102
|
+
input:checked:disabled ~ .SelectionControl_selection-control,
|
|
2103
|
+
input:disabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
2104
|
+
border-color: var(--dds-color-surface-action-selected-disabled);
|
|
2105
|
+
background-color: var(--dds-color-surface-action-selected-disabled);
|
|
2106
|
+
}
|
|
2107
|
+
}
|
|
2108
|
+
.SelectionControl_label--readonly {
|
|
2109
|
+
cursor: default;
|
|
2110
|
+
color: var(--dds-color-text-medium);
|
|
2111
|
+
input ~ .SelectionControl_selection-control {
|
|
2112
|
+
border-color: var(--dds-color-border-default);
|
|
2113
|
+
background-color: var(--dds-color-surface-field-disabled);
|
|
2114
|
+
}
|
|
2115
|
+
input:checked ~ .SelectionControl_selection-control,
|
|
2116
|
+
input[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
2117
|
+
border-color: var(--dds-color-surface-action-selected-disabled);
|
|
2118
|
+
background-color: var(--dds-color-surface-action-selected-disabled);
|
|
2119
|
+
}
|
|
2120
|
+
}
|
|
2121
|
+
.SelectionControl_label--error {
|
|
2122
|
+
&:hover input:enabled:not(:focus-visible):not(:checked) ~ .SelectionControl_selection-control {
|
|
2123
|
+
background-color: var(--dds-color-surface-danger-default);
|
|
2124
|
+
border-color: var(--dds-color-border-danger);
|
|
2125
|
+
box-shadow: 0 0 0 1px var(--dds-c-tic-border-danger);
|
|
2126
|
+
}
|
|
2127
|
+
input:not(:focus-visible) ~ .SelectionControl_selection-control,
|
|
2128
|
+
input:checked:enabled:not(:focus-visible) .SelectionControl_selection-control &:hover input:checked:enabled:not(:focus-visible) .SelectionControl_selection-control {
|
|
2129
|
+
border-color: var(--dds-color-border-danger);
|
|
2130
|
+
box-shadow: 0 0 0 1px var(--dds-color-border-danger);
|
|
2131
|
+
}
|
|
2132
|
+
}
|
|
2133
|
+
.SelectionControl_label--no-text {
|
|
2134
|
+
padding: 9px;
|
|
2135
|
+
}
|
|
2136
|
+
.SelectionControl_selection-control {
|
|
2137
|
+
position: absolute;
|
|
2138
|
+
left: 0;
|
|
2139
|
+
box-sizing: border-box;
|
|
2140
|
+
border: 1px solid;
|
|
2141
|
+
border-color: var(--dds-color-border-default);
|
|
2142
|
+
background-color: var(--dds-color-surface-field-default);
|
|
2143
|
+
border-radius: var(--dds-border-radius-input);
|
|
2144
|
+
height: 18px;
|
|
2145
|
+
width: 18px;
|
|
2146
|
+
&:after {
|
|
2147
|
+
content: "";
|
|
2148
|
+
position: absolute;
|
|
2149
|
+
display: none;
|
|
2150
|
+
box-sizing: border-box;
|
|
2151
|
+
}
|
|
2152
|
+
}
|
|
2153
|
+
.SelectionControl_selection-control--radio {
|
|
2154
|
+
border-radius: var(--dds-border-radius-rounded);
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
/* src/components/InputMessage/InputMessage.module.css */
|
|
2158
|
+
.InputMessage_container {
|
|
2159
|
+
display: flex;
|
|
2160
|
+
width: -moz-fit-content;
|
|
2161
|
+
width: fit-content;
|
|
2162
|
+
word-break: break-word;
|
|
2163
|
+
max-width: 100%;
|
|
2164
|
+
}
|
|
2165
|
+
.InputMessage_container--error {
|
|
2166
|
+
padding: var(--dds-spacing-x0-25) var(--dds-spacing-x0-5);
|
|
2167
|
+
background-color: var(--dds-color-surface-danger-default);
|
|
2168
|
+
border-bottom-left-radius: var(--dds-border-radius-surface);
|
|
2169
|
+
border-bottom-right-radius: var(--dds-border-radius-surface);
|
|
2170
|
+
gap: var(--dds-spacing-x0-25);
|
|
2171
|
+
.InputMessage_icon {
|
|
2172
|
+
color: var(--dds-color-icon-on-danger-default);
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
.InputMessage_icon {
|
|
2176
|
+
margin-top: calc((var(--dds-font-lineheight-x1) * 1em - var(--dds-icon-size-small)) / 2 - 1px);
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
/* src/components/CookieBanner/CookieBanner.module.css */
|
|
2180
|
+
.CookieBanner_checkbox-label {
|
|
2181
|
+
padding: 0 0 0 calc(18px + var(--dds-spacing-x0-5));
|
|
2182
|
+
align-items: flex-start;
|
|
2183
|
+
& > span {
|
|
2184
|
+
top: calc((var(--dds-font-lineheight-x1) * 1em - var(--dds-icon-size-small)) / 2 - 1px);
|
|
2185
|
+
}
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2011
2188
|
/* src/components/date-inputs/common/DateInput.module.css */
|
|
2012
2189
|
.DateInput_date-input {
|
|
2013
2190
|
display: inline-flex;
|
|
@@ -2199,28 +2376,6 @@
|
|
|
2199
2376
|
color: var(--dds-color-text-default);
|
|
2200
2377
|
}
|
|
2201
2378
|
|
|
2202
|
-
/* src/components/InputMessage/InputMessage.module.css */
|
|
2203
|
-
.InputMessage_container {
|
|
2204
|
-
display: flex;
|
|
2205
|
-
width: -moz-fit-content;
|
|
2206
|
-
width: fit-content;
|
|
2207
|
-
word-break: break-word;
|
|
2208
|
-
max-width: 100%;
|
|
2209
|
-
}
|
|
2210
|
-
.InputMessage_container--error {
|
|
2211
|
-
padding: var(--dds-spacing-x0-25) var(--dds-spacing-x0-5);
|
|
2212
|
-
background-color: var(--dds-color-surface-danger-default);
|
|
2213
|
-
border-bottom-left-radius: var(--dds-border-radius-surface);
|
|
2214
|
-
border-bottom-right-radius: var(--dds-border-radius-surface);
|
|
2215
|
-
gap: var(--dds-spacing-x0-25);
|
|
2216
|
-
.InputMessage_icon {
|
|
2217
|
-
color: var(--dds-color-icon-on-danger-default);
|
|
2218
|
-
}
|
|
2219
|
-
}
|
|
2220
|
-
.InputMessage_icon {
|
|
2221
|
-
margin-top: calc((var(--dds-font-lineheight-x1) * 1em - var(--dds-icon-size-small)) / 2 - 1px);
|
|
2222
|
-
}
|
|
2223
|
-
|
|
2224
2379
|
/* src/components/DescriptionList/DescriptionList.module.css */
|
|
2225
2380
|
.DescriptionList_list {
|
|
2226
2381
|
& > dt:first-of-type {
|
|
@@ -2279,10 +2434,12 @@
|
|
|
2279
2434
|
}
|
|
2280
2435
|
.DetailList_list--striped {
|
|
2281
2436
|
.DetailList_row {
|
|
2282
|
-
&:nth-of-type(
|
|
2437
|
+
&:nth-of-type(4n-1),
|
|
2438
|
+
&:nth-of-type(4n) {
|
|
2283
2439
|
background-color: var(--dds-color-surface-default);
|
|
2284
2440
|
}
|
|
2285
|
-
&:nth-of-type(
|
|
2441
|
+
&:nth-of-type(4n-3),
|
|
2442
|
+
&:nth-of-type(4n-2) {
|
|
2286
2443
|
background-color: var(--dds-color-surface-subtle);
|
|
2287
2444
|
}
|
|
2288
2445
|
}
|
|
@@ -2309,8 +2466,12 @@
|
|
|
2309
2466
|
padding-inline: var(--dds-spacing-x0-75);
|
|
2310
2467
|
}
|
|
2311
2468
|
}
|
|
2312
|
-
.
|
|
2313
|
-
|
|
2469
|
+
.DetailList_column {
|
|
2470
|
+
dt,
|
|
2471
|
+
dd {
|
|
2472
|
+
margin-inline-start: 0;
|
|
2473
|
+
text-align: left;
|
|
2474
|
+
}
|
|
2314
2475
|
}
|
|
2315
2476
|
.DetailList_cell {
|
|
2316
2477
|
display: table-cell;
|
|
@@ -3323,158 +3484,6 @@ select:hover {
|
|
|
3323
3484
|
padding-left: var(--dds-spacing-x1);
|
|
3324
3485
|
}
|
|
3325
3486
|
|
|
3326
|
-
/* src/components/SelectionControl/SelectionControl.module.css */
|
|
3327
|
-
.SelectionControl_container {
|
|
3328
|
-
display: flex;
|
|
3329
|
-
flex-direction: column;
|
|
3330
|
-
gap: var(--dds-spacing-x0-125);
|
|
3331
|
-
}
|
|
3332
|
-
.SelectionControl_group {
|
|
3333
|
-
display: flex;
|
|
3334
|
-
}
|
|
3335
|
-
.SelectionControl_group--row {
|
|
3336
|
-
flex-direction: row;
|
|
3337
|
-
gap: var(--dds-spacing-x0-75);
|
|
3338
|
-
}
|
|
3339
|
-
.SelectionControl_group--column {
|
|
3340
|
-
flex-direction: column;
|
|
3341
|
-
gap: var(--dds-spacing-x0-5);
|
|
3342
|
-
}
|
|
3343
|
-
.SelectionControl_label {
|
|
3344
|
-
position: relative;
|
|
3345
|
-
display: flex;
|
|
3346
|
-
align-items: center;
|
|
3347
|
-
cursor: pointer;
|
|
3348
|
-
-webkit-user-select: none;
|
|
3349
|
-
-moz-user-select: none;
|
|
3350
|
-
user-select: none;
|
|
3351
|
-
width: -moz-fit-content;
|
|
3352
|
-
width: fit-content;
|
|
3353
|
-
padding-left: calc(18px + var(--dds-spacing-x0-5));
|
|
3354
|
-
input ~ .SelectionControl_selection-control {
|
|
3355
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
3356
|
-
transition:
|
|
3357
|
-
box-shadow 0.2s,
|
|
3358
|
-
background-color 0.2s,
|
|
3359
|
-
border 0.2s,
|
|
3360
|
-
var(--dds-focus-transition);
|
|
3361
|
-
}
|
|
3362
|
-
}
|
|
3363
|
-
&:hover:not(.SelectionControl_label--readonly) input:enabled:not(:checked) ~ .SelectionControl_selection-control {
|
|
3364
|
-
background-color: var(--dds-color-surface-hover-default);
|
|
3365
|
-
box-shadow: inset 0 0 0 1px var(--dds-color-border-action-hover);
|
|
3366
|
-
border-color: var(--dds-color-border-action-hover);
|
|
3367
|
-
}
|
|
3368
|
-
input:checked:enabled ~ .SelectionControl_selection-control,
|
|
3369
|
-
input:enabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
3370
|
-
border-color: var(--dds-color-surface-action-selected);
|
|
3371
|
-
background-color: var(--dds-color-surface-action-selected);
|
|
3372
|
-
}
|
|
3373
|
-
&.SelectionControl_label--readonly input:checked:enabled ~ .SelectionControl_selection-control,
|
|
3374
|
-
&.SelectionControl_label--readonly input:enabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
3375
|
-
border-color: var(--dds-color-surface-action-selected-disabled);
|
|
3376
|
-
background-color: var(--dds-color-surface-action-selected-disabled);
|
|
3377
|
-
}
|
|
3378
|
-
&:hover:not(.SelectionControl_label--readonly) input:checked:enabled[type=checkbox] ~ .SelectionControl_selection-control,
|
|
3379
|
-
&:hover:not(.SelectionControl_label--readonly) input:enabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
3380
|
-
background-color: var(--dds-color-surface-action-hover);
|
|
3381
|
-
border-color: var(--dds-color-surface-action-hover);
|
|
3382
|
-
}
|
|
3383
|
-
input:checked ~ .SelectionControl_selection-control:after,
|
|
3384
|
-
input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
3385
|
-
display: block;
|
|
3386
|
-
}
|
|
3387
|
-
}
|
|
3388
|
-
.SelectionControl_label--checkbox {
|
|
3389
|
-
.SelectionControl_selection-control:after {
|
|
3390
|
-
border: solid var(--dds-color-icon-on-action);
|
|
3391
|
-
border-width: 0 1px 1px 0;
|
|
3392
|
-
left: 6px;
|
|
3393
|
-
top: 1px;
|
|
3394
|
-
width: 5px;
|
|
3395
|
-
height: 10px;
|
|
3396
|
-
transform: rotate(45deg);
|
|
3397
|
-
}
|
|
3398
|
-
input[data-indeterminate=true] ~ .SelectionControl_selection-control:after {
|
|
3399
|
-
border-width: 1px 0 0 0;
|
|
3400
|
-
left: 25%;
|
|
3401
|
-
top: 50%;
|
|
3402
|
-
width: 50%;
|
|
3403
|
-
height: 1px;
|
|
3404
|
-
transform: none;
|
|
3405
|
-
}
|
|
3406
|
-
}
|
|
3407
|
-
.SelectionControl_label--radio {
|
|
3408
|
-
.SelectionControl_selection-control:after {
|
|
3409
|
-
border-radius: var(--dds-border-radius-rounded);
|
|
3410
|
-
background-color: var(--dds-color-icon-on-action);
|
|
3411
|
-
height: 8px;
|
|
3412
|
-
width: 8px;
|
|
3413
|
-
left: 50%;
|
|
3414
|
-
top: 50%;
|
|
3415
|
-
transform: translate(-50%, -50%);
|
|
3416
|
-
}
|
|
3417
|
-
}
|
|
3418
|
-
.SelectionControl_label--disabled {
|
|
3419
|
-
cursor: not-allowed;
|
|
3420
|
-
input:disabled ~ .SelectionControl_selection-control {
|
|
3421
|
-
border-color: var(--dds-color-border-default);
|
|
3422
|
-
}
|
|
3423
|
-
input:checked:disabled ~ .SelectionControl_selection-control,
|
|
3424
|
-
input:disabled[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
3425
|
-
border-color: var(--dds-color-surface-action-selected-disabled);
|
|
3426
|
-
background-color: var(--dds-color-surface-action-selected-disabled);
|
|
3427
|
-
}
|
|
3428
|
-
}
|
|
3429
|
-
.SelectionControl_label--readonly {
|
|
3430
|
-
cursor: default;
|
|
3431
|
-
color: var(--dds-color-text-medium);
|
|
3432
|
-
input ~ .SelectionControl_selection-control {
|
|
3433
|
-
border-color: var(--dds-color-border-default);
|
|
3434
|
-
background-color: var(--dds-color-surface-field-disabled);
|
|
3435
|
-
}
|
|
3436
|
-
input:checked ~ .SelectionControl_selection-control,
|
|
3437
|
-
input[data-indeterminate=true] ~ .SelectionControl_selection-control {
|
|
3438
|
-
border-color: var(--dds-color-surface-action-selected-disabled);
|
|
3439
|
-
background-color: var(--dds-color-surface-action-selected-disabled);
|
|
3440
|
-
}
|
|
3441
|
-
}
|
|
3442
|
-
.SelectionControl_label--error {
|
|
3443
|
-
&:hover input:enabled:not(:focus-visible):not(:checked) ~ .SelectionControl_selection-control {
|
|
3444
|
-
background-color: var(--dds-color-surface-danger-default);
|
|
3445
|
-
border-color: var(--dds-color-border-danger);
|
|
3446
|
-
box-shadow: 0 0 0 1px var(--dds-c-tic-border-danger);
|
|
3447
|
-
}
|
|
3448
|
-
input:not(:focus-visible) ~ .SelectionControl_selection-control,
|
|
3449
|
-
input:checked:enabled:not(:focus-visible) .SelectionControl_selection-control &:hover input:checked:enabled:not(:focus-visible) .SelectionControl_selection-control {
|
|
3450
|
-
border-color: var(--dds-color-border-danger);
|
|
3451
|
-
box-shadow: 0 0 0 1px var(--dds-color-border-danger);
|
|
3452
|
-
}
|
|
3453
|
-
}
|
|
3454
|
-
.SelectionControl_label--no-text {
|
|
3455
|
-
padding: 9px;
|
|
3456
|
-
}
|
|
3457
|
-
.SelectionControl_selection-control {
|
|
3458
|
-
position: absolute;
|
|
3459
|
-
left: 0;
|
|
3460
|
-
box-sizing: border-box;
|
|
3461
|
-
border: 1px solid;
|
|
3462
|
-
border-color: var(--dds-color-border-default);
|
|
3463
|
-
background-color: var(--dds-color-surface-field-default);
|
|
3464
|
-
border-radius: var(--dds-border-radius-input);
|
|
3465
|
-
height: 18px;
|
|
3466
|
-
width: 18px;
|
|
3467
|
-
&:after {
|
|
3468
|
-
content: "";
|
|
3469
|
-
position: absolute;
|
|
3470
|
-
display: none;
|
|
3471
|
-
box-sizing: border-box;
|
|
3472
|
-
}
|
|
3473
|
-
}
|
|
3474
|
-
.SelectionControl_selection-control--radio {
|
|
3475
|
-
border-radius: var(--dds-border-radius-rounded);
|
|
3476
|
-
}
|
|
3477
|
-
|
|
3478
3487
|
/* src/components/Skeleton/Skeleton.module.css */
|
|
3479
3488
|
@keyframes Skeleton_ddsSkeletonAnimation {
|
|
3480
3489
|
0% {
|