@beterdichtbij/component-library 0.42.0 → 0.42.2
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/bd-component-lib.cjs.js +24 -24
- package/dist/bd-component-lib.es.js +468 -458
- package/dist/bd-component-lib.umd.js +23 -23
- package/dist/directives/BDTooltip.d.ts +2 -0
- package/dist/scss/_header.scss +7 -5
- package/dist/scss/_modal.scss +15 -7
- package/dist/scss/base/variables.scss +2 -1
- package/dist/types/ButtonColorVariants.d.ts +1 -0
- package/package.json +1 -1
package/dist/scss/_header.scss
CHANGED
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
text-decoration: none;
|
|
60
60
|
margin: 0px 4px;
|
|
61
61
|
|
|
62
|
-
&.router-link-exact-active {
|
|
62
|
+
&.router-link-exact-active, &:hover {
|
|
63
63
|
background-color: #f1f2f4;
|
|
64
64
|
}
|
|
65
65
|
}
|
|
@@ -131,6 +131,12 @@
|
|
|
131
131
|
display: flex;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
+
.bd-btn-settings, .btn-header {
|
|
135
|
+
display: none !important;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@media (max-width: 890px) {
|
|
134
140
|
.logo-mix .logo {
|
|
135
141
|
height: 20px;
|
|
136
142
|
|
|
@@ -138,10 +144,6 @@
|
|
|
138
144
|
margin-left: 16px;
|
|
139
145
|
}
|
|
140
146
|
}
|
|
141
|
-
|
|
142
|
-
.bd-btn-settings, .btn-header {
|
|
143
|
-
display: none !important;
|
|
144
|
-
}
|
|
145
147
|
}
|
|
146
148
|
|
|
147
149
|
@media (max-width: 400px) {
|
package/dist/scss/_modal.scss
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
display: flex;
|
|
10
10
|
align-items: center;
|
|
11
11
|
justify-content: space-between;
|
|
12
|
+
// Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
|
|
13
|
+
border-radius: inherit;
|
|
12
14
|
|
|
13
15
|
button.btn-close {
|
|
14
16
|
top: 20px;
|
|
@@ -29,17 +31,18 @@
|
|
|
29
31
|
background-color: $blue-text;
|
|
30
32
|
display: inline-block;
|
|
31
33
|
padding: 4px;
|
|
32
|
-
border-radius: 50%;
|
|
34
|
+
border-radius: 50%;
|
|
33
35
|
|
|
34
36
|
path {
|
|
35
|
-
|
|
37
|
+
fill: $color-white;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
&:hover {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
background-color: $color-lightblue;
|
|
42
|
+
|
|
43
|
+
path {
|
|
44
|
+
fill: $blue-text;
|
|
45
|
+
}
|
|
43
46
|
}
|
|
44
47
|
}
|
|
45
48
|
}
|
|
@@ -73,10 +76,13 @@
|
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
.modal-body {
|
|
79
|
+
border: 0px;
|
|
80
|
+
// Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
|
|
81
|
+
border-radius: inherit;
|
|
82
|
+
|
|
76
83
|
@include media-breakpoint-up(md) {
|
|
77
84
|
padding: 15px 65px 30px 65px;
|
|
78
85
|
}
|
|
79
|
-
border: 0px;
|
|
80
86
|
|
|
81
87
|
p:last-of-type {
|
|
82
88
|
margin-bottom: 0;
|
|
@@ -91,6 +97,8 @@
|
|
|
91
97
|
|
|
92
98
|
.modal-footer {
|
|
93
99
|
justify-content: flex-start;
|
|
100
|
+
// Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
|
|
101
|
+
border-radius: inherit;
|
|
94
102
|
|
|
95
103
|
button {
|
|
96
104
|
margin: 0 2px;
|