@fkui/design 6.0.1 → 6.2.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.
- package/lib/fkui.css +64 -188
- package/lib/fkui.min.css +1 -1
- package/package.json +12 -6
- package/src/components/_all.scss +0 -1
- package/src/components/icon/_icon.scss +10 -9
- package/src/components/icon/_variables.scss +15 -0
- package/src/components/message-box/_message-box.scss +12 -11
- package/src/components/message-box/_variables.scss +10 -0
- package/src/components/modal/_modal.scss +17 -11
- package/src/components/modal/_variables.scss +7 -0
- package/src/components/table/_table.scss +5 -0
- package/src/internal-components/calendar-month/_month.scss +2 -1
- package/type-stub.d.ts +1 -0
- package/src/components/navbar/_navbar-header.scss +0 -77
- package/src/components/navbar/_navbar-nav.scss +0 -30
- package/src/components/navbar/_navbar.scss +0 -71
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/design",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"description": "fkui design",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -16,12 +16,18 @@
|
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"author": "Försäkringskassan",
|
|
19
|
+
"sideEffects": [
|
|
20
|
+
"./dist/**/*.css",
|
|
21
|
+
"./src/**/*.scss"
|
|
22
|
+
],
|
|
19
23
|
"main": "./lib/fkui.css",
|
|
20
24
|
"sass": "./src/fkui.scss",
|
|
25
|
+
"types": "type-stub.d.ts",
|
|
21
26
|
"files": [
|
|
22
27
|
"lib",
|
|
23
28
|
"src",
|
|
24
29
|
"stylelint",
|
|
30
|
+
"type-stub.d.ts",
|
|
25
31
|
"!**/*.spec.js"
|
|
26
32
|
],
|
|
27
33
|
"scripts": {
|
|
@@ -36,8 +42,8 @@
|
|
|
36
42
|
"runner": "jest-light-runner"
|
|
37
43
|
},
|
|
38
44
|
"devDependencies": {
|
|
39
|
-
"@fkui/icon-lib-default": "6.
|
|
40
|
-
"@fkui/theme-default": "6.
|
|
45
|
+
"@fkui/icon-lib-default": "6.2.0",
|
|
46
|
+
"@fkui/theme-default": "6.2.0",
|
|
41
47
|
"autoprefixer": "10.4.20",
|
|
42
48
|
"cssnano": "7.0.6",
|
|
43
49
|
"flush-promises": "1.0.2",
|
|
@@ -45,13 +51,13 @@
|
|
|
45
51
|
"jest-light-runner": "0.6.0",
|
|
46
52
|
"jest-preset-stylelint": "7.2.0",
|
|
47
53
|
"picocolors": "1.1.1",
|
|
48
|
-
"postcss": "8.5.
|
|
54
|
+
"postcss": "8.5.3",
|
|
49
55
|
"postcss-url": "10.1.3",
|
|
50
56
|
"postcss-var-func-fallback": "3.0.1",
|
|
51
57
|
"svgo": "3.3.2"
|
|
52
58
|
},
|
|
53
59
|
"peerDependencies": {
|
|
54
|
-
"@fkui/theme-default": "^6.
|
|
60
|
+
"@fkui/theme-default": "^6.2.0",
|
|
55
61
|
"sass": "^1.40.0",
|
|
56
62
|
"stylelint": ">= 14"
|
|
57
63
|
},
|
|
@@ -67,5 +73,5 @@
|
|
|
67
73
|
"node": ">= 20",
|
|
68
74
|
"npm": ">= 7"
|
|
69
75
|
},
|
|
70
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "b75730a2c2bee0c0fe8243d2de511b77c88dcbee"
|
|
71
77
|
}
|
package/src/components/_all.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "../../core/size";
|
|
2
2
|
@use "../../core/utils/functions" as *;
|
|
3
|
+
@use "variables" as *;
|
|
3
4
|
|
|
4
5
|
$ICON_SELECTOR: ".icon" !default;
|
|
5
6
|
|
|
@@ -86,8 +87,8 @@ $ICON_SELECTOR: ".icon" !default;
|
|
|
86
87
|
|
|
87
88
|
&--tooltip {
|
|
88
89
|
.f-icon-circle {
|
|
89
|
-
color: var(--f-icon-color-info);
|
|
90
90
|
fill: var(--f-icon-color-info);
|
|
91
|
+
color: var(--f-icon-color-info);
|
|
91
92
|
}
|
|
92
93
|
|
|
93
94
|
.f-icon-i {
|
|
@@ -97,29 +98,29 @@ $ICON_SELECTOR: ".icon" !default;
|
|
|
97
98
|
|
|
98
99
|
&--info {
|
|
99
100
|
.f-icon-circle {
|
|
100
|
-
color:
|
|
101
|
-
fill:
|
|
101
|
+
color: $icon-info-color-background;
|
|
102
|
+
fill: $icon-info-color-border;
|
|
102
103
|
}
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
&--warning {
|
|
106
107
|
.f-icon-circle {
|
|
107
|
-
color:
|
|
108
|
-
fill:
|
|
108
|
+
color: $icon-warning-color-background;
|
|
109
|
+
fill: $icon-warning-color-border;
|
|
109
110
|
}
|
|
110
111
|
}
|
|
111
112
|
|
|
112
113
|
&--error {
|
|
113
114
|
.f-icon-triangle {
|
|
114
|
-
color:
|
|
115
|
-
fill:
|
|
115
|
+
color: $icon-error-color-background;
|
|
116
|
+
fill: $icon-error-color-border;
|
|
116
117
|
}
|
|
117
118
|
}
|
|
118
119
|
|
|
119
120
|
&--success {
|
|
120
121
|
.f-icon-circle {
|
|
121
|
-
color:
|
|
122
|
-
fill:
|
|
122
|
+
color: $icon-success-color-background;
|
|
123
|
+
fill: $icon-success-color-border;
|
|
123
124
|
}
|
|
124
125
|
.f-icon-success {
|
|
125
126
|
transform: scale(0.6);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// INFO
|
|
2
|
+
$icon-info-color-border: var(--fkds-icon-color-feedback-border-info);
|
|
3
|
+
$icon-info-color-background: var(--fkds-icon-color-feedback-background-info);
|
|
4
|
+
|
|
5
|
+
// WARNING
|
|
6
|
+
$icon-warning-color-border: var(--fkds-icon-color-feedback-border-warning);
|
|
7
|
+
$icon-warning-color-background: var(--fkds-icon-color-feedback-background-warning);
|
|
8
|
+
|
|
9
|
+
// ERROR
|
|
10
|
+
$icon-error-color-border: var(--fkds-icon-color-feedback-border-negative);
|
|
11
|
+
$icon-error-color-background: var(--fkds-icon-color-feedback-background-negative);
|
|
12
|
+
|
|
13
|
+
// SUCCESS
|
|
14
|
+
$icon-success-color-border: var(--fkds-icon-color-feedback-border-positive);
|
|
15
|
+
$icon-success-color-background: var(--fkds-icon-color-feedback-background-positive);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../core/size";
|
|
2
2
|
@use "../../core/mixins/breakpoints";
|
|
3
3
|
@use "../../core/utils/functions" as *;
|
|
4
|
+
@use "variables" as *;
|
|
4
5
|
|
|
5
6
|
$MESSAGE_BOX_SELECTOR: ".message-box" !default;
|
|
6
7
|
|
|
@@ -28,7 +29,7 @@ $MESSAGE_BOX_SELECTOR: ".message-box" !default;
|
|
|
28
29
|
transform: translateY(-0.05rem);
|
|
29
30
|
}
|
|
30
31
|
&__banner {
|
|
31
|
-
fill:
|
|
32
|
+
fill: $messagebox-error-icon-error-color-border;
|
|
32
33
|
color: white;
|
|
33
34
|
}
|
|
34
35
|
}
|
|
@@ -52,7 +53,7 @@ $MESSAGE_BOX_SELECTOR: ".message-box" !default;
|
|
|
52
53
|
border-collapse: separate;
|
|
53
54
|
padding: densify(size.$padding-100) size.$padding-100;
|
|
54
55
|
|
|
55
|
-
@include make-box-variant($selector,
|
|
56
|
+
@include make-box-variant($selector, $messagebox-error-color-background, $messagebox-error-color-border, $short-layout);
|
|
56
57
|
|
|
57
58
|
.iflex__item > p {
|
|
58
59
|
margin-bottom: 0;
|
|
@@ -66,7 +67,7 @@ $MESSAGE_BOX_SELECTOR: ".message-box" !default;
|
|
|
66
67
|
&__heading {
|
|
67
68
|
font-size: var(--f-font-size-h3);
|
|
68
69
|
font-weight: var(--f-font-weight-medium);
|
|
69
|
-
color:
|
|
70
|
+
color: $messagebox-info-color-heading;
|
|
70
71
|
line-height: var(--f-line-height-medium);
|
|
71
72
|
align-items: flex-start;
|
|
72
73
|
margin-bottom: densify(size.$margin-050);
|
|
@@ -78,35 +79,35 @@ $MESSAGE_BOX_SELECTOR: ".message-box" !default;
|
|
|
78
79
|
}
|
|
79
80
|
|
|
80
81
|
&--info {
|
|
81
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
82
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-info-color-background, $messagebox-info-color-border);
|
|
82
83
|
}
|
|
83
84
|
|
|
84
85
|
&--info-short {
|
|
85
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
86
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-info-color-background, $messagebox-info-color-border, $short-layout: true);
|
|
86
87
|
}
|
|
87
88
|
|
|
88
89
|
&--error {
|
|
89
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
90
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-error-color-background, $messagebox-error-color-border);
|
|
90
91
|
}
|
|
91
92
|
|
|
92
93
|
&--error-short {
|
|
93
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
94
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-error-color-background, $messagebox-error-color-border, $short-layout: true);
|
|
94
95
|
}
|
|
95
96
|
|
|
96
97
|
&--warning {
|
|
97
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
98
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-warning-color-background, $messagebox-warning-color-border);
|
|
98
99
|
}
|
|
99
100
|
|
|
100
101
|
&--warning-short {
|
|
101
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
102
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-warning-color-background, $messagebox-warning-color-border, $short-layout: true);
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
&--success {
|
|
105
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
106
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-success-color-background, $messagebox-success-color-border);
|
|
106
107
|
}
|
|
107
108
|
|
|
108
109
|
&--success-short {
|
|
109
|
-
@include make-box-variant($MESSAGE_BOX_SELECTOR,
|
|
110
|
+
@include make-box-variant($MESSAGE_BOX_SELECTOR, $messagebox-success-color-background, $messagebox-success-color-border, $short-layout: true);
|
|
110
111
|
}
|
|
111
112
|
|
|
112
113
|
&--banner {
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
$messagebox-info-color-background: var(--fkds-color-feedback-background-info);
|
|
2
|
+
$messagebox-info-color-border: var(--fkds-color-feedback-border-info);
|
|
3
|
+
$messagebox-error-color-background: var(--fkds-color-feedback-background-negative);
|
|
4
|
+
$messagebox-error-color-border: var(--fkds-color-feedback-border-negative);
|
|
5
|
+
$messagebox-warning-color-background: var(--fkds-color-feedback-background-warning);
|
|
6
|
+
$messagebox-warning-color-border: var(--fkds-color-feedback-border-warning);
|
|
7
|
+
$messagebox-success-color-background: var(--fkds-color-feedback-background-positive);
|
|
8
|
+
$messagebox-success-color-border: var(--fkds-color-feedback-border-positive);
|
|
9
|
+
$messagebox-info-color-heading: var(--fkds-color-text-primary);
|
|
10
|
+
$messagebox-error-icon-error-color-border: var(--fkds-icon-color-feedback-content-negative);
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../../core/size";
|
|
3
3
|
@use "../z-index";
|
|
4
4
|
@use "../../core/mixins/breakpoints";
|
|
5
|
+
@use "variables" as *;
|
|
5
6
|
|
|
6
7
|
$MODAL_SELECTOR: ".modal" !default;
|
|
7
8
|
$modal-sizes: (
|
|
@@ -42,7 +43,7 @@ $modal-width: calc(100vw - 40px) !default; // 100% - 20px each side;
|
|
|
42
43
|
&__shelf {
|
|
43
44
|
justify-content: flex-end;
|
|
44
45
|
display: flex;
|
|
45
|
-
background-color:
|
|
46
|
+
background-color: $modal-shelf-color-background;
|
|
46
47
|
border-top-left-radius: var(--f-border-radius-medium);
|
|
47
48
|
border-top-right-radius: var(--f-border-radius-medium);
|
|
48
49
|
margin-bottom: size.$margin-100;
|
|
@@ -58,7 +59,7 @@ $modal-width: calc(100vw - 40px) !default; // 100% - 20px each side;
|
|
|
58
59
|
font-size: var(--f-modal-title-font-size);
|
|
59
60
|
margin-bottom: 0;
|
|
60
61
|
margin-top: 0;
|
|
61
|
-
color:
|
|
62
|
+
color: $modal-text-color-default;
|
|
62
63
|
}
|
|
63
64
|
}
|
|
64
65
|
|
|
@@ -103,7 +104,8 @@ $modal-width: calc(100vw - 40px) !default; // 100% - 20px each side;
|
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
&__dialog {
|
|
106
|
-
background:
|
|
107
|
+
background: $modal-color-background;
|
|
108
|
+
outline: 2px solid transparent; // forced-colors
|
|
107
109
|
border-radius: var(--f-border-radius-medium);
|
|
108
110
|
display: flex;
|
|
109
111
|
flex-direction: column-reverse;
|
|
@@ -151,17 +153,21 @@ $modal-width: calc(100vw - 40px) !default; // 100% - 20px each side;
|
|
|
151
153
|
}
|
|
152
154
|
}
|
|
153
155
|
|
|
154
|
-
&--information {
|
|
155
|
-
|
|
156
|
-
|
|
156
|
+
&--information #{$MODAL_SELECTOR}__shelf {
|
|
157
|
+
background-color: $modal-shelf-info-color-background;
|
|
158
|
+
.close-button {
|
|
159
|
+
color: $modal-color-closebutton-text-inverted;
|
|
160
|
+
}
|
|
157
161
|
}
|
|
158
162
|
|
|
159
|
-
&--warning {
|
|
160
|
-
|
|
163
|
+
&--warning #{$MODAL_SELECTOR}__shelf {
|
|
164
|
+
background-color: $modal-shelf-warning-color-background;
|
|
161
165
|
}
|
|
162
166
|
|
|
163
|
-
&--error {
|
|
164
|
-
|
|
165
|
-
|
|
167
|
+
&--error #{$MODAL_SELECTOR}__shelf {
|
|
168
|
+
background-color: $modal-shelf-error-color-background;
|
|
169
|
+
.close-button {
|
|
170
|
+
color: $modal-color-closebutton-text-inverted;
|
|
171
|
+
}
|
|
166
172
|
}
|
|
167
173
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
$modal-shelf-color-background: var(--fkds-color-background-primary);
|
|
2
|
+
$modal-shelf-info-color-background: var(--fkds-color-feedback-background-info-strong);
|
|
3
|
+
$modal-shelf-warning-color-background: var(--fkds-color-feedback-background-warning-strong);
|
|
4
|
+
$modal-shelf-error-color-background: var(--fkds-color-feedback-background-negative-strong);
|
|
5
|
+
$modal-color-background: var(--fkds-color-background-primary);
|
|
6
|
+
$modal-color-closebutton-text-inverted: var(--fkds-color-action-text-inverted-default);
|
|
7
|
+
$modal-text-color-default: var(--fkds-color-text-primary);
|
|
@@ -261,6 +261,11 @@ $table-input-offset-horizontal: 0.25rem;
|
|
|
261
261
|
@extend %table-monospace;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
// only tbody rows should have nowrap, thead should still be the same
|
|
265
|
+
&--action {
|
|
266
|
+
white-space: nowrap;
|
|
267
|
+
}
|
|
268
|
+
|
|
264
269
|
&--selectable {
|
|
265
270
|
padding: densify(0.2rem) 0.2rem;
|
|
266
271
|
}
|
package/type-stub.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
@use "../../core/size";
|
|
2
|
-
@use "../../core/config-variables" as config;
|
|
3
|
-
@use "../../core/mixins/breakpoints" as bp;
|
|
4
|
-
|
|
5
|
-
$navbar-header-separator-width: 2px !default;
|
|
6
|
-
|
|
7
|
-
.navbar__header {
|
|
8
|
-
color: var(--f-text-color-pageheader);
|
|
9
|
-
background-color: var(--f-background-pageheader-standard);
|
|
10
|
-
padding: size.$padding-025;
|
|
11
|
-
height: calc(4 * size.$padding-125);
|
|
12
|
-
display: flex;
|
|
13
|
-
|
|
14
|
-
&-logo,
|
|
15
|
-
&-logo--small {
|
|
16
|
-
min-width: size.$padding-125;
|
|
17
|
-
justify-content: flex-start;
|
|
18
|
-
margin: size.$margin-075 size.$margin-175;
|
|
19
|
-
background-repeat: no-repeat;
|
|
20
|
-
background-size: contain;
|
|
21
|
-
background-position: center;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&-logo {
|
|
25
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-primary.svg");
|
|
26
|
-
flex-grow: 0.3;
|
|
27
|
-
|
|
28
|
-
@include bp.breakpoint-down(lg) {
|
|
29
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-small.svg");
|
|
30
|
-
flex-grow: 0.03;
|
|
31
|
-
min-width: size.$padding-175;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&--small {
|
|
35
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-small.svg");
|
|
36
|
-
flex-grow: 0.03;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
&-logo,
|
|
41
|
-
&-start,
|
|
42
|
-
&-end {
|
|
43
|
-
display: flex;
|
|
44
|
-
align-items: center;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
&-start {
|
|
48
|
-
justify-content: flex-start;
|
|
49
|
-
flex-grow: 0;
|
|
50
|
-
|
|
51
|
-
&::before {
|
|
52
|
-
content: " ";
|
|
53
|
-
background-color: var(--f-border-color-separator-pageheader-standard);
|
|
54
|
-
position: relative;
|
|
55
|
-
height: 80%;
|
|
56
|
-
width: $navbar-header-separator-width;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
&-end {
|
|
61
|
-
justify-content: flex-end;
|
|
62
|
-
flex-grow: 1;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
&-item {
|
|
66
|
-
padding: size.$padding-075 size.$padding-175;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
&-app-name {
|
|
70
|
-
margin: 0;
|
|
71
|
-
font-size: var(--f-font-size-h4);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
&--separator {
|
|
75
|
-
border-bottom: $navbar-header-separator-width solid var(--f-border-color-separator-pageheader-standard);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
@use "../../core/size";
|
|
2
|
-
|
|
3
|
-
$navbar-item-border-bottom-width: 2px !default;
|
|
4
|
-
|
|
5
|
-
.navbar__nav {
|
|
6
|
-
color: var(--f-text-color-navbar);
|
|
7
|
-
background-color: var(--f-background-navbar);
|
|
8
|
-
display: flex;
|
|
9
|
-
align-items: center;
|
|
10
|
-
|
|
11
|
-
&-item {
|
|
12
|
-
height: inherit;
|
|
13
|
-
padding: 0 size.$padding-200 size.$padding-025;
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
display: flex;
|
|
16
|
-
align-items: center;
|
|
17
|
-
|
|
18
|
-
&:hover {
|
|
19
|
-
background-color: var(--f-background-navbar-hover);
|
|
20
|
-
border-bottom: $navbar-item-border-bottom-width solid var(--f-border-color-navbar-hover);
|
|
21
|
-
color: var(--f-text-color-navbar-active);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&--active {
|
|
25
|
-
border-bottom: $navbar-item-border-bottom-width solid var(--f-border-color-navbar-active);
|
|
26
|
-
color: var(--f-text-color-navbar-active);
|
|
27
|
-
font-weight: bold;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
@use "../../core/size";
|
|
2
|
-
@use "../../core/config-variables" as config;
|
|
3
|
-
@use "../../core/mixins/breakpoints" as bp;
|
|
4
|
-
|
|
5
|
-
@use "navbar-header";
|
|
6
|
-
@use "navbar-nav";
|
|
7
|
-
|
|
8
|
-
$NAVBAR_SELECTOR: ".navbar" !default;
|
|
9
|
-
|
|
10
|
-
#{$NAVBAR_SELECTOR} {
|
|
11
|
-
&--primary {
|
|
12
|
-
.navbar__header {
|
|
13
|
-
color: var(--f-text-color-default-inverted);
|
|
14
|
-
background-color: var(--f-background-pageheader-primary);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.navbar__header-app-name {
|
|
18
|
-
color: var(--f-text-color-default-inverted);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.navbar__header-logo {
|
|
22
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-default.svg");
|
|
23
|
-
|
|
24
|
-
@include bp.breakpoint-down(lg) {
|
|
25
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-small.svg");
|
|
26
|
-
flex-grow: 0.03;
|
|
27
|
-
min-width: size.$padding-175;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.navbar__header-logo--small {
|
|
32
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-small.svg");
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.navbar__header-start::before {
|
|
36
|
-
background-color: var(--f-border-color-separator-pageheader-primary);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.navbar__header--separator {
|
|
40
|
-
border-color: var(--f-border-color-separator-pageheader-primary);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
&--secondary {
|
|
45
|
-
.navbar__header {
|
|
46
|
-
background-color: var(--f-background-pageheader-secondary);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.navbar__header-logo {
|
|
50
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-primary.svg");
|
|
51
|
-
|
|
52
|
-
@include bp.breakpoint-down(lg) {
|
|
53
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-small.svg");
|
|
54
|
-
flex-grow: 0.03;
|
|
55
|
-
min-width: size.$padding-175;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.navbar__header-logo--small {
|
|
60
|
-
background-image: url("#{config.$asset-path-images}/fk-logo-small.svg");
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.navbar__header-start::before {
|
|
64
|
-
background-color: var(--f-border-color-separator-pageheader-secondary);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.navbar__header--separator {
|
|
68
|
-
border-color: var(--f-border-color-separator-pageheader-secondary);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|