slu-design-system 3.2.4 → 3.2.5
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/designsystem-artportalen.css +502 -0
- package/dist/designsystem-artportalen.css.map +1 -1
- package/dist/designsystem-artportalen.min.css +1 -1
- package/dist/designsystem-default.css +502 -0
- package/dist/designsystem-default.css.map +1 -1
- package/dist/designsystem-default.min.css +1 -1
- package/package.json +1 -1
- package/scss/_adb-variables.scss +2 -0
|
@@ -10950,6 +10950,508 @@ textarea.form-control-lg {
|
|
|
10950
10950
|
color: #000;
|
|
10951
10951
|
}
|
|
10952
10952
|
|
|
10953
|
+
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
|
|
10954
|
+
--bs-offcanvas-zindex: 1045;
|
|
10955
|
+
--bs-offcanvas-width: 400px;
|
|
10956
|
+
--bs-offcanvas-height: 30vh;
|
|
10957
|
+
--bs-offcanvas-padding-x: 1rem;
|
|
10958
|
+
--bs-offcanvas-padding-y: 1rem;
|
|
10959
|
+
--bs-offcanvas-color: var(--bs-body-color);
|
|
10960
|
+
--bs-offcanvas-bg: white;
|
|
10961
|
+
--bs-offcanvas-border-width: var(--bs-border-width);
|
|
10962
|
+
--bs-offcanvas-border-color: var(--bs-border-color-translucent);
|
|
10963
|
+
--bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
10964
|
+
--bs-offcanvas-transition: transform 0.3s ease-in-out;
|
|
10965
|
+
--bs-offcanvas-title-line-height: 1.3;
|
|
10966
|
+
}
|
|
10967
|
+
|
|
10968
|
+
@media (max-width: 575.98px) {
|
|
10969
|
+
.offcanvas-sm {
|
|
10970
|
+
position: fixed;
|
|
10971
|
+
bottom: 0;
|
|
10972
|
+
z-index: var(--bs-offcanvas-zindex);
|
|
10973
|
+
display: flex;
|
|
10974
|
+
flex-direction: column;
|
|
10975
|
+
max-width: 100%;
|
|
10976
|
+
color: var(--bs-offcanvas-color);
|
|
10977
|
+
visibility: hidden;
|
|
10978
|
+
background-color: var(--bs-offcanvas-bg);
|
|
10979
|
+
background-clip: padding-box;
|
|
10980
|
+
outline: 0;
|
|
10981
|
+
transition: var(--bs-offcanvas-transition);
|
|
10982
|
+
}
|
|
10983
|
+
}
|
|
10984
|
+
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
|
|
10985
|
+
.offcanvas-sm {
|
|
10986
|
+
transition: none;
|
|
10987
|
+
}
|
|
10988
|
+
}
|
|
10989
|
+
@media (max-width: 575.98px) {
|
|
10990
|
+
.offcanvas-sm.offcanvas-start {
|
|
10991
|
+
top: 0;
|
|
10992
|
+
left: 0;
|
|
10993
|
+
width: var(--bs-offcanvas-width);
|
|
10994
|
+
border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
10995
|
+
transform: translateX(-100%);
|
|
10996
|
+
}
|
|
10997
|
+
.offcanvas-sm.offcanvas-end {
|
|
10998
|
+
top: 0;
|
|
10999
|
+
right: 0;
|
|
11000
|
+
width: var(--bs-offcanvas-width);
|
|
11001
|
+
border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11002
|
+
transform: translateX(100%);
|
|
11003
|
+
}
|
|
11004
|
+
.offcanvas-sm.offcanvas-top {
|
|
11005
|
+
top: 0;
|
|
11006
|
+
right: 0;
|
|
11007
|
+
left: 0;
|
|
11008
|
+
height: var(--bs-offcanvas-height);
|
|
11009
|
+
max-height: 100%;
|
|
11010
|
+
border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11011
|
+
transform: translateY(-100%);
|
|
11012
|
+
}
|
|
11013
|
+
.offcanvas-sm.offcanvas-bottom {
|
|
11014
|
+
right: 0;
|
|
11015
|
+
left: 0;
|
|
11016
|
+
height: var(--bs-offcanvas-height);
|
|
11017
|
+
max-height: 100%;
|
|
11018
|
+
border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11019
|
+
transform: translateY(100%);
|
|
11020
|
+
}
|
|
11021
|
+
.offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
|
|
11022
|
+
transform: none;
|
|
11023
|
+
}
|
|
11024
|
+
.offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
|
|
11025
|
+
visibility: visible;
|
|
11026
|
+
}
|
|
11027
|
+
}
|
|
11028
|
+
@media (min-width: 576px) {
|
|
11029
|
+
.offcanvas-sm {
|
|
11030
|
+
--bs-offcanvas-height: auto;
|
|
11031
|
+
--bs-offcanvas-border-width: 0;
|
|
11032
|
+
background-color: transparent !important;
|
|
11033
|
+
}
|
|
11034
|
+
.offcanvas-sm .offcanvas-header {
|
|
11035
|
+
display: none;
|
|
11036
|
+
}
|
|
11037
|
+
.offcanvas-sm .offcanvas-body {
|
|
11038
|
+
display: flex;
|
|
11039
|
+
flex-grow: 0;
|
|
11040
|
+
padding: 0;
|
|
11041
|
+
overflow-y: visible;
|
|
11042
|
+
background-color: transparent !important;
|
|
11043
|
+
}
|
|
11044
|
+
}
|
|
11045
|
+
|
|
11046
|
+
@media (max-width: 767.98px) {
|
|
11047
|
+
.offcanvas-md {
|
|
11048
|
+
position: fixed;
|
|
11049
|
+
bottom: 0;
|
|
11050
|
+
z-index: var(--bs-offcanvas-zindex);
|
|
11051
|
+
display: flex;
|
|
11052
|
+
flex-direction: column;
|
|
11053
|
+
max-width: 100%;
|
|
11054
|
+
color: var(--bs-offcanvas-color);
|
|
11055
|
+
visibility: hidden;
|
|
11056
|
+
background-color: var(--bs-offcanvas-bg);
|
|
11057
|
+
background-clip: padding-box;
|
|
11058
|
+
outline: 0;
|
|
11059
|
+
transition: var(--bs-offcanvas-transition);
|
|
11060
|
+
}
|
|
11061
|
+
}
|
|
11062
|
+
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
|
|
11063
|
+
.offcanvas-md {
|
|
11064
|
+
transition: none;
|
|
11065
|
+
}
|
|
11066
|
+
}
|
|
11067
|
+
@media (max-width: 767.98px) {
|
|
11068
|
+
.offcanvas-md.offcanvas-start {
|
|
11069
|
+
top: 0;
|
|
11070
|
+
left: 0;
|
|
11071
|
+
width: var(--bs-offcanvas-width);
|
|
11072
|
+
border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11073
|
+
transform: translateX(-100%);
|
|
11074
|
+
}
|
|
11075
|
+
.offcanvas-md.offcanvas-end {
|
|
11076
|
+
top: 0;
|
|
11077
|
+
right: 0;
|
|
11078
|
+
width: var(--bs-offcanvas-width);
|
|
11079
|
+
border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11080
|
+
transform: translateX(100%);
|
|
11081
|
+
}
|
|
11082
|
+
.offcanvas-md.offcanvas-top {
|
|
11083
|
+
top: 0;
|
|
11084
|
+
right: 0;
|
|
11085
|
+
left: 0;
|
|
11086
|
+
height: var(--bs-offcanvas-height);
|
|
11087
|
+
max-height: 100%;
|
|
11088
|
+
border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11089
|
+
transform: translateY(-100%);
|
|
11090
|
+
}
|
|
11091
|
+
.offcanvas-md.offcanvas-bottom {
|
|
11092
|
+
right: 0;
|
|
11093
|
+
left: 0;
|
|
11094
|
+
height: var(--bs-offcanvas-height);
|
|
11095
|
+
max-height: 100%;
|
|
11096
|
+
border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11097
|
+
transform: translateY(100%);
|
|
11098
|
+
}
|
|
11099
|
+
.offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
|
|
11100
|
+
transform: none;
|
|
11101
|
+
}
|
|
11102
|
+
.offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
|
|
11103
|
+
visibility: visible;
|
|
11104
|
+
}
|
|
11105
|
+
}
|
|
11106
|
+
@media (min-width: 768px) {
|
|
11107
|
+
.offcanvas-md {
|
|
11108
|
+
--bs-offcanvas-height: auto;
|
|
11109
|
+
--bs-offcanvas-border-width: 0;
|
|
11110
|
+
background-color: transparent !important;
|
|
11111
|
+
}
|
|
11112
|
+
.offcanvas-md .offcanvas-header {
|
|
11113
|
+
display: none;
|
|
11114
|
+
}
|
|
11115
|
+
.offcanvas-md .offcanvas-body {
|
|
11116
|
+
display: flex;
|
|
11117
|
+
flex-grow: 0;
|
|
11118
|
+
padding: 0;
|
|
11119
|
+
overflow-y: visible;
|
|
11120
|
+
background-color: transparent !important;
|
|
11121
|
+
}
|
|
11122
|
+
}
|
|
11123
|
+
|
|
11124
|
+
@media (max-width: 991.98px) {
|
|
11125
|
+
.offcanvas-lg {
|
|
11126
|
+
position: fixed;
|
|
11127
|
+
bottom: 0;
|
|
11128
|
+
z-index: var(--bs-offcanvas-zindex);
|
|
11129
|
+
display: flex;
|
|
11130
|
+
flex-direction: column;
|
|
11131
|
+
max-width: 100%;
|
|
11132
|
+
color: var(--bs-offcanvas-color);
|
|
11133
|
+
visibility: hidden;
|
|
11134
|
+
background-color: var(--bs-offcanvas-bg);
|
|
11135
|
+
background-clip: padding-box;
|
|
11136
|
+
outline: 0;
|
|
11137
|
+
transition: var(--bs-offcanvas-transition);
|
|
11138
|
+
}
|
|
11139
|
+
}
|
|
11140
|
+
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
|
|
11141
|
+
.offcanvas-lg {
|
|
11142
|
+
transition: none;
|
|
11143
|
+
}
|
|
11144
|
+
}
|
|
11145
|
+
@media (max-width: 991.98px) {
|
|
11146
|
+
.offcanvas-lg.offcanvas-start {
|
|
11147
|
+
top: 0;
|
|
11148
|
+
left: 0;
|
|
11149
|
+
width: var(--bs-offcanvas-width);
|
|
11150
|
+
border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11151
|
+
transform: translateX(-100%);
|
|
11152
|
+
}
|
|
11153
|
+
.offcanvas-lg.offcanvas-end {
|
|
11154
|
+
top: 0;
|
|
11155
|
+
right: 0;
|
|
11156
|
+
width: var(--bs-offcanvas-width);
|
|
11157
|
+
border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11158
|
+
transform: translateX(100%);
|
|
11159
|
+
}
|
|
11160
|
+
.offcanvas-lg.offcanvas-top {
|
|
11161
|
+
top: 0;
|
|
11162
|
+
right: 0;
|
|
11163
|
+
left: 0;
|
|
11164
|
+
height: var(--bs-offcanvas-height);
|
|
11165
|
+
max-height: 100%;
|
|
11166
|
+
border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11167
|
+
transform: translateY(-100%);
|
|
11168
|
+
}
|
|
11169
|
+
.offcanvas-lg.offcanvas-bottom {
|
|
11170
|
+
right: 0;
|
|
11171
|
+
left: 0;
|
|
11172
|
+
height: var(--bs-offcanvas-height);
|
|
11173
|
+
max-height: 100%;
|
|
11174
|
+
border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11175
|
+
transform: translateY(100%);
|
|
11176
|
+
}
|
|
11177
|
+
.offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
|
|
11178
|
+
transform: none;
|
|
11179
|
+
}
|
|
11180
|
+
.offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
|
|
11181
|
+
visibility: visible;
|
|
11182
|
+
}
|
|
11183
|
+
}
|
|
11184
|
+
@media (min-width: 992px) {
|
|
11185
|
+
.offcanvas-lg {
|
|
11186
|
+
--bs-offcanvas-height: auto;
|
|
11187
|
+
--bs-offcanvas-border-width: 0;
|
|
11188
|
+
background-color: transparent !important;
|
|
11189
|
+
}
|
|
11190
|
+
.offcanvas-lg .offcanvas-header {
|
|
11191
|
+
display: none;
|
|
11192
|
+
}
|
|
11193
|
+
.offcanvas-lg .offcanvas-body {
|
|
11194
|
+
display: flex;
|
|
11195
|
+
flex-grow: 0;
|
|
11196
|
+
padding: 0;
|
|
11197
|
+
overflow-y: visible;
|
|
11198
|
+
background-color: transparent !important;
|
|
11199
|
+
}
|
|
11200
|
+
}
|
|
11201
|
+
|
|
11202
|
+
@media (max-width: 1199.98px) {
|
|
11203
|
+
.offcanvas-xl {
|
|
11204
|
+
position: fixed;
|
|
11205
|
+
bottom: 0;
|
|
11206
|
+
z-index: var(--bs-offcanvas-zindex);
|
|
11207
|
+
display: flex;
|
|
11208
|
+
flex-direction: column;
|
|
11209
|
+
max-width: 100%;
|
|
11210
|
+
color: var(--bs-offcanvas-color);
|
|
11211
|
+
visibility: hidden;
|
|
11212
|
+
background-color: var(--bs-offcanvas-bg);
|
|
11213
|
+
background-clip: padding-box;
|
|
11214
|
+
outline: 0;
|
|
11215
|
+
transition: var(--bs-offcanvas-transition);
|
|
11216
|
+
}
|
|
11217
|
+
}
|
|
11218
|
+
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
|
|
11219
|
+
.offcanvas-xl {
|
|
11220
|
+
transition: none;
|
|
11221
|
+
}
|
|
11222
|
+
}
|
|
11223
|
+
@media (max-width: 1199.98px) {
|
|
11224
|
+
.offcanvas-xl.offcanvas-start {
|
|
11225
|
+
top: 0;
|
|
11226
|
+
left: 0;
|
|
11227
|
+
width: var(--bs-offcanvas-width);
|
|
11228
|
+
border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11229
|
+
transform: translateX(-100%);
|
|
11230
|
+
}
|
|
11231
|
+
.offcanvas-xl.offcanvas-end {
|
|
11232
|
+
top: 0;
|
|
11233
|
+
right: 0;
|
|
11234
|
+
width: var(--bs-offcanvas-width);
|
|
11235
|
+
border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11236
|
+
transform: translateX(100%);
|
|
11237
|
+
}
|
|
11238
|
+
.offcanvas-xl.offcanvas-top {
|
|
11239
|
+
top: 0;
|
|
11240
|
+
right: 0;
|
|
11241
|
+
left: 0;
|
|
11242
|
+
height: var(--bs-offcanvas-height);
|
|
11243
|
+
max-height: 100%;
|
|
11244
|
+
border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11245
|
+
transform: translateY(-100%);
|
|
11246
|
+
}
|
|
11247
|
+
.offcanvas-xl.offcanvas-bottom {
|
|
11248
|
+
right: 0;
|
|
11249
|
+
left: 0;
|
|
11250
|
+
height: var(--bs-offcanvas-height);
|
|
11251
|
+
max-height: 100%;
|
|
11252
|
+
border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11253
|
+
transform: translateY(100%);
|
|
11254
|
+
}
|
|
11255
|
+
.offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
|
|
11256
|
+
transform: none;
|
|
11257
|
+
}
|
|
11258
|
+
.offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
|
|
11259
|
+
visibility: visible;
|
|
11260
|
+
}
|
|
11261
|
+
}
|
|
11262
|
+
@media (min-width: 1200px) {
|
|
11263
|
+
.offcanvas-xl {
|
|
11264
|
+
--bs-offcanvas-height: auto;
|
|
11265
|
+
--bs-offcanvas-border-width: 0;
|
|
11266
|
+
background-color: transparent !important;
|
|
11267
|
+
}
|
|
11268
|
+
.offcanvas-xl .offcanvas-header {
|
|
11269
|
+
display: none;
|
|
11270
|
+
}
|
|
11271
|
+
.offcanvas-xl .offcanvas-body {
|
|
11272
|
+
display: flex;
|
|
11273
|
+
flex-grow: 0;
|
|
11274
|
+
padding: 0;
|
|
11275
|
+
overflow-y: visible;
|
|
11276
|
+
background-color: transparent !important;
|
|
11277
|
+
}
|
|
11278
|
+
}
|
|
11279
|
+
|
|
11280
|
+
@media (max-width: 1399.98px) {
|
|
11281
|
+
.offcanvas-xxl {
|
|
11282
|
+
position: fixed;
|
|
11283
|
+
bottom: 0;
|
|
11284
|
+
z-index: var(--bs-offcanvas-zindex);
|
|
11285
|
+
display: flex;
|
|
11286
|
+
flex-direction: column;
|
|
11287
|
+
max-width: 100%;
|
|
11288
|
+
color: var(--bs-offcanvas-color);
|
|
11289
|
+
visibility: hidden;
|
|
11290
|
+
background-color: var(--bs-offcanvas-bg);
|
|
11291
|
+
background-clip: padding-box;
|
|
11292
|
+
outline: 0;
|
|
11293
|
+
transition: var(--bs-offcanvas-transition);
|
|
11294
|
+
}
|
|
11295
|
+
}
|
|
11296
|
+
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
|
|
11297
|
+
.offcanvas-xxl {
|
|
11298
|
+
transition: none;
|
|
11299
|
+
}
|
|
11300
|
+
}
|
|
11301
|
+
@media (max-width: 1399.98px) {
|
|
11302
|
+
.offcanvas-xxl.offcanvas-start {
|
|
11303
|
+
top: 0;
|
|
11304
|
+
left: 0;
|
|
11305
|
+
width: var(--bs-offcanvas-width);
|
|
11306
|
+
border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11307
|
+
transform: translateX(-100%);
|
|
11308
|
+
}
|
|
11309
|
+
.offcanvas-xxl.offcanvas-end {
|
|
11310
|
+
top: 0;
|
|
11311
|
+
right: 0;
|
|
11312
|
+
width: var(--bs-offcanvas-width);
|
|
11313
|
+
border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11314
|
+
transform: translateX(100%);
|
|
11315
|
+
}
|
|
11316
|
+
.offcanvas-xxl.offcanvas-top {
|
|
11317
|
+
top: 0;
|
|
11318
|
+
right: 0;
|
|
11319
|
+
left: 0;
|
|
11320
|
+
height: var(--bs-offcanvas-height);
|
|
11321
|
+
max-height: 100%;
|
|
11322
|
+
border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11323
|
+
transform: translateY(-100%);
|
|
11324
|
+
}
|
|
11325
|
+
.offcanvas-xxl.offcanvas-bottom {
|
|
11326
|
+
right: 0;
|
|
11327
|
+
left: 0;
|
|
11328
|
+
height: var(--bs-offcanvas-height);
|
|
11329
|
+
max-height: 100%;
|
|
11330
|
+
border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11331
|
+
transform: translateY(100%);
|
|
11332
|
+
}
|
|
11333
|
+
.offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
|
|
11334
|
+
transform: none;
|
|
11335
|
+
}
|
|
11336
|
+
.offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
|
|
11337
|
+
visibility: visible;
|
|
11338
|
+
}
|
|
11339
|
+
}
|
|
11340
|
+
@media (min-width: 1400px) {
|
|
11341
|
+
.offcanvas-xxl {
|
|
11342
|
+
--bs-offcanvas-height: auto;
|
|
11343
|
+
--bs-offcanvas-border-width: 0;
|
|
11344
|
+
background-color: transparent !important;
|
|
11345
|
+
}
|
|
11346
|
+
.offcanvas-xxl .offcanvas-header {
|
|
11347
|
+
display: none;
|
|
11348
|
+
}
|
|
11349
|
+
.offcanvas-xxl .offcanvas-body {
|
|
11350
|
+
display: flex;
|
|
11351
|
+
flex-grow: 0;
|
|
11352
|
+
padding: 0;
|
|
11353
|
+
overflow-y: visible;
|
|
11354
|
+
background-color: transparent !important;
|
|
11355
|
+
}
|
|
11356
|
+
}
|
|
11357
|
+
|
|
11358
|
+
.offcanvas {
|
|
11359
|
+
position: fixed;
|
|
11360
|
+
bottom: 0;
|
|
11361
|
+
z-index: var(--bs-offcanvas-zindex);
|
|
11362
|
+
display: flex;
|
|
11363
|
+
flex-direction: column;
|
|
11364
|
+
max-width: 100%;
|
|
11365
|
+
color: var(--bs-offcanvas-color);
|
|
11366
|
+
visibility: hidden;
|
|
11367
|
+
background-color: var(--bs-offcanvas-bg);
|
|
11368
|
+
background-clip: padding-box;
|
|
11369
|
+
outline: 0;
|
|
11370
|
+
transition: var(--bs-offcanvas-transition);
|
|
11371
|
+
}
|
|
11372
|
+
@media (prefers-reduced-motion: reduce) {
|
|
11373
|
+
.offcanvas {
|
|
11374
|
+
transition: none;
|
|
11375
|
+
}
|
|
11376
|
+
}
|
|
11377
|
+
.offcanvas.offcanvas-start {
|
|
11378
|
+
top: 0;
|
|
11379
|
+
left: 0;
|
|
11380
|
+
width: var(--bs-offcanvas-width);
|
|
11381
|
+
border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11382
|
+
transform: translateX(-100%);
|
|
11383
|
+
}
|
|
11384
|
+
.offcanvas.offcanvas-end {
|
|
11385
|
+
top: 0;
|
|
11386
|
+
right: 0;
|
|
11387
|
+
width: var(--bs-offcanvas-width);
|
|
11388
|
+
border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11389
|
+
transform: translateX(100%);
|
|
11390
|
+
}
|
|
11391
|
+
.offcanvas.offcanvas-top {
|
|
11392
|
+
top: 0;
|
|
11393
|
+
right: 0;
|
|
11394
|
+
left: 0;
|
|
11395
|
+
height: var(--bs-offcanvas-height);
|
|
11396
|
+
max-height: 100%;
|
|
11397
|
+
border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11398
|
+
transform: translateY(-100%);
|
|
11399
|
+
}
|
|
11400
|
+
.offcanvas.offcanvas-bottom {
|
|
11401
|
+
right: 0;
|
|
11402
|
+
left: 0;
|
|
11403
|
+
height: var(--bs-offcanvas-height);
|
|
11404
|
+
max-height: 100%;
|
|
11405
|
+
border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
|
|
11406
|
+
transform: translateY(100%);
|
|
11407
|
+
}
|
|
11408
|
+
.offcanvas.showing, .offcanvas.show:not(.hiding) {
|
|
11409
|
+
transform: none;
|
|
11410
|
+
}
|
|
11411
|
+
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
|
|
11412
|
+
visibility: visible;
|
|
11413
|
+
}
|
|
11414
|
+
|
|
11415
|
+
.offcanvas-backdrop {
|
|
11416
|
+
position: fixed;
|
|
11417
|
+
top: 0;
|
|
11418
|
+
left: 0;
|
|
11419
|
+
z-index: 1040;
|
|
11420
|
+
width: 100vw;
|
|
11421
|
+
height: 100vh;
|
|
11422
|
+
background-color: #000;
|
|
11423
|
+
}
|
|
11424
|
+
.offcanvas-backdrop.fade {
|
|
11425
|
+
opacity: 0;
|
|
11426
|
+
}
|
|
11427
|
+
.offcanvas-backdrop.show {
|
|
11428
|
+
opacity: 0.5;
|
|
11429
|
+
}
|
|
11430
|
+
|
|
11431
|
+
.offcanvas-header {
|
|
11432
|
+
display: flex;
|
|
11433
|
+
align-items: center;
|
|
11434
|
+
justify-content: space-between;
|
|
11435
|
+
padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
|
|
11436
|
+
}
|
|
11437
|
+
.offcanvas-header .btn-close {
|
|
11438
|
+
padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
|
|
11439
|
+
margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
|
|
11440
|
+
margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
|
|
11441
|
+
margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
|
|
11442
|
+
}
|
|
11443
|
+
|
|
11444
|
+
.offcanvas-title {
|
|
11445
|
+
margin-bottom: 0;
|
|
11446
|
+
line-height: var(--bs-offcanvas-title-line-height);
|
|
11447
|
+
}
|
|
11448
|
+
|
|
11449
|
+
.offcanvas-body {
|
|
11450
|
+
flex-grow: 1;
|
|
11451
|
+
padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
|
|
11452
|
+
overflow-y: auto;
|
|
11453
|
+
}
|
|
11454
|
+
|
|
10953
11455
|
.bg-light-darker {
|
|
10954
11456
|
background-color: #f6f7f9;
|
|
10955
11457
|
}
|