@swisspost/design-system-styles 5.1.2 → 5.1.3
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/components/datepicker.scss +4 -7
- package/components/intranet-header/_scaffolding.scss +0 -4
- package/components/intranet-header/_sidebar.scss +1 -1
- package/components/list-group.scss +3 -6
- package/components/toast.scss +12 -13
- package/index.css +2 -2
- package/intranet.css +2 -2
- package/package.json +9 -29
- package/variables/components/_form-check.scss +3 -12
|
@@ -14,13 +14,6 @@ ngb-datepicker.dropdown-menu {
|
|
|
14
14
|
box-shadow: 0 0 8px 0 color.$gray-80;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
.ngb-dp-weekday {
|
|
18
|
-
color: rgba(var(--post-contrast-color-rgb), 0.6) !important;
|
|
19
|
-
font-size: 1rem;
|
|
20
|
-
font-style: normal !important;
|
|
21
|
-
line-height: 1.47 !important;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
17
|
ngb-datepicker-navigation {
|
|
25
18
|
justify-content: space-between;
|
|
26
19
|
}
|
|
@@ -77,6 +70,10 @@ span.ngb-dp-navigation-chevron {
|
|
|
77
70
|
}
|
|
78
71
|
|
|
79
72
|
.ngb-dp-weekday {
|
|
73
|
+
color: rgba(var(--post-contrast-color-rgb), 0.6) !important;
|
|
74
|
+
font-size: 1rem;
|
|
75
|
+
font-style: normal !important;
|
|
76
|
+
line-height: 1.47 !important;
|
|
80
77
|
width: 40px !important;
|
|
81
78
|
height: auto !important;
|
|
82
79
|
font-weight: normal;
|
|
@@ -25,9 +25,7 @@
|
|
|
25
25
|
.nav-down {
|
|
26
26
|
width: 100%;
|
|
27
27
|
}
|
|
28
|
-
}
|
|
29
28
|
|
|
30
|
-
.navbar {
|
|
31
29
|
.container,
|
|
32
30
|
.container-fluid,
|
|
33
31
|
.container-xs {
|
|
@@ -65,9 +63,7 @@
|
|
|
65
63
|
flex: 0 0 auto;
|
|
66
64
|
flex-direction: column;
|
|
67
65
|
}
|
|
68
|
-
}
|
|
69
66
|
|
|
70
|
-
.layout-container {
|
|
71
67
|
@include media-breakpoint-down(rg) {
|
|
72
68
|
&.header-big {
|
|
73
69
|
.header-margin {
|
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
background-color: transparent;
|
|
73
73
|
font-weight: normal;
|
|
74
74
|
text-decoration: none;
|
|
75
|
+
border-collapse: collapse;
|
|
76
|
+
border-right: 0;
|
|
77
|
+
border-left: 0;
|
|
75
78
|
|
|
76
79
|
@include media-breakpoint-up(rg) {
|
|
77
80
|
padding-left: map.get(spacing.$post-sizes, 'large');
|
|
@@ -145,12 +148,6 @@
|
|
|
145
148
|
color: rgba(var(--post-contrast-color-inverted-rgb), 0.8);
|
|
146
149
|
}
|
|
147
150
|
}
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.list-group-item {
|
|
151
|
-
border-collapse: collapse;
|
|
152
|
-
border-right: 0;
|
|
153
|
-
border-left: 0;
|
|
154
151
|
|
|
155
152
|
.list-group &:last-child {
|
|
156
153
|
border-bottom: 0;
|
package/components/toast.scss
CHANGED
|
@@ -112,6 +112,18 @@
|
|
|
112
112
|
|
|
113
113
|
padding: alert.$alert-toast-padding-y alert.$alert-toast-padding-x;
|
|
114
114
|
}
|
|
115
|
+
|
|
116
|
+
.toast-close-button,
|
|
117
|
+
.btn-close {
|
|
118
|
+
~ .toast-message,
|
|
119
|
+
~ .toast-title {
|
|
120
|
+
padding-right: calc(#{alert.$alert-toast-padding-x} + #{alert.$alert-close-icon-size});
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
+ .toast-message {
|
|
124
|
+
font-weight: bold;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
115
127
|
}
|
|
116
128
|
|
|
117
129
|
.toast-title {
|
|
@@ -135,19 +147,6 @@
|
|
|
135
147
|
}
|
|
136
148
|
/* stylelint-enable */
|
|
137
149
|
|
|
138
|
-
.toast {
|
|
139
|
-
.toast-close-button,
|
|
140
|
-
.btn-close {
|
|
141
|
-
~ .toast-message,
|
|
142
|
-
~ .toast-title {
|
|
143
|
-
padding-right: calc(#{alert.$alert-toast-padding-x} + #{alert.$alert-close-icon-size});
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
+ .toast-message {
|
|
147
|
-
font-weight: bold;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
150
|
|
|
152
151
|
// Variants
|
|
153
152
|
|