slu-design-system 6.2.5 → 7.0.1
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-default.css +213 -92
- package/dist/designsystem-default.css.map +1 -1
- package/dist/designsystem-default.min.css +2 -2
- package/package.json +5 -14
- package/dist/designsystem-aqua.css +0 -12910
- package/dist/designsystem-aqua.css.map +0 -1
- package/dist/designsystem-aqua.min.css +0 -5
- package/dist/designsystem-artportalen.css +0 -12910
- package/dist/designsystem-artportalen.css.map +0 -1
- package/dist/designsystem-artportalen.min.css +0 -5
- package/dist/designsystem-fynddata.css +0 -12910
- package/dist/designsystem-fynddata.css.map +0 -1
- package/dist/designsystem-fynddata.min.css +0 -5
- package/dist/designsystem-slu.css +0 -12910
- package/dist/designsystem-slu.css.map +0 -1
- package/dist/designsystem-slu.min.css +0 -5
- package/scss/_aqua-vars.scss +0 -5
- package/scss/_artportalen-vars.scss +0 -4
- package/scss/_default-vars.scss +0 -40
- package/scss/_fynddata-vars.scss +0 -3
- package/scss/_slu-vars.scss +0 -7
|
@@ -1,4 +1,27 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
+
:root {
|
|
3
|
+
--adb-primary: #007681;
|
|
4
|
+
--adb-secondary: white;
|
|
5
|
+
--adb-danger: #b83d39;
|
|
6
|
+
--adb-warning: #db7100;
|
|
7
|
+
--adb-success: #52a852;
|
|
8
|
+
--adb-info: #17a2b8;
|
|
9
|
+
--adb-primary-subtle: var(--bs-primary-bg-subtle);
|
|
10
|
+
--adb-primary-dark: #004851;
|
|
11
|
+
--adb-primary-dark-rgb: 0, 72, 81;
|
|
12
|
+
--adb-primary-dark-border: #003c44;
|
|
13
|
+
--adb-primary-dark-border-rgb: 0, 60, 68;
|
|
14
|
+
--adb-primary-dark-hover: #003f47;
|
|
15
|
+
--adb-primary-dark-hover-rgb: 0, 63, 71;
|
|
16
|
+
--adb-primary-dark-hover-border: #00353c;
|
|
17
|
+
--adb-primary-dark-hover-border-rgb: 0, 53, 60;
|
|
18
|
+
--adb-page-bg: #e9ebee;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
body {
|
|
22
|
+
background-color: var(--adb-page-bg) !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
2
25
|
/*!
|
|
3
26
|
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
4
27
|
* Copyright 2011-2025 The Bootstrap Authors
|
|
@@ -80,8 +103,8 @@
|
|
|
80
103
|
--bs-body-line-height: 1.5;
|
|
81
104
|
--bs-body-color: black;
|
|
82
105
|
--bs-body-color-rgb: 0, 0, 0;
|
|
83
|
-
--bs-body-bg: #
|
|
84
|
-
--bs-body-bg-rgb:
|
|
106
|
+
--bs-body-bg: #fff;
|
|
107
|
+
--bs-body-bg-rgb: 255, 255, 255;
|
|
85
108
|
--bs-emphasis-color: #000;
|
|
86
109
|
--bs-emphasis-color-rgb: 0, 0, 0;
|
|
87
110
|
--bs-secondary-color: rgba(0, 0, 0, 0.75);
|
|
@@ -1848,7 +1871,7 @@ progress {
|
|
|
1848
1871
|
--bs-table-color-state: initial;
|
|
1849
1872
|
--bs-table-bg-state: initial;
|
|
1850
1873
|
--bs-table-color: var(--bs-emphasis-color);
|
|
1851
|
-
--bs-table-bg:
|
|
1874
|
+
--bs-table-bg: var(--bs-body-bg);
|
|
1852
1875
|
--bs-table-border-color: var(--bs-border-color);
|
|
1853
1876
|
--bs-table-accent-bg: transparent;
|
|
1854
1877
|
--bs-table-striped-color: var(--bs-emphasis-color);
|
|
@@ -2108,7 +2131,7 @@ progress {
|
|
|
2108
2131
|
line-height: 1.5;
|
|
2109
2132
|
color: var(--bs-body-color);
|
|
2110
2133
|
appearance: none;
|
|
2111
|
-
background-color:
|
|
2134
|
+
background-color: var(--bs-body-bg);
|
|
2112
2135
|
background-clip: padding-box;
|
|
2113
2136
|
border: var(--bs-border-width) solid var(--bs-border-color);
|
|
2114
2137
|
border-radius: var(--bs-border-radius);
|
|
@@ -2127,7 +2150,7 @@ progress {
|
|
|
2127
2150
|
}
|
|
2128
2151
|
.form-control:focus {
|
|
2129
2152
|
color: var(--bs-body-color);
|
|
2130
|
-
background-color:
|
|
2153
|
+
background-color: var(--bs-body-bg);
|
|
2131
2154
|
border-color: rgb(127.5, 186.5, 192);
|
|
2132
2155
|
outline: 0;
|
|
2133
2156
|
box-shadow: 0 0 0 0.25rem rgba(0, 118, 129, 0.25);
|
|
@@ -2258,7 +2281,7 @@ textarea.form-control-lg {
|
|
|
2258
2281
|
line-height: 1.5;
|
|
2259
2282
|
color: var(--bs-body-color);
|
|
2260
2283
|
appearance: none;
|
|
2261
|
-
background-color:
|
|
2284
|
+
background-color: var(--bs-body-bg);
|
|
2262
2285
|
background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
|
|
2263
2286
|
background-repeat: no-repeat;
|
|
2264
2287
|
background-position: right 0.5rem center;
|
|
@@ -2332,7 +2355,7 @@ textarea.form-control-lg {
|
|
|
2332
2355
|
}
|
|
2333
2356
|
|
|
2334
2357
|
.form-check-input {
|
|
2335
|
-
--bs-form-check-bg:
|
|
2358
|
+
--bs-form-check-bg: var(--bs-body-bg);
|
|
2336
2359
|
flex-shrink: 0;
|
|
2337
2360
|
width: 1em;
|
|
2338
2361
|
height: 1em;
|
|
@@ -2450,10 +2473,10 @@ textarea.form-control-lg {
|
|
|
2450
2473
|
outline: 0;
|
|
2451
2474
|
}
|
|
2452
2475
|
.form-range:focus::-webkit-slider-thumb {
|
|
2453
|
-
box-shadow: 0 0 0 1px #
|
|
2476
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(0, 118, 129, 0.25);
|
|
2454
2477
|
}
|
|
2455
2478
|
.form-range:focus::-moz-range-thumb {
|
|
2456
|
-
box-shadow: 0 0 0 1px #
|
|
2479
|
+
box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(0, 118, 129, 0.25);
|
|
2457
2480
|
}
|
|
2458
2481
|
.form-range::-moz-focus-outer {
|
|
2459
2482
|
border: 0;
|
|
@@ -2594,7 +2617,7 @@ textarea.form-control-lg {
|
|
|
2594
2617
|
z-index: -1;
|
|
2595
2618
|
height: 1.5em;
|
|
2596
2619
|
content: "";
|
|
2597
|
-
background-color:
|
|
2620
|
+
background-color: var(--bs-body-bg);
|
|
2598
2621
|
border-radius: var(--bs-border-radius);
|
|
2599
2622
|
}
|
|
2600
2623
|
.form-floating > textarea:disabled ~ label::after {
|
|
@@ -3337,7 +3360,7 @@ textarea.form-control-lg {
|
|
|
3337
3360
|
--bs-dropdown-spacer: 0.125rem;
|
|
3338
3361
|
--bs-dropdown-font-size: 1rem;
|
|
3339
3362
|
--bs-dropdown-color: var(--bs-body-color);
|
|
3340
|
-
--bs-dropdown-bg:
|
|
3363
|
+
--bs-dropdown-bg: var(--bs-body-bg);
|
|
3341
3364
|
--bs-dropdown-border-color: var(--bs-border-color-translucent);
|
|
3342
3365
|
--bs-dropdown-border-radius: var(--bs-border-radius);
|
|
3343
3366
|
--bs-dropdown-border-width: var(--bs-border-width);
|
|
@@ -4644,7 +4667,7 @@ textarea.form-control-lg {
|
|
|
4644
4667
|
--bs-pagination-padding-y: 0.375rem;
|
|
4645
4668
|
--bs-pagination-font-size: 1rem;
|
|
4646
4669
|
--bs-pagination-color: var(--bs-link-color);
|
|
4647
|
-
--bs-pagination-bg:
|
|
4670
|
+
--bs-pagination-bg: var(--bs-body-bg);
|
|
4648
4671
|
--bs-pagination-border-width: var(--bs-border-width);
|
|
4649
4672
|
--bs-pagination-border-color: var(--bs-border-color);
|
|
4650
4673
|
--bs-pagination-border-radius: var(--bs-border-radius);
|
|
@@ -4919,7 +4942,7 @@ textarea.form-control-lg {
|
|
|
4919
4942
|
|
|
4920
4943
|
.list-group {
|
|
4921
4944
|
--bs-list-group-color: var(--bs-body-color);
|
|
4922
|
-
--bs-list-group-bg:
|
|
4945
|
+
--bs-list-group-bg: var(--bs-body-bg);
|
|
4923
4946
|
--bs-list-group-border-color: var(--bs-border-color);
|
|
4924
4947
|
--bs-list-group-border-width: var(--bs-border-width);
|
|
4925
4948
|
--bs-list-group-border-radius: var(--bs-border-radius);
|
|
@@ -4931,10 +4954,10 @@ textarea.form-control-lg {
|
|
|
4931
4954
|
--bs-list-group-action-active-color: var(--bs-body-color);
|
|
4932
4955
|
--bs-list-group-action-active-bg: var(--bs-secondary-bg);
|
|
4933
4956
|
--bs-list-group-disabled-color: var(--bs-secondary-color);
|
|
4934
|
-
--bs-list-group-disabled-bg:
|
|
4957
|
+
--bs-list-group-disabled-bg: var(--bs-body-bg);
|
|
4935
4958
|
--bs-list-group-active-color: inherit;
|
|
4936
|
-
--bs-list-group-active-bg: #
|
|
4937
|
-
--bs-list-group-active-border-color: #
|
|
4959
|
+
--bs-list-group-active-bg: #007681;
|
|
4960
|
+
--bs-list-group-active-border-color: #007681;
|
|
4938
4961
|
display: flex;
|
|
4939
4962
|
flex-direction: column;
|
|
4940
4963
|
padding-left: 0;
|
|
@@ -5381,7 +5404,7 @@ textarea.form-control-lg {
|
|
|
5381
5404
|
--bs-modal-padding: 1rem;
|
|
5382
5405
|
--bs-modal-margin: 0.5rem;
|
|
5383
5406
|
--bs-modal-color: var(--bs-body-color);
|
|
5384
|
-
--bs-modal-bg:
|
|
5407
|
+
--bs-modal-bg: var(--bs-body-bg);
|
|
5385
5408
|
--bs-modal-border-color: var(--bs-border-color-translucent);
|
|
5386
5409
|
--bs-modal-border-width: var(--bs-border-width);
|
|
5387
5410
|
--bs-modal-border-radius: var(--bs-border-radius-lg);
|
|
@@ -11843,6 +11866,83 @@ textarea.form-control-lg {
|
|
|
11843
11866
|
display: none !important;
|
|
11844
11867
|
}
|
|
11845
11868
|
}
|
|
11869
|
+
.btn-primary-dark {
|
|
11870
|
+
--bs-btn-color: #fff;
|
|
11871
|
+
--bs-btn-bg: var(--adb-primary-dark);
|
|
11872
|
+
--bs-btn-border-color: var(--adb-primary-dark-border);
|
|
11873
|
+
--bs-btn-hover-color: #fff;
|
|
11874
|
+
--bs-btn-hover-bg: var(--adb-primary-dark-hover);
|
|
11875
|
+
--bs-btn-hover-border-color: var(--adb-primary-dark-hover-border);
|
|
11876
|
+
--bs-btn-focus-shadow-rgb: var(--adb-primary-dark-rgb);
|
|
11877
|
+
--bs-btn-active-color: #fff;
|
|
11878
|
+
--bs-btn-active-bg: var(--adb-primary-dark-hover);
|
|
11879
|
+
--bs-btn-active-border-color: var(--adb-primary-dark-hover-border);
|
|
11880
|
+
--bs-btn-disabled-color: #fff;
|
|
11881
|
+
--bs-btn-disabled-bg: var(--adb-primary-dark);
|
|
11882
|
+
--bs-btn-disabled-border-color: var(--adb-primary-dark-border);
|
|
11883
|
+
}
|
|
11884
|
+
|
|
11885
|
+
.btn-primary {
|
|
11886
|
+
--bs-btn-color: #fff;
|
|
11887
|
+
--bs-btn-bg: var(--bs-primary);
|
|
11888
|
+
--bs-btn-border-color: var(--adb-primary-dark);
|
|
11889
|
+
--bs-btn-hover-color: #fff;
|
|
11890
|
+
--bs-btn-hover-bg: var(--adb-primary-dark);
|
|
11891
|
+
--bs-btn-hover-border-color: var(--adb-primary-dark);
|
|
11892
|
+
--bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
|
|
11893
|
+
--bs-btn-active-color: #fff;
|
|
11894
|
+
--bs-btn-active-bg: var(--adb-primary-dark);
|
|
11895
|
+
--bs-btn-active-border-color: var(--adb-primary-dark);
|
|
11896
|
+
--bs-btn-disabled-color: #fff;
|
|
11897
|
+
--bs-btn-disabled-bg: var(--bs-primary);
|
|
11898
|
+
--bs-btn-disabled-border-color: var(--adb-primary-dark);
|
|
11899
|
+
}
|
|
11900
|
+
|
|
11901
|
+
.btn-file {
|
|
11902
|
+
position: relative;
|
|
11903
|
+
overflow: hidden;
|
|
11904
|
+
}
|
|
11905
|
+
|
|
11906
|
+
.btn-file input[type=file] {
|
|
11907
|
+
position: absolute;
|
|
11908
|
+
top: 0;
|
|
11909
|
+
right: 0;
|
|
11910
|
+
min-width: 100%;
|
|
11911
|
+
min-height: 100%;
|
|
11912
|
+
font-size: 100px;
|
|
11913
|
+
text-align: right;
|
|
11914
|
+
filter: alpha(opacity=0);
|
|
11915
|
+
opacity: 0;
|
|
11916
|
+
outline: none;
|
|
11917
|
+
background: white;
|
|
11918
|
+
cursor: inherit;
|
|
11919
|
+
display: block;
|
|
11920
|
+
}
|
|
11921
|
+
|
|
11922
|
+
.btn-invisible {
|
|
11923
|
+
display: block;
|
|
11924
|
+
width: 100%;
|
|
11925
|
+
outline: 1;
|
|
11926
|
+
white-space: normal;
|
|
11927
|
+
text-align: left;
|
|
11928
|
+
box-shadow: none;
|
|
11929
|
+
}
|
|
11930
|
+
.btn-invisible:active, .btn-invisible:first-child:active {
|
|
11931
|
+
border-color: transparent;
|
|
11932
|
+
}
|
|
11933
|
+
.btn-invisible:hover {
|
|
11934
|
+
color: grey;
|
|
11935
|
+
}
|
|
11936
|
+
.btn-invisible:focus-visible {
|
|
11937
|
+
outline: dotted 1px #0d6efd !important;
|
|
11938
|
+
border-radius: 0;
|
|
11939
|
+
}
|
|
11940
|
+
|
|
11941
|
+
.btn-light {
|
|
11942
|
+
background-color: transparent;
|
|
11943
|
+
border: 1px solid #f2f1f1;
|
|
11944
|
+
}
|
|
11945
|
+
|
|
11846
11946
|
.btn-secondary {
|
|
11847
11947
|
--bs-btn-color: black;
|
|
11848
11948
|
--bs-btn-bg: white;
|
|
@@ -11860,23 +11960,6 @@ textarea.form-control-lg {
|
|
|
11860
11960
|
--bs-btn-disabled-border-color: rgb(191.25, 191.25, 191.25);
|
|
11861
11961
|
}
|
|
11862
11962
|
|
|
11863
|
-
.btn-primary-dark {
|
|
11864
|
-
--bs-btn-color: white;
|
|
11865
|
-
--bs-btn-bg: #004851;
|
|
11866
|
-
--bs-btn-border-color: rgb(0, 68.4, 76.95);
|
|
11867
|
-
--bs-btn-hover-color: #fff;
|
|
11868
|
-
--bs-btn-hover-bg: rgb(0, 91.0666666667, 102.45);
|
|
11869
|
-
--bs-btn-hover-border-color: #004851;
|
|
11870
|
-
--bs-btn-focus-shadow-rgb: 38, 96, 104;
|
|
11871
|
-
--bs-btn-active-color: #fff;
|
|
11872
|
-
--bs-btn-active-bg: rgb(0, 57.6, 64.8);
|
|
11873
|
-
--bs-btn-active-border-color: rgb(0, 51.3, 57.7125);
|
|
11874
|
-
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
11875
|
-
--bs-btn-disabled-color: #fff;
|
|
11876
|
-
--bs-btn-disabled-bg: #004851;
|
|
11877
|
-
--bs-btn-disabled-border-color: rgb(0, 68.4, 76.95);
|
|
11878
|
-
}
|
|
11879
|
-
|
|
11880
11963
|
.btn-select-primary {
|
|
11881
11964
|
display: inline-block;
|
|
11882
11965
|
--bs-btn-color: #fff;
|
|
@@ -11978,51 +12061,6 @@ textarea.form-control-lg {
|
|
|
11978
12061
|
color: white;
|
|
11979
12062
|
}
|
|
11980
12063
|
|
|
11981
|
-
.btn-file {
|
|
11982
|
-
position: relative;
|
|
11983
|
-
overflow: hidden;
|
|
11984
|
-
}
|
|
11985
|
-
|
|
11986
|
-
.btn-file input[type=file] {
|
|
11987
|
-
position: absolute;
|
|
11988
|
-
top: 0;
|
|
11989
|
-
right: 0;
|
|
11990
|
-
min-width: 100%;
|
|
11991
|
-
min-height: 100%;
|
|
11992
|
-
font-size: 100px;
|
|
11993
|
-
text-align: right;
|
|
11994
|
-
filter: alpha(opacity=0);
|
|
11995
|
-
opacity: 0;
|
|
11996
|
-
outline: none;
|
|
11997
|
-
background: white;
|
|
11998
|
-
cursor: inherit;
|
|
11999
|
-
display: block;
|
|
12000
|
-
}
|
|
12001
|
-
|
|
12002
|
-
.btn-invisible {
|
|
12003
|
-
display: block;
|
|
12004
|
-
width: 100%;
|
|
12005
|
-
outline: 1;
|
|
12006
|
-
white-space: normal;
|
|
12007
|
-
text-align: left;
|
|
12008
|
-
box-shadow: none;
|
|
12009
|
-
}
|
|
12010
|
-
.btn-invisible:active, .btn-invisible:first-child:active {
|
|
12011
|
-
border-color: transparent;
|
|
12012
|
-
}
|
|
12013
|
-
.btn-invisible:hover {
|
|
12014
|
-
color: grey;
|
|
12015
|
-
}
|
|
12016
|
-
.btn-invisible:focus-visible {
|
|
12017
|
-
outline: dotted 1px #0d6efd !important;
|
|
12018
|
-
border-radius: 0;
|
|
12019
|
-
}
|
|
12020
|
-
|
|
12021
|
-
.btn-light {
|
|
12022
|
-
background-color: transparent;
|
|
12023
|
-
border: 1px solid #f2f1f1;
|
|
12024
|
-
}
|
|
12025
|
-
|
|
12026
12064
|
#banner {
|
|
12027
12065
|
background-image: url("/assets/images/banner.png");
|
|
12028
12066
|
background-position: center;
|
|
@@ -12034,12 +12072,16 @@ textarea.form-control-lg {
|
|
|
12034
12072
|
background-position: center;
|
|
12035
12073
|
}
|
|
12036
12074
|
|
|
12075
|
+
.adb-light {
|
|
12076
|
+
background-color: #e9ebee;
|
|
12077
|
+
}
|
|
12078
|
+
|
|
12037
12079
|
.bg-primary-dark {
|
|
12038
|
-
background-color:
|
|
12080
|
+
background-color: var(--adb-primary-dark);
|
|
12039
12081
|
}
|
|
12040
12082
|
|
|
12041
12083
|
.text-primary-dark {
|
|
12042
|
-
color:
|
|
12084
|
+
color: var(--adb-primary-dark);
|
|
12043
12085
|
}
|
|
12044
12086
|
|
|
12045
12087
|
section {
|
|
@@ -12060,8 +12102,8 @@ section {
|
|
|
12060
12102
|
left: 0;
|
|
12061
12103
|
z-index: 1001;
|
|
12062
12104
|
text-align: left;
|
|
12063
|
-
color:
|
|
12064
|
-
|
|
12105
|
+
background-color: var(--bs-body-bg);
|
|
12106
|
+
color: var(--bs-body-color);
|
|
12065
12107
|
border: 1px solid lightgray;
|
|
12066
12108
|
max-height: 70vh;
|
|
12067
12109
|
overflow-y: auto;
|
|
@@ -12072,7 +12114,7 @@ section {
|
|
|
12072
12114
|
outline: none;
|
|
12073
12115
|
}
|
|
12074
12116
|
.pop .pop-body .result-list a {
|
|
12075
|
-
color:
|
|
12117
|
+
color: var(--bs-body-color);
|
|
12076
12118
|
}
|
|
12077
12119
|
|
|
12078
12120
|
.sticky-sidebar {
|
|
@@ -12123,10 +12165,6 @@ pre {
|
|
|
12123
12165
|
display: block;
|
|
12124
12166
|
}
|
|
12125
12167
|
|
|
12126
|
-
.table th a {
|
|
12127
|
-
color: #333333;
|
|
12128
|
-
}
|
|
12129
|
-
|
|
12130
12168
|
@media (min-width: 768px) {
|
|
12131
12169
|
.depth-0 {
|
|
12132
12170
|
margin-left: 0rem;
|
|
@@ -12227,10 +12265,16 @@ pre {
|
|
|
12227
12265
|
overflow: hidden;
|
|
12228
12266
|
}
|
|
12229
12267
|
|
|
12268
|
+
.alert-primary {
|
|
12269
|
+
--bs-alert-color: var(--adb-primary-dark);
|
|
12270
|
+
--bs-alert-bg: var(--adb-primary-subtle);
|
|
12271
|
+
--bs-alert-border-color: color-mix(in srgb, var(--bs-primary) 35%, white);
|
|
12272
|
+
}
|
|
12273
|
+
|
|
12230
12274
|
.adb-plate-primary {
|
|
12231
|
-
background-color:
|
|
12232
|
-
color:
|
|
12233
|
-
border: 1px solid
|
|
12275
|
+
background-color: var(--bs-body-bg);
|
|
12276
|
+
color: var(--adb-plate-primary-color);
|
|
12277
|
+
border: 1px solid var(--bs-border-color);
|
|
12234
12278
|
padding: 1rem 1rem;
|
|
12235
12279
|
margin-bottom: 1rem;
|
|
12236
12280
|
min-height: 3rem;
|
|
@@ -12257,7 +12301,7 @@ pre {
|
|
|
12257
12301
|
color: white;
|
|
12258
12302
|
border-radius: 50%;
|
|
12259
12303
|
padding: 0.5rem;
|
|
12260
|
-
background-color:
|
|
12304
|
+
background-color: var(--adb-primary);
|
|
12261
12305
|
width: 2.4rem;
|
|
12262
12306
|
height: 2.4rem;
|
|
12263
12307
|
line-height: 2.4rem;
|
|
@@ -12907,4 +12951,81 @@ a.no-underline:hover {
|
|
|
12907
12951
|
text-decoration: underline;
|
|
12908
12952
|
}
|
|
12909
12953
|
|
|
12954
|
+
.theme-artportalen {
|
|
12955
|
+
--bs-primary: #4E6936;
|
|
12956
|
+
--bs-primary-rgb: 78, 105, 54;
|
|
12957
|
+
--bs-link-color: #4E6936;
|
|
12958
|
+
--bs-link-color-rgb: 78, 105, 54;
|
|
12959
|
+
--bs-link-hover-color: #3B5029;
|
|
12960
|
+
--bs-link-hover-color-rgb: 59, 80, 41;
|
|
12961
|
+
--adb-primary-dark: #3B5029;
|
|
12962
|
+
--adb-primary-dark-rgb: 59, 80, 41;
|
|
12963
|
+
--adb-primary-dark-border: #324424;
|
|
12964
|
+
--adb-primary-dark-border-rgb: 50, 68, 36;
|
|
12965
|
+
--adb-primary-dark-hover: #435C2F;
|
|
12966
|
+
--adb-primary-dark-hover-rgb: 67, 92, 47;
|
|
12967
|
+
--adb-primary-dark-hover-border: #394E28;
|
|
12968
|
+
--adb-primary-dark-hover-border-rgb: 57, 78, 40;
|
|
12969
|
+
--adb-primary-dark-color: #ffffff;
|
|
12970
|
+
--adb-primary-subtle: #E4EBD9;
|
|
12971
|
+
}
|
|
12972
|
+
|
|
12973
|
+
.theme-fynddata {
|
|
12974
|
+
--bs-primary: #307c5e;
|
|
12975
|
+
--bs-primary-rgb: 48, 124, 94;
|
|
12976
|
+
--bs-link-color: #307c5e;
|
|
12977
|
+
--bs-link-color-rgb: 48, 124, 94;
|
|
12978
|
+
--bs-link-hover-color: #273d34;
|
|
12979
|
+
--bs-link-hover-color-rgb: 39, 61, 52;
|
|
12980
|
+
--adb-primary-dark: #273D34;
|
|
12981
|
+
--adb-primary-dark-rgb: 39, 61, 52;
|
|
12982
|
+
--adb-primary-dark-border: #20332C;
|
|
12983
|
+
--adb-primary-dark-border-rgb: 32, 51, 44;
|
|
12984
|
+
--adb-primary-dark-hover: #314B41;
|
|
12985
|
+
--adb-primary-dark-hover-rgb: 49, 75, 65;
|
|
12986
|
+
--adb-primary-dark-hover-border: #2B4239;
|
|
12987
|
+
--adb-primary-dark-hover-border-rgb: 43, 66, 57;
|
|
12988
|
+
--adb-primary-dark-color: #ffffff;
|
|
12989
|
+
--adb-primary-subtle: #D8ECE5;
|
|
12990
|
+
}
|
|
12991
|
+
|
|
12992
|
+
.theme-slu {
|
|
12993
|
+
--bs-primary: #154734;
|
|
12994
|
+
--bs-primary-rgb: 21, 71, 52;
|
|
12995
|
+
--bs-link-color: #154734;
|
|
12996
|
+
--bs-link-color-rgb: 21, 71, 52;
|
|
12997
|
+
--adb-primary-dark: #123D2C;
|
|
12998
|
+
--adb-primary-dark-rgb: 18, 61, 44;
|
|
12999
|
+
--adb-primary-dark-border: #0F3425;
|
|
13000
|
+
--adb-primary-dark-border-rgb: 15, 52, 37;
|
|
13001
|
+
--adb-primary-dark-hover: #184C36;
|
|
13002
|
+
--adb-primary-dark-hover-rgb: 24, 76, 54;
|
|
13003
|
+
--adb-primary-dark-hover-border: #15422F;
|
|
13004
|
+
--adb-primary-dark-hover-border-rgb: 21, 66, 47;
|
|
13005
|
+
--adb-primary-dark-color: #ffffff;
|
|
13006
|
+
--adb-primary-subtle: #D9E7E1;
|
|
13007
|
+
}
|
|
13008
|
+
|
|
13009
|
+
[data-bs-theme=dark] {
|
|
13010
|
+
--adb-page-bg: var(--bs-body-bg);
|
|
13011
|
+
}
|
|
13012
|
+
|
|
13013
|
+
.theme-mk {
|
|
13014
|
+
--bs-primary: #5C6670;
|
|
13015
|
+
--bs-primary-rgb: 92, 102, 112;
|
|
13016
|
+
--adb-primary-dark: #434B53;
|
|
13017
|
+
--adb-primary-dark-rgb: 67, 75, 83;
|
|
13018
|
+
--adb-primary-dark-border: #394047;
|
|
13019
|
+
--adb-primary-dark-border-rgb: 57, 64, 71;
|
|
13020
|
+
--adb-primary-dark-hover: #505963;
|
|
13021
|
+
--adb-primary-dark-hover-rgb: 80, 89, 99;
|
|
13022
|
+
--adb-primary-dark-hover-border: #464E57;
|
|
13023
|
+
--adb-primary-dark-hover-border-rgb: 70, 78, 87;
|
|
13024
|
+
--adb-primary-dark-color: #ffffff;
|
|
13025
|
+
--adb-primary-subtle: #E3E6E9;
|
|
13026
|
+
}
|
|
13027
|
+
.theme-mk body {
|
|
13028
|
+
background-color: red !important;
|
|
13029
|
+
}
|
|
13030
|
+
|
|
12910
13031
|
/*# sourceMappingURL=designsystem-default.css.map */
|