bootstrap-italia 2.3.7 → 2.4.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/dist/bootstrap-italia.esm.js +2 -0
- package/dist/bootstrap-italia.esm.js.map +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 +198 -72
- package/dist/js/bootstrap-italia.min.js +54 -47
- package/dist/plugins/accept-overlay.js +118 -0
- package/dist/plugins/accept-overlay.js.map +1 -0
- package/dist/plugins/carousel-bi.js +1 -1
- package/dist/plugins/carousel-bi.js.map +1 -1
- package/dist/plugins/dimmer.js +0 -16
- package/dist/plugins/dimmer.js.map +1 -1
- package/dist/plugins/util/cookies.js +29 -0
- package/dist/plugins/util/cookies.js.map +1 -0
- package/dist/plugins/videoplayer.js +151 -0
- package/dist/plugins/videoplayer.js.map +1 -0
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +6 -5
- package/src/js/bootstrap-italia.entry.js +6 -0
- package/src/js/bootstrap-italia.esm.js +2 -0
- package/src/js/plugins/accept-overlay.js +118 -0
- package/src/js/plugins/carousel-bi.js +1 -1
- package/src/js/plugins/dimmer.js +0 -15
- package/src/js/plugins/util/cookies.js +28 -0
- package/src/js/plugins/videoplayer.js +151 -0
- package/src/js/version.js +1 -1
- package/src/scss/_variables.scss +1 -1
- package/src/scss/bootstrap-italia.scss +2 -0
- package/src/scss/custom/_accept-overlay.scss +128 -0
- package/src/scss/custom/_alert.scss +1 -1
- package/src/scss/custom/_buttons.scss +10 -3
- package/src/scss/custom/_callout.scss +53 -10
- package/src/scss/custom/_carousel.scss +1 -1
- package/src/scss/custom/_timeline.scss +3 -0
- package/src/scss/custom/_type.scss +1 -0
- package/src/scss/custom/_version.scss +1 -1
- package/src/scss/custom/_videoplayer.scss +40 -0
- package/types/index.d.ts +2 -0
- package/types/plugins/fonts-loader.d.ts +5 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* stylelint-disable */
|
|
2
|
+
@import 'video.js/src/css/video-js';
|
|
3
|
+
/* stylelint-enable */
|
|
4
|
+
|
|
5
|
+
.vjs-theme-bootstrap-italia {
|
|
6
|
+
.vjs-big-play-button {
|
|
7
|
+
background-color: $primary;
|
|
8
|
+
}
|
|
9
|
+
&:hover .vjs-big-play-button,
|
|
10
|
+
&.vjs-big-play-button:focus {
|
|
11
|
+
background-color: $primary;
|
|
12
|
+
}
|
|
13
|
+
.vjs-control-bar {
|
|
14
|
+
background-color: $primary;
|
|
15
|
+
font-size: 1.1em;
|
|
16
|
+
@include media-breakpoint-up(lg) {
|
|
17
|
+
min-height: 48px;
|
|
18
|
+
font-size: 1rem;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.acceptoverlay + .vjs-fluid {
|
|
24
|
+
min-height: 400px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.vjs-transcription {
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
border: none;
|
|
31
|
+
.accordion-button {
|
|
32
|
+
border: none;
|
|
33
|
+
}
|
|
34
|
+
.accordion-item {
|
|
35
|
+
width: 100%;
|
|
36
|
+
@include media-breakpoint-up(lg) {
|
|
37
|
+
width: 75ch;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
package/types/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ import { Tooltip } from './plugins/tooltip'
|
|
|
36
36
|
import { TrackFocus } from './plugins/track-focus'
|
|
37
37
|
import { Transfer } from './plugins/transfer'
|
|
38
38
|
import { UploadDragDrop } from './plugins/upload-dragdrop'
|
|
39
|
+
import { loadFonts } from './plugins/fonts-loader'
|
|
39
40
|
|
|
40
41
|
export {
|
|
41
42
|
Alert,
|
|
@@ -77,4 +78,5 @@ export {
|
|
|
77
78
|
TrackFocus,
|
|
78
79
|
Transfer,
|
|
79
80
|
UploadDragDrop,
|
|
81
|
+
loadFonts
|
|
80
82
|
}
|