bootstrap-italia 2.2.0 → 2.3.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/README.EN.md +1 -1
- package/README.md +1 -1
- package/dist/css/bootstrap-italia-comuni.min.css +1 -1
- package/dist/css/bootstrap-italia.min.css +1 -1
- package/dist/css/bootstrap-italia.min.css.map +1 -1
- package/dist/js/bootstrap-italia.bundle.min.js +253 -189
- package/dist/js/bootstrap-italia.min.js +256 -0
- package/dist/plugins/input-label.js +4 -1
- package/dist/plugins/input-label.js.map +1 -1
- package/dist/plugins/notification.js +1 -23
- package/dist/plugins/notification.js.map +1 -1
- package/dist/plugins/progress-donut.js +2 -2
- package/dist/plugins/progress-donut.js.map +1 -1
- package/dist/plugins/tab.js +82 -1
- package/dist/plugins/tab.js.map +1 -1
- package/dist/svg/sprites.svg +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +6 -4
- package/src/js/bootstrap-italia.entry.js +14 -1
- package/src/js/icons.js +2 -0
- package/src/js/plugins/input-label.js +4 -1
- package/src/js/plugins/notification.js +1 -32
- package/src/js/plugins/progress-donut.js +2 -2
- package/src/js/plugins/tab.js +82 -1
- package/src/js/version.js +1 -1
- package/src/scss/_variables.scss +66 -57
- package/src/scss/bootstrap-italia-comuni.scss +40 -39
- package/src/scss/bootstrap-italia.scss +39 -38
- package/src/scss/custom/_accordion.scss +5 -5
- package/src/scss/custom/_alert.scss +3 -3
- package/src/scss/custom/_autocomplete.scss +2 -2
- package/src/scss/custom/_avatar.scss +5 -5
- package/src/scss/custom/_back-to-top.scss +2 -2
- package/src/scss/custom/_bottomnav.scss +2 -2
- package/src/scss/custom/_breadcrumb.scss +2 -0
- package/src/scss/custom/_buttons.scss +13 -8
- package/src/scss/custom/_calendar.scss +2 -2
- package/src/scss/custom/_callout.scss +25 -25
- package/src/scss/custom/_card.scss +1 -1
- package/src/scss/custom/_carousel.scss +3 -4
- package/src/scss/custom/_chips.scss +4 -4
- package/src/scss/custom/_cookiebar.scss +1 -1
- package/src/scss/custom/_dimmer.scss +5 -5
- package/src/scss/custom/_dropdown.scss +6 -6
- package/src/scss/custom/_footer.scss +2 -2
- package/src/scss/custom/_form-datepicker.scss +2 -6
- package/src/scss/custom/_form-input-file.scss +2 -2
- package/src/scss/custom/_form-input-number.scss +13 -13
- package/src/scss/custom/_form-password.scss +1 -1
- package/src/scss/custom/_form-select.scss +3 -3
- package/src/scss/custom/_forms.scss +19 -17
- package/src/scss/custom/_just-validate.scss +7 -0
- package/src/scss/custom/_linklist.scss +13 -13
- package/src/scss/custom/_list.scss +5 -5
- package/src/scss/custom/_masonry-loader.scss +1 -1
- package/src/scss/custom/_megamenu.scss +12 -12
- package/src/scss/custom/_modal.scss +1 -1
- package/src/scss/custom/_notifications.scss +6 -6
- package/src/scss/custom/_point-list.scss +0 -2
- package/src/scss/custom/_popover.scss +2 -2
- package/src/scss/custom/_progress-bars.scss +3 -4
- package/src/scss/custom/_progress-donuts.scss +3 -3
- package/src/scss/custom/_progress-spinners.scss +4 -4
- package/src/scss/custom/_sections.scss +3 -2
- package/src/scss/custom/_sidebar.scss +2 -2
- package/src/scss/custom/_steppers.scss +82 -57
- package/src/scss/custom/_tab.scss +23 -19
- package/src/scss/custom/_timeline.scss +9 -11
- package/src/scss/custom/_toolbar.scss +12 -12
- package/src/scss/custom/_tooltip.scss +1 -1
- package/src/scss/custom/_version.scss +1 -1
- package/src/scss/utilities/colors_vars.scss +64 -28
- package/src/svg/it-mastodon-square.svg +3 -0
- package/src/svg/it-mastodon.svg +3 -0
- package/types/index.d.ts +80 -0
- package/types/plugins/accordion.d.ts +39 -0
- package/types/plugins/alert.d.ts +20 -0
- package/types/plugins/backToTop.d.ts +77 -0
- package/types/plugins/button.d.ts +17 -0
- package/types/plugins/carousel-bi.d.ts +59 -0
- package/types/plugins/carousel.d.ts +19 -0
- package/types/plugins/collapse.d.ts +19 -0
- package/types/plugins/cookiebar.d.ts +59 -0
- package/types/plugins/dimmer.d.ts +34 -0
- package/types/plugins/dropdown.d.ts +20 -0
- package/types/plugins/form-validate.d.ts +53 -0
- package/types/plugins/form.d.ts +30 -0
- package/types/plugins/forward.d.ts +49 -0
- package/types/plugins/header-sticky.d.ts +24 -0
- package/types/plugins/history-back.d.ts +24 -0
- package/types/plugins/input-label.d.ts +25 -0
- package/types/plugins/input-number.d.ts +35 -0
- package/types/plugins/input-password.d.ts +128 -0
- package/types/plugins/input-search-autocomplete.d.ts +54 -0
- package/types/plugins/input.d.ts +26 -0
- package/types/plugins/list.d.ts +25 -0
- package/types/plugins/masonry.d.ts +59 -0
- package/types/plugins/modal.d.ts +20 -0
- package/types/plugins/navbar-collapsible.d.ts +77 -0
- package/types/plugins/navscroll.d.ts +85 -0
- package/types/plugins/notification.d.ts +92 -0
- package/types/plugins/offcanvas.d.ts +19 -0
- package/types/plugins/popover.d.ts +19 -0
- package/types/plugins/progress-donut.d.ts +89 -0
- package/types/plugins/scrollspy.d.ts +19 -0
- package/types/plugins/select-autocomplete.d.ts +57 -0
- package/types/plugins/sticky.d.ts +97 -0
- package/types/plugins/tab.d.ts +17 -0
- package/types/plugins/toast.d.ts +19 -0
- package/types/plugins/tooltip.d.ts +19 -0
- package/types/plugins/track-focus.d.ts +7 -0
- package/types/plugins/transfer.d.ts +52 -0
- package/types/plugins/upload-dragdrop.d.ts +44 -0
- package/types/decs.d.ts +0 -1
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
position: relative;
|
|
4
4
|
padding: $alert-padding-y $alert-padding-x;
|
|
5
5
|
margin-bottom: $alert-margin-bottom;
|
|
6
|
-
border: 1px solid $
|
|
6
|
+
border: 1px solid $color-border-secondary;
|
|
7
7
|
padding-left: 4em;
|
|
8
8
|
background-color: transparent;
|
|
9
9
|
border-radius: 0;
|
|
10
|
-
color: $
|
|
10
|
+
color: $color-text-base; // UI kit
|
|
11
11
|
.alert-link {
|
|
12
12
|
color: $link-color;
|
|
13
13
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
// Headings for larger alerts
|
|
17
17
|
.alert-heading {
|
|
18
18
|
// Specified to prevent conflicts of changing $headings-color
|
|
19
|
-
color: $
|
|
19
|
+
color: $color-text-base; // UI kit
|
|
20
20
|
line-height: 1;
|
|
21
21
|
}
|
|
22
22
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
padding: 0.375rem $v-gap * 6 0.375rem $v-gap * 3;
|
|
6
6
|
|
|
7
7
|
&::placeholder {
|
|
8
|
-
color: $
|
|
8
|
+
color: $color-text-muted; // UI kit
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
&:disabled {
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
font-style: normal;
|
|
109
109
|
text-transform: uppercase;
|
|
110
110
|
font-size: 0.75rem;
|
|
111
|
-
color: $
|
|
111
|
+
color: $color-text-secondary; // UI kit
|
|
112
112
|
font-weight: 600;
|
|
113
113
|
letter-spacing: 0.1em;
|
|
114
114
|
display: block;
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
height: $avatar-base-size * 4; // default size equals to md
|
|
9
9
|
justify-content: center;
|
|
10
10
|
align-items: center;
|
|
11
|
-
background: $
|
|
12
|
-
color: $
|
|
11
|
+
background: $color-background-secondary-lighter; // UI kit
|
|
12
|
+
color: $color-text-secondary; // UI kit
|
|
13
13
|
box-sizing: content-box;
|
|
14
14
|
transition: background-color 0.2s;
|
|
15
15
|
// image
|
|
@@ -236,7 +236,7 @@ a.avatar {
|
|
|
236
236
|
img {
|
|
237
237
|
filter: brightness(90%);
|
|
238
238
|
}
|
|
239
|
-
background: shade-color($
|
|
239
|
+
background: shade-color($color-background-secondary-lighter, 5%);
|
|
240
240
|
&.avatar-primary {
|
|
241
241
|
background: shade-color($primary, 5%);
|
|
242
242
|
}
|
|
@@ -257,7 +257,7 @@ a.avatar {
|
|
|
257
257
|
.avatar-dropdown {
|
|
258
258
|
&:hover,
|
|
259
259
|
&:focus-within {
|
|
260
|
-
background: shade-color($
|
|
260
|
+
background: shade-color($color-background-secondary-lighter, 5%);
|
|
261
261
|
}
|
|
262
262
|
.btn-dropdown:focus {
|
|
263
263
|
box-shadow: none;
|
|
@@ -276,7 +276,7 @@ a.avatar {
|
|
|
276
276
|
width: 10px;
|
|
277
277
|
height: 10px;
|
|
278
278
|
border: 2px solid $white;
|
|
279
|
-
background: $
|
|
279
|
+
background: $color-background-secondary-lighter;
|
|
280
280
|
color: $white;
|
|
281
281
|
border-radius: 50%;
|
|
282
282
|
display: flex;
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
&.dark {
|
|
51
51
|
background: #fff;
|
|
52
52
|
&:hover {
|
|
53
|
-
background: $neutral-1-a1;
|
|
53
|
+
background: $neutral-1-a1; // TODO Missing in the UI kit
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
//caret
|
|
57
57
|
.icon {
|
|
58
58
|
&:before {
|
|
59
|
-
color: $neutral-1-a8;
|
|
59
|
+
color: $neutral-1-a8; // TODO Missing in the UI kit
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
}
|
|
@@ -15,12 +15,14 @@
|
|
|
15
15
|
font-weight: $breadcrumb-link-font-weight;
|
|
16
16
|
}
|
|
17
17
|
&.active {
|
|
18
|
+
color: $color-text-base;
|
|
18
19
|
a {
|
|
19
20
|
font-weight: normal;
|
|
20
21
|
pointer-events: none;
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
24
|
span.separator {
|
|
25
|
+
color: $secondary;
|
|
24
26
|
display: inline-block;
|
|
25
27
|
font-weight: $breadcrumb-link-font-weight;
|
|
26
28
|
padding: 0 $breadcrumb-link-x-padding;
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
white-space: initial;
|
|
5
5
|
text-decoration: none;
|
|
6
6
|
}
|
|
7
|
+
|
|
7
8
|
.btn-me {
|
|
8
9
|
margin-right: $v-gap * 1.5 !important;
|
|
9
10
|
}
|
|
@@ -133,16 +134,21 @@
|
|
|
133
134
|
}
|
|
134
135
|
}
|
|
135
136
|
|
|
137
|
+
.btn:disabled:hover,
|
|
138
|
+
.btn.disabled:hover {
|
|
139
|
+
cursor: not-allowed;
|
|
140
|
+
}
|
|
141
|
+
|
|
136
142
|
.btn-primary {
|
|
137
143
|
&:disabled,
|
|
138
144
|
&.disabled {
|
|
139
|
-
color: $gray-label-disabled;
|
|
140
|
-
background-color: $gray-disabled;
|
|
141
|
-
border-color: $gray-border-disabled;
|
|
145
|
+
// color: $gray-label-disabled;
|
|
146
|
+
// background-color: $gray-disabled;
|
|
147
|
+
// border-color: $gray-border-disabled;
|
|
142
148
|
//progress bar button
|
|
143
149
|
&.btn-progress {
|
|
144
|
-
background-color:
|
|
145
|
-
border-color:
|
|
150
|
+
background-color: hsl(210, 76%, 67%); // UI kit - missing token
|
|
151
|
+
border-color: hsl(210, 76%, 67%); // UI kit - missing token
|
|
146
152
|
color: $white;
|
|
147
153
|
opacity: 1;
|
|
148
154
|
}
|
|
@@ -154,8 +160,8 @@
|
|
|
154
160
|
&.disabled {
|
|
155
161
|
//progress bar button
|
|
156
162
|
&.btn-progress {
|
|
157
|
-
background-color:
|
|
158
|
-
border-color:
|
|
163
|
+
background-color: hsl(210, 12%, 52%); // UI kit - missing tokens
|
|
164
|
+
border-color: hsl(210, 12%, 52%); // UI kit - missing tokens
|
|
159
165
|
opacity: 1;
|
|
160
166
|
}
|
|
161
167
|
}
|
|
@@ -203,7 +209,6 @@
|
|
|
203
209
|
}
|
|
204
210
|
.btn-outline-secondary {
|
|
205
211
|
@include button-outline-variant($white, color-hover($white), transparent, color-hover($white));
|
|
206
|
-
box-shadow: none;
|
|
207
212
|
&:hover {
|
|
208
213
|
box-shadow: none;
|
|
209
214
|
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
.card {
|
|
14
14
|
.card-title,
|
|
15
15
|
.card-text {
|
|
16
|
-
border-bottom: 1px solid $border-
|
|
16
|
+
border-bottom: 1px solid $color-border-subtle;
|
|
17
17
|
padding-bottom: 16px;
|
|
18
18
|
}
|
|
19
19
|
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
.card-text {
|
|
38
38
|
a {
|
|
39
39
|
text-decoration: none;
|
|
40
|
-
color: $text-
|
|
40
|
+
color: $color-text-base;
|
|
41
41
|
font-family: $font-family-sans-serif;
|
|
42
42
|
font-size: $link-list-font-size-l;
|
|
43
43
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.callout {
|
|
2
2
|
padding: 2.5rem 2.222rem;
|
|
3
|
-
border:
|
|
3
|
+
border: 2px solid $color-border-secondary;
|
|
4
4
|
position: relative;
|
|
5
5
|
max-width: 60ch;
|
|
6
6
|
margin: 1.75rem 0 1rem;
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// Highlights version
|
|
10
10
|
&.callout-highlight {
|
|
11
11
|
border: none;
|
|
12
|
-
border-left: 2px solid
|
|
12
|
+
border-left: 2px solid $color-border-secondary;
|
|
13
13
|
border-radius: 0;
|
|
14
14
|
padding: 0 2.222rem;
|
|
15
15
|
.callout-title {
|
|
@@ -20,22 +20,22 @@
|
|
|
20
20
|
border-color: rgba($success, 1);
|
|
21
21
|
}
|
|
22
22
|
&.warning {
|
|
23
|
-
border-color:
|
|
23
|
+
border-color: $color-border-warning;
|
|
24
24
|
}
|
|
25
25
|
&.danger {
|
|
26
26
|
border-color: rgba($danger, 1);
|
|
27
27
|
}
|
|
28
28
|
&.important {
|
|
29
|
-
border-color:
|
|
29
|
+
border-color: $success;
|
|
30
30
|
}
|
|
31
31
|
&.note {
|
|
32
|
-
border-color:
|
|
32
|
+
border-color: $primary;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
// More version
|
|
37
37
|
&.callout-more {
|
|
38
|
-
background: #
|
|
38
|
+
background: #f9f9f5;
|
|
39
39
|
border: none;
|
|
40
40
|
border-radius: 0;
|
|
41
41
|
padding: 2.222rem 2.222rem;
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
p {
|
|
68
68
|
font-size: 0.778rem;
|
|
69
69
|
line-height: 1.333rem;
|
|
70
|
-
color: $
|
|
70
|
+
color: $color-text-secondary; // UI kit
|
|
71
71
|
}
|
|
72
72
|
// title
|
|
73
73
|
.callout-title {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
&.warning {
|
|
103
103
|
border-color: $warning;
|
|
104
104
|
.callout-title {
|
|
105
|
-
color: $warning;
|
|
105
|
+
color: $color-text-warning;
|
|
106
106
|
.icon {
|
|
107
107
|
fill: $warning;
|
|
108
108
|
}
|
|
@@ -124,47 +124,47 @@
|
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
&.important {
|
|
127
|
-
border-color: $
|
|
127
|
+
border-color: $success;
|
|
128
128
|
.callout-title {
|
|
129
|
-
color: $
|
|
129
|
+
color: $success;
|
|
130
130
|
.icon {
|
|
131
|
-
fill: $
|
|
131
|
+
fill: $success;
|
|
132
132
|
}
|
|
133
133
|
span {
|
|
134
|
-
border-color: $
|
|
134
|
+
border-color: $success;
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
138
|
&.note {
|
|
139
|
-
border-color: $primary
|
|
139
|
+
border-color: $primary;
|
|
140
140
|
.callout-title {
|
|
141
|
-
color: $primary
|
|
141
|
+
color: $primary;
|
|
142
142
|
.icon {
|
|
143
|
-
fill: $primary
|
|
143
|
+
fill: $primary;
|
|
144
144
|
}
|
|
145
145
|
span {
|
|
146
|
-
border-color: $primary
|
|
146
|
+
border-color: $primary;
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
.collapse-div .collapse-header .callout-more-toggle {
|
|
150
|
-
color: $primary
|
|
150
|
+
color: $primary;
|
|
151
151
|
&:active,
|
|
152
152
|
&:hover {
|
|
153
|
-
color: $primary
|
|
153
|
+
color: $primary;
|
|
154
154
|
}
|
|
155
155
|
span {
|
|
156
|
-
border-color: $primary
|
|
156
|
+
border-color: $primary;
|
|
157
157
|
&:before,
|
|
158
158
|
&:after {
|
|
159
|
-
background: $primary
|
|
159
|
+
background: $primary;
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
a {
|
|
164
|
-
color: $primary
|
|
164
|
+
color: $primary;
|
|
165
165
|
}
|
|
166
166
|
.icon {
|
|
167
|
-
fill: $primary
|
|
167
|
+
fill: $primary;
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
|
|
@@ -175,9 +175,9 @@
|
|
|
175
175
|
font-size: 1rem;
|
|
176
176
|
margin-right: 2.222rem;
|
|
177
177
|
letter-spacing: 0.06rem;
|
|
178
|
-
color: $
|
|
178
|
+
color: $color-text-secondary; // UI kit
|
|
179
179
|
.icon {
|
|
180
|
-
fill: $
|
|
180
|
+
fill: $color-text-secondary; // UI kit
|
|
181
181
|
margin-right: 0.444rem;
|
|
182
182
|
}
|
|
183
183
|
}
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
p {
|
|
198
198
|
font-family: $font-family-serif;
|
|
199
199
|
font-size: 0.889rem;
|
|
200
|
-
color: $
|
|
200
|
+
color: $color-text-secondary; // UI kit
|
|
201
201
|
&:last-child {
|
|
202
202
|
margin: 0;
|
|
203
203
|
}
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
height: $crs-dots-simension;
|
|
15
15
|
background: $crs-dots-color;
|
|
16
16
|
display: inline-block;
|
|
17
|
-
opacity: 0.3;
|
|
18
17
|
transition: all 0.3s;
|
|
19
18
|
border-radius: 50px;
|
|
20
19
|
margin: 0 $v-gap;
|
|
@@ -22,7 +21,7 @@
|
|
|
22
21
|
box-shadow: none;
|
|
23
22
|
border: none;
|
|
24
23
|
&.is-active {
|
|
25
|
-
|
|
24
|
+
background: $primary;
|
|
26
25
|
}
|
|
27
26
|
}
|
|
28
27
|
}
|
|
@@ -110,7 +109,7 @@
|
|
|
110
109
|
transform: rotate(180deg);
|
|
111
110
|
}
|
|
112
111
|
&[disabled] {
|
|
113
|
-
background: $
|
|
112
|
+
background: $gray-disabled;
|
|
114
113
|
}
|
|
115
114
|
}
|
|
116
115
|
}
|
|
@@ -224,7 +223,7 @@
|
|
|
224
223
|
right: -$v-gap * 1.5;
|
|
225
224
|
top: 0;
|
|
226
225
|
bottom: 0;
|
|
227
|
-
background-color: $neutral-2;
|
|
226
|
+
background-color: $neutral-2; // Missing in the UI kit
|
|
228
227
|
}
|
|
229
228
|
}
|
|
230
229
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
justify-content: space-evenly;
|
|
5
5
|
align-items: center;
|
|
6
6
|
background: $chips-background;
|
|
7
|
-
border: 1px solid $
|
|
7
|
+
border: 1px solid $chips-border;
|
|
8
8
|
border-radius: $v-gap * 1.5;
|
|
9
9
|
height: $v-gap * 3;
|
|
10
10
|
min-width: 100px;
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
//disabled state--------------------------------
|
|
138
138
|
&.chip-disabled {
|
|
139
139
|
background: $white;
|
|
140
|
-
color: $
|
|
140
|
+
color: $chips-label-color-disabled;
|
|
141
141
|
&:hover {
|
|
142
142
|
cursor: not-allowed;
|
|
143
143
|
}
|
|
@@ -148,12 +148,12 @@
|
|
|
148
148
|
//close button
|
|
149
149
|
button {
|
|
150
150
|
.icon {
|
|
151
|
-
fill: $
|
|
151
|
+
fill: $gray-disabled;
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
//left icon
|
|
155
155
|
& > .icon {
|
|
156
|
-
fill: $
|
|
156
|
+
fill: $gray-disabled;
|
|
157
157
|
}
|
|
158
158
|
.avatar {
|
|
159
159
|
img {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
.dimmer {
|
|
8
8
|
display: flex;
|
|
9
|
-
background-color:
|
|
9
|
+
background-color: $color-background-emphasis;
|
|
10
10
|
opacity: 0.92;
|
|
11
11
|
position: absolute;
|
|
12
12
|
top: 0;
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
right: 0;
|
|
16
16
|
z-index: 1;
|
|
17
17
|
padding: $v-gap * 4;
|
|
18
|
+
justify-content: center;
|
|
19
|
+
flex-wrap: wrap;
|
|
20
|
+
align-items: flex-start;
|
|
18
21
|
|
|
19
22
|
&[aria-hidden='true'] {
|
|
20
23
|
display: none;
|
|
@@ -23,12 +26,9 @@
|
|
|
23
26
|
&.dimmer-primary {
|
|
24
27
|
background-color: $primary;
|
|
25
28
|
&.show {
|
|
26
|
-
opacity: 0.
|
|
29
|
+
opacity: 0.9;
|
|
27
30
|
}
|
|
28
31
|
}
|
|
29
|
-
justify-content: center;
|
|
30
|
-
flex-wrap: wrap;
|
|
31
|
-
align-items: flex-start;
|
|
32
32
|
|
|
33
33
|
h1,
|
|
34
34
|
h2,
|
|
@@ -173,13 +173,13 @@
|
|
|
173
173
|
|
|
174
174
|
//dark version
|
|
175
175
|
&.dark {
|
|
176
|
-
background-color: $neutral-1-a8;
|
|
176
|
+
background-color: $neutral-1-a8; // Missing in the UI kit
|
|
177
177
|
.link-list-wrapper .link-list-heading {
|
|
178
178
|
color: #fff;
|
|
179
179
|
}
|
|
180
180
|
.link-list-wrapper ul {
|
|
181
181
|
span.divider {
|
|
182
|
-
background: #2e465e;
|
|
182
|
+
background: #2e465e; // Missing in the UI kit
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
li {
|
|
@@ -191,19 +191,19 @@
|
|
|
191
191
|
color: #fff;
|
|
192
192
|
}
|
|
193
193
|
a:not(.active):not(.disabled):hover i {
|
|
194
|
-
color: $analogue-2-a4;
|
|
194
|
+
color: $analogue-2-a4; // Missing in the UI kit
|
|
195
195
|
}
|
|
196
196
|
a.disabled span {
|
|
197
|
-
color: $neutral-1-a4;
|
|
197
|
+
color: $neutral-1-a4; // Missing in the UI kit
|
|
198
198
|
}
|
|
199
199
|
a.active span {
|
|
200
|
-
color: $cyan;
|
|
200
|
+
color: $cyan; // Missing in the UI kit
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
//notch
|
|
205
205
|
&:before {
|
|
206
|
-
background-color: $neutral-1-a8;
|
|
206
|
+
background-color: $neutral-1-a8; // Missing in the UI kit
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
&.show {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//mobile
|
|
2
2
|
.it-footer-main {
|
|
3
|
-
background-color: $
|
|
3
|
+
background-color: $footer-top-background;
|
|
4
4
|
color: $white;
|
|
5
5
|
font-size: 16px;
|
|
6
6
|
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
.it-footer-small-prints {
|
|
78
|
-
background-color: $
|
|
78
|
+
background-color: $footer-bottom-background;
|
|
79
79
|
|
|
80
80
|
ul.it-footer-small-prints-list {
|
|
81
81
|
padding: 1.5rem 1rem;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
// TODO: Check if this classes are obsolete due to default browser styles
|
|
2
|
+
|
|
1
3
|
a.datepicker-button {
|
|
2
4
|
cursor: pointer;
|
|
3
5
|
|
|
@@ -303,12 +305,6 @@ a.datepicker-button {
|
|
|
303
305
|
z-index: 40;
|
|
304
306
|
}
|
|
305
307
|
|
|
306
|
-
abbr[data-original-title],
|
|
307
|
-
abbr[title] {
|
|
308
|
-
text-decoration: none;
|
|
309
|
-
cursor: default;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
308
|
.it-datepicker-wrapper {
|
|
313
309
|
position: relative;
|
|
314
310
|
.valid-feedback,
|
|
@@ -11,10 +11,10 @@ input[type='file'] + label {
|
|
|
11
11
|
opacity: 0;
|
|
12
12
|
}
|
|
13
13
|
.form-file-name {
|
|
14
|
-
background-color:
|
|
14
|
+
background-color: $white;
|
|
15
15
|
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
|
16
16
|
border-radius: 0;
|
|
17
|
-
color:
|
|
17
|
+
color: $color-text-secondary;
|
|
18
18
|
left: 0;
|
|
19
19
|
line-height: 1.7;
|
|
20
20
|
overflow: hidden;
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
display: none;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
color: $
|
|
25
|
+
// color: $color-text-muted;
|
|
26
26
|
padding-right: 32px;
|
|
27
27
|
padding-left: 12px;
|
|
28
28
|
min-width: 86px !important;
|
|
29
29
|
width: 100%;
|
|
30
30
|
|
|
31
31
|
&:focus {
|
|
32
|
-
color: $
|
|
32
|
+
color: $color-text-base;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
position: absolute;
|
|
41
41
|
left: 14px;
|
|
42
42
|
top: 0;
|
|
43
|
-
color: $
|
|
43
|
+
// color: $color-text-muted;
|
|
44
44
|
font-weight: bold;
|
|
45
45
|
font-size: 1rem;
|
|
46
46
|
}
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
&.disabled {
|
|
64
64
|
input[type='number'] {
|
|
65
65
|
background-color: transparent;
|
|
66
|
-
color: $
|
|
67
|
-
border-bottom-color: $
|
|
66
|
+
color: $gray-label-disabled;
|
|
67
|
+
border-bottom-color: $gray-border-disabled;
|
|
68
68
|
&:hover {
|
|
69
69
|
cursor: not-allowed;
|
|
70
|
-
color: $
|
|
70
|
+
color: $gray-label-disabled;
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
button {
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
}
|
|
78
78
|
&.input-number-add {
|
|
79
79
|
&:after {
|
|
80
|
-
border-color: transparent transparent $
|
|
80
|
+
border-color: transparent transparent $gray-border-disabled transparent;
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
&.input-number-sub {
|
|
84
84
|
&:after {
|
|
85
|
-
border-color: $
|
|
85
|
+
border-color: $gray-border-disabled transparent transparent transparent;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
}
|
|
@@ -112,12 +112,12 @@
|
|
|
112
112
|
&:hover {
|
|
113
113
|
&.input-number-add {
|
|
114
114
|
&:after {
|
|
115
|
-
border-color: transparent transparent $dark transparent;
|
|
115
|
+
border-color: transparent transparent $dark transparent; // TODO Check if still necessary
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
&.input-number-sub {
|
|
119
119
|
&:after {
|
|
120
|
-
border-color: $dark transparent transparent transparent;
|
|
120
|
+
border-color: $dark transparent transparent transparent; // TODO Check if still necessary
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
}
|
|
@@ -129,14 +129,14 @@
|
|
|
129
129
|
top: -6px;
|
|
130
130
|
&:after {
|
|
131
131
|
border-width: 0 5px 6px 5px;
|
|
132
|
-
border-color: transparent transparent $neutral-1-a7 transparent;
|
|
132
|
+
border-color: transparent transparent $neutral-1-a7 transparent; // TODO Check if still necessary
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
135
|
&.input-number-sub {
|
|
136
136
|
bottom: -6px;
|
|
137
137
|
&:after {
|
|
138
138
|
border-width: 6px 5px 0 5px;
|
|
139
|
-
border-color: $neutral-1-a7 transparent transparent transparent;
|
|
139
|
+
border-color: $neutral-1-a7 transparent transparent transparent; // TODO Check if still necessary
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
142
|
&:hover {
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
label {
|
|
150
150
|
&.input-number-label {
|
|
151
151
|
display: block;
|
|
152
|
-
color: $
|
|
152
|
+
color: $color-text-base;
|
|
153
153
|
font-weight: 600;
|
|
154
154
|
font-size: $small-font-size;
|
|
155
155
|
cursor: text;
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
box-shadow: none;
|
|
47
47
|
transition: 0.2s ease-out;
|
|
48
48
|
font-weight: 700;
|
|
49
|
-
color: $
|
|
49
|
+
color: $color-text-base;
|
|
50
50
|
background-color: $white;
|
|
51
51
|
option {
|
|
52
52
|
font-weight: normal;
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
.bootstrap-select {
|
|
104
104
|
background-color: $input-disabled-bg;
|
|
105
105
|
& > .dropdown-toggle.bs-placeholder {
|
|
106
|
-
color: $
|
|
106
|
+
color: $color-text-base;
|
|
107
107
|
opacity: 1;
|
|
108
108
|
}
|
|
109
109
|
}
|
|
@@ -493,7 +493,7 @@ fieldset:disabled .bootstrap-select-wrapper {
|
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
.bootstrap-select > .dropdown-toggle.bs-placeholder {
|
|
496
|
-
color: $
|
|
496
|
+
color: $color-text-base;
|
|
497
497
|
}
|
|
498
498
|
|
|
499
499
|
button {
|