@saooti/octopus-sdk 1.0.0 → 1.1.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.md +261 -0
- package/index.d.ts +4 -0
- package/index.ts +55 -3
- package/package.json +53 -45
- package/public/config.ts +4 -0
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +129 -0
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/style.css +186 -1224
- package/public/img/403.jpeg +0 -0
- package/public/img/404.svg +242 -0
- package/public/img/ACPM.png +0 -0
- package/public/img/ouest_france_logo.svg +12 -0
- package/src/App.vue +102 -31
- package/src/api/classicCrud.ts +34 -0
- package/src/api/initialize.ts +5 -2
- package/src/assets/bootstrap-diff.scss +197 -0
- package/src/assets/form.scss +77 -77
- package/src/assets/general.scss +284 -272
- package/src/assets/live.scss +39 -0
- package/src/assets/modal.scss +43 -50
- package/src/assets/multiselect.scss +522 -573
- package/src/assets/octopus-library.scss +18 -4
- package/src/assets/share.scss +243 -0
- package/src/assets/transition.scss +98 -2
- package/src/components/display/aggregator/RssSection.vue +3 -5
- package/src/components/display/categories/CategoryChooser.vue +151 -114
- package/src/components/display/categories/CategoryFilter.vue +162 -0
- package/src/components/display/categories/CategoryList.vue +149 -117
- package/src/components/display/comments/AddCommentModal.vue +103 -108
- package/src/components/display/comments/CommentBasicView.vue +95 -0
- package/src/components/display/comments/CommentInput.vue +195 -183
- package/src/components/display/comments/CommentItem.vue +170 -208
- package/src/components/display/comments/CommentList.vue +134 -228
- package/src/components/display/comments/CommentParentInfo.vue +28 -62
- package/src/components/display/comments/CommentPlayer.vue +53 -56
- package/src/components/display/comments/CommentSection.vue +52 -83
- package/src/components/display/edit/EditBox.vue +10 -4
- package/src/components/display/edit/EditCommentBox.vue +124 -38
- package/src/components/display/emission/EmissionChooser.vue +88 -108
- package/src/components/display/emission/EmissionInlineList.vue +156 -157
- package/src/components/display/emission/EmissionItem.vue +72 -226
- package/src/components/display/emission/EmissionList.vue +159 -201
- package/src/components/display/emission/EmissionPlayerItem.vue +203 -174
- package/src/components/display/filter/AdvancedSearch.vue +224 -432
- package/src/components/display/filter/CategoryFilter.vue +105 -0
- package/src/components/display/filter/MonetizableFilter.vue +18 -15
- package/src/components/display/filter/ProductorSearch.vue +153 -176
- package/src/components/display/filter/RubriqueChoice.vue +97 -0
- package/src/components/display/filter/RubriqueFilter.vue +232 -0
- package/src/components/display/list/ListPaginate.vue +145 -0
- package/src/components/display/list/Paginate.vue +218 -0
- package/src/components/display/live/CountDown.vue +31 -30
- package/src/components/display/live/LiveHorizontalList.vue +84 -62
- package/src/components/display/live/LiveItem.vue +161 -186
- package/src/components/display/live/LiveList.vue +184 -295
- package/src/components/display/organisation/OrganisationChooser.vue +124 -162
- package/src/components/display/organisation/OrganisationChooserLight.vue +53 -56
- package/src/components/display/participant/ParticipantItem.vue +91 -128
- package/src/components/display/participant/ParticipantList.vue +134 -121
- package/src/components/display/playlist/PlaylistItem.vue +60 -97
- package/src/components/display/playlist/PlaylistList.vue +99 -92
- package/src/components/display/playlist/PodcastList.vue +117 -132
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +191 -0
- package/src/components/display/podcasts/AnimatorsItem.vue +29 -37
- package/src/components/display/podcasts/ParticipantDescription.vue +82 -0
- package/src/components/display/podcasts/PodcastFilterList.vue +49 -102
- package/src/components/display/podcasts/PodcastImage.vue +208 -225
- package/src/components/display/podcasts/PodcastInlineList.vue +62 -355
- package/src/components/display/podcasts/PodcastInlineListClassic.vue +240 -0
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +167 -0
- package/src/components/display/podcasts/PodcastItem.vue +94 -218
- package/src/components/display/podcasts/PodcastItemInfo.vue +166 -0
- package/src/components/display/podcasts/PodcastList.vue +127 -178
- package/src/components/display/podcasts/PodcastModuleBox.vue +234 -0
- package/src/components/display/podcasts/PodcastPlayBar.vue +101 -0
- package/src/components/display/podcasts/PodcastSwiperList.vue +204 -0
- package/src/components/display/podcasts/TagList.vue +60 -38
- package/src/components/display/rubriques/RubriqueChooser.vue +144 -131
- package/src/components/display/rubriques/RubriqueList.vue +216 -0
- package/src/components/display/sharing/PlayerParameters.vue +111 -153
- package/src/components/display/sharing/QrCode.vue +96 -0
- package/src/components/display/sharing/ShareButtons.vue +63 -233
- package/src/components/display/sharing/ShareButtonsIntern.vue +225 -0
- package/src/components/display/sharing/ShareDistribution.vue +102 -166
- package/src/components/display/sharing/SharePlayer.vue +189 -353
- package/src/components/display/sharing/SharePlayerColors.vue +78 -0
- package/src/components/display/sharing/SharePlayerTypes.vue +112 -0
- package/src/components/display/sharing/SplitButton.vue +42 -0
- package/src/components/display/sharing/SubscribeButtons.vue +65 -118
- package/src/components/display/studio/RecordingItemButton.vue +3 -5
- package/src/components/form/ClassicCheckbox.vue +66 -0
- package/src/components/form/ClassicLoading.vue +28 -0
- package/src/components/form/ClassicRadio.vue +66 -0
- package/src/components/form/ClassicSearch.vue +86 -0
- package/src/components/form/ClassicSelect.vue +65 -0
- package/src/components/misc/ErrorMessage.vue +27 -18
- package/src/components/misc/Footer.vue +151 -108
- package/src/components/misc/HomeDropdown.vue +95 -154
- package/src/components/misc/LeftMenu.vue +137 -206
- package/src/components/misc/Popover.vue +118 -0
- package/src/components/misc/Snackbar.vue +73 -37
- package/src/components/misc/TopBar.vue +211 -314
- package/src/components/misc/modal/ClipboardModal.vue +34 -47
- package/src/components/misc/modal/MessageModal.vue +74 -53
- package/src/components/misc/modal/NewsletterModal.vue +272 -224
- package/src/components/misc/modal/QrCodeModal.vue +58 -0
- package/src/components/misc/modal/ShareModalPlayer.vue +140 -74
- package/src/components/misc/player/Player.vue +146 -0
- package/src/components/misc/player/PlayerCompact.vue +154 -0
- package/src/components/misc/player/PlayerLarge.vue +166 -0
- package/src/components/misc/player/PlayerProgressBar.vue +112 -0
- package/src/components/misc/player/PlayerTimeline.vue +61 -0
- package/src/components/mixins/functions.ts +21 -18
- package/src/components/mixins/handle403.ts +17 -0
- package/src/components/mixins/init.ts +24 -0
- package/src/components/mixins/orgaComputed.ts +15 -0
- package/src/components/mixins/organisationFilter.ts +41 -0
- package/src/components/mixins/player/playerComment.ts +98 -0
- package/src/components/mixins/player/playerDisplay.ts +113 -0
- package/src/components/mixins/player/playerLive.ts +111 -0
- package/src/components/mixins/player/playerLogic.ts +225 -0
- package/src/components/mixins/tagOfMixins.ts +19 -0
- package/src/components/pages/Category.vue +24 -28
- package/src/components/pages/Emission.vue +144 -177
- package/src/components/pages/Emissions.vue +94 -110
- package/src/components/pages/Error403Page.vue +60 -0
- package/src/components/pages/Home.vue +74 -21
- package/src/components/pages/Lives.vue +53 -58
- package/src/components/pages/PageNotFound.vue +55 -0
- package/src/components/pages/Participant.vue +113 -129
- package/src/components/pages/Participants.vue +25 -41
- package/src/components/pages/Playlist.vue +86 -86
- package/src/components/pages/Playlists.vue +33 -52
- package/src/components/pages/Podcast.vue +206 -478
- package/src/components/pages/Podcasts.vue +112 -156
- package/src/components/pages/Rubrique.vue +21 -27
- package/src/components/pages/Search.vue +37 -94
- package/src/helper/dom.ts +2 -2
- package/src/helper/duration.ts +18 -8
- package/src/helper/useEventListener.ts +18 -0
- package/src/i18n.ts +36 -0
- package/src/locale/de.ts +309 -0
- package/src/locale/educationen.ts +14 -0
- package/src/locale/en.ts +316 -1
- package/src/locale/es.ts +309 -0
- package/src/locale/fr.ts +47 -15
- package/src/locale/it.ts +307 -0
- package/src/locale/messages.ts +11 -2
- package/src/locale/sl.ts +309 -0
- package/src/main.ts +64 -55
- package/src/router/router.ts +192 -159
- package/src/sass/_variables.scss +10 -8
- package/src/shims-tsx.d.ts +15 -0
- package/src/shims-vue-recaptcha-v3.d.ts +9 -0
- package/src/shims-vue.d.ts +5 -6
- package/src/store/AppStore.ts +41 -173
- package/src/store/class/adserver/adserverConfig.ts +9 -0
- package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
- package/src/store/class/adserver/adserverTiming.ts +10 -0
- package/src/store/class/cartouchier/cartouche.ts +15 -0
- package/src/store/class/cartouchier/cartouchier.ts +9 -0
- package/src/store/class/conference/conference.ts +35 -0
- package/src/store/class/conference/conferenceMessage.ts +10 -0
- package/src/store/class/conference/conferenceParticipant.ts +18 -0
- package/src/store/class/conference/pad.ts +15 -0
- package/src/store/class/conference/studioCall.ts +7 -0
- package/src/store/class/contract/contract.ts +7 -0
- package/src/store/class/contract/contractOrganisation.ts +7 -0
- package/src/store/class/ftp/ftpEmission.ts +41 -0
- package/src/store/class/ftp/ftpParam.ts +12 -0
- package/src/store/class/ftp/testFtpEmission.ts +5 -0
- package/src/store/class/general/audioView.ts +21 -0
- package/src/store/class/general/category.ts +10 -0
- package/src/store/class/general/comment.ts +16 -0
- package/src/store/class/general/customPlayer.ts +9 -0
- package/src/store/class/general/emission.ts +23 -0
- package/src/store/class/general/fetchParam.ts +3 -0
- package/src/store/class/general/initState.ts +25 -0
- package/src/store/class/general/interfacePageable.ts +16 -0
- package/src/store/class/general/ituneCategory.ts +5 -0
- package/src/store/class/general/media.ts +14 -0
- package/src/store/class/general/organisation.ts +20 -0
- package/src/store/class/general/pageable.ts +13 -0
- package/src/store/class/general/participant.ts +12 -0
- package/src/store/class/general/player.ts +14 -0
- package/src/store/class/general/playlist.ts +13 -0
- package/src/store/class/general/podcast.ts +43 -0
- package/src/store/class/general/sortPageable.ts +5 -0
- package/src/store/class/general/soundcastCategory.ts +8 -0
- package/src/store/class/ouestFrance/ofTag.ts +36 -0
- package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
- package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
- package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
- package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
- package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
- package/src/store/class/rss/aggregator.ts +28 -0
- package/src/store/class/rss/rssEmission.ts +14 -0
- package/src/store/class/rss/rssInfo.ts +8 -0
- package/src/store/class/rubrique/rubriquage.ts +10 -0
- package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
- package/src/store/class/rubrique/rubrique.ts +9 -0
- package/src/store/class/stat/statArrayIncome.ts +6 -0
- package/src/store/class/stat/statArrayObject.ts +34 -0
- package/src/store/class/stat/statGraph.ts +7 -0
- package/src/store/class/user/person.ts +15 -0
- package/src/store/class/user/profile.ts +12 -0
- package/src/store/class/user/userKeycloak.ts +24 -0
- package/src/store/paramStore.ts +222 -217
- package/src/store/typeAppStore.ts +186 -235
- package/src/vuex-shim.d.ts +8 -0
- package/tsconfig.json +4 -0
- package/vue.config.js +16 -0
- package/public/css/fonts/saooti-ui.eot +0 -0
- package/public/css/fonts/saooti-ui.svg +0 -829
- package/public/css/fonts/saooti-ui.ttf +0 -0
- package/public/css/fonts/saooti-ui.woff +0 -0
- package/public/css/fonts/stitcher-logo.svg +0 -83
- package/public/img/ACPM.PNG +0 -0
- package/src/api/comments.ts +0 -7
- package/src/api/emissions.ts +0 -7
- package/src/api/podcasts.ts +0 -7
- package/src/api/profile.ts +0 -8
- package/src/api/studio.ts +0 -1
- package/src/assets/bootstrap_scss/_alert.scss +0 -51
- package/src/assets/bootstrap_scss/_badge.scss +0 -54
- package/src/assets/bootstrap_scss/_breadcrumb.scss +0 -42
- package/src/assets/bootstrap_scss/_button-group.scss +0 -164
- package/src/assets/bootstrap_scss/_buttons.scss +0 -291
- package/src/assets/bootstrap_scss/_card.scss +0 -278
- package/src/assets/bootstrap_scss/_carousel.scss +0 -197
- package/src/assets/bootstrap_scss/_close.scss +0 -41
- package/src/assets/bootstrap_scss/_code.scss +0 -48
- package/src/assets/bootstrap_scss/_custom-forms.scss +0 -522
- package/src/assets/bootstrap_scss/_dropdown.scss +0 -201
- package/src/assets/bootstrap_scss/_forms.scss +0 -352
- package/src/assets/bootstrap_scss/_functions.scss +0 -134
- package/src/assets/bootstrap_scss/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/_images.scss +0 -42
- package/src/assets/bootstrap_scss/_input-group.scss +0 -191
- package/src/assets/bootstrap_scss/_jumbotron.scss +0 -17
- package/src/assets/bootstrap_scss/_list-group.scss +0 -158
- package/src/assets/bootstrap_scss/_media.scss +0 -8
- package/src/assets/bootstrap_scss/_mixins.scss +0 -47
- package/src/assets/bootstrap_scss/_modal.scss +0 -243
- package/src/assets/bootstrap_scss/_nav.scss +0 -120
- package/src/assets/bootstrap_scss/_navbar.scss +0 -324
- package/src/assets/bootstrap_scss/_pagination.scss +0 -74
- package/src/assets/bootstrap_scss/_popover.scss +0 -170
- package/src/assets/bootstrap_scss/_print.scss +0 -141
- package/src/assets/bootstrap_scss/_progress.scss +0 -46
- package/src/assets/bootstrap_scss/_reboot.scss +0 -482
- package/src/assets/bootstrap_scss/_root.scss +0 -20
- package/src/assets/bootstrap_scss/_spinners.scss +0 -55
- package/src/assets/bootstrap_scss/_tables.scss +0 -185
- package/src/assets/bootstrap_scss/_toasts.scss +0 -44
- package/src/assets/bootstrap_scss/_tooltip.scss +0 -115
- package/src/assets/bootstrap_scss/_transitions.scss +0 -20
- package/src/assets/bootstrap_scss/_type.scss +0 -125
- package/src/assets/bootstrap_scss/_utilities.scss +0 -17
- package/src/assets/bootstrap_scss/_variables.scss +0 -1145
- package/src/assets/bootstrap_scss/bootstrap-grid.scss +0 -29
- package/src/assets/bootstrap_scss/bootstrap-reboot.scss +0 -12
- package/src/assets/bootstrap_scss/bootstrap.scss +0 -44
- package/src/assets/bootstrap_scss/mixins/_alert.scss +0 -13
- package/src/assets/bootstrap_scss/mixins/_background-variant.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_badge.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_border-radius.scss +0 -63
- package/src/assets/bootstrap_scss/mixins/_box-shadow.scss +0 -20
- package/src/assets/bootstrap_scss/mixins/_breakpoints.scss +0 -123
- package/src/assets/bootstrap_scss/mixins/_buttons.scss +0 -110
- package/src/assets/bootstrap_scss/mixins/_caret.scss +0 -62
- package/src/assets/bootstrap_scss/mixins/_clearfix.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_deprecate.scss +0 -10
- package/src/assets/bootstrap_scss/mixins/_float.scss +0 -14
- package/src/assets/bootstrap_scss/mixins/_forms.scss +0 -177
- package/src/assets/bootstrap_scss/mixins/_gradients.scss +0 -45
- package/src/assets/bootstrap_scss/mixins/_grid-framework.scss +0 -71
- package/src/assets/bootstrap_scss/mixins/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/mixins/_hover.scss +0 -37
- package/src/assets/bootstrap_scss/mixins/_image.scss +0 -36
- package/src/assets/bootstrap_scss/mixins/_list-group.scss +0 -21
- package/src/assets/bootstrap_scss/mixins/_lists.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_nav-divider.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_pagination.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_reset-text.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_resize.scss +0 -6
- package/src/assets/bootstrap_scss/mixins/_screen-reader.scss +0 -34
- package/src/assets/bootstrap_scss/mixins/_size.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_table-row.scss +0 -39
- package/src/assets/bootstrap_scss/mixins/_text-emphasis.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_text-hide.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_text-truncate.scss +0 -8
- package/src/assets/bootstrap_scss/mixins/_transition.scss +0 -16
- package/src/assets/bootstrap_scss/mixins/_visibility.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_align.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_background.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_borders.scss +0 -75
- package/src/assets/bootstrap_scss/utilities/_clearfix.scss +0 -3
- package/src/assets/bootstrap_scss/utilities/_display.scss +0 -26
- package/src/assets/bootstrap_scss/utilities/_embed.scss +0 -39
- package/src/assets/bootstrap_scss/utilities/_flex.scss +0 -51
- package/src/assets/bootstrap_scss/utilities/_float.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_overflow.scss +0 -5
- package/src/assets/bootstrap_scss/utilities/_position.scss +0 -32
- package/src/assets/bootstrap_scss/utilities/_screenreaders.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_shadows.scss +0 -6
- package/src/assets/bootstrap_scss/utilities/_sizing.scss +0 -20
- package/src/assets/bootstrap_scss/utilities/_spacing.scss +0 -73
- package/src/assets/bootstrap_scss/utilities/_stretched-link.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_text.scss +0 -72
- package/src/assets/bootstrap_scss/utilities/_visibility.scss +0 -13
- package/src/assets/bootstrap_scss/vendor/_rfs.scss +0 -204
- package/src/components/misc/Player.vue +0 -792
- package/src/shims-vuex.d.ts +0 -7
- package/src/views/Home.vue +0 -18
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Rotating border
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
@keyframes spinner-border {
|
|
6
|
-
to { transform: rotate(360deg); }
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.spinner-border {
|
|
10
|
-
display: inline-block;
|
|
11
|
-
width: $spinner-width;
|
|
12
|
-
height: $spinner-height;
|
|
13
|
-
vertical-align: text-bottom;
|
|
14
|
-
border: $spinner-border-width solid currentColor;
|
|
15
|
-
border-right-color: transparent;
|
|
16
|
-
// stylelint-disable-next-line property-blacklist
|
|
17
|
-
border-radius: 50%;
|
|
18
|
-
animation: spinner-border .75s linear infinite;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.spinner-border-sm {
|
|
22
|
-
width: $spinner-width-sm;
|
|
23
|
-
height: $spinner-height-sm;
|
|
24
|
-
border-width: $spinner-border-width-sm;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
//
|
|
28
|
-
// Growing circle
|
|
29
|
-
//
|
|
30
|
-
|
|
31
|
-
@keyframes spinner-grow {
|
|
32
|
-
0% {
|
|
33
|
-
transform: scale(0);
|
|
34
|
-
}
|
|
35
|
-
50% {
|
|
36
|
-
opacity: 1;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.spinner-grow {
|
|
41
|
-
display: inline-block;
|
|
42
|
-
width: $spinner-width;
|
|
43
|
-
height: $spinner-height;
|
|
44
|
-
vertical-align: text-bottom;
|
|
45
|
-
background-color: currentColor;
|
|
46
|
-
// stylelint-disable-next-line property-blacklist
|
|
47
|
-
border-radius: 50%;
|
|
48
|
-
opacity: 0;
|
|
49
|
-
animation: spinner-grow .75s linear infinite;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.spinner-grow-sm {
|
|
53
|
-
width: $spinner-width-sm;
|
|
54
|
-
height: $spinner-height-sm;
|
|
55
|
-
}
|
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Basic Bootstrap table
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
.table {
|
|
6
|
-
width: 100%;
|
|
7
|
-
margin-bottom: $spacer;
|
|
8
|
-
color: $table-color;
|
|
9
|
-
background-color: $table-bg; // Reset for nesting within parents with `background-color`.
|
|
10
|
-
|
|
11
|
-
th,
|
|
12
|
-
td {
|
|
13
|
-
padding: $table-cell-padding;
|
|
14
|
-
vertical-align: top;
|
|
15
|
-
border-top: $table-border-width solid $table-border-color;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
thead th {
|
|
19
|
-
vertical-align: bottom;
|
|
20
|
-
border-bottom: (2 * $table-border-width) solid $table-border-color;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
tbody + tbody {
|
|
24
|
-
border-top: (2 * $table-border-width) solid $table-border-color;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
//
|
|
30
|
-
// Condensed table w/ half padding
|
|
31
|
-
//
|
|
32
|
-
|
|
33
|
-
.table-sm {
|
|
34
|
-
th,
|
|
35
|
-
td {
|
|
36
|
-
padding: $table-cell-padding-sm;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
// Border versions
|
|
42
|
-
//
|
|
43
|
-
// Add or remove borders all around the table and between all the columns.
|
|
44
|
-
|
|
45
|
-
.table-bordered {
|
|
46
|
-
border: $table-border-width solid $table-border-color;
|
|
47
|
-
|
|
48
|
-
th,
|
|
49
|
-
td {
|
|
50
|
-
border: $table-border-width solid $table-border-color;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
thead {
|
|
54
|
-
th,
|
|
55
|
-
td {
|
|
56
|
-
border-bottom-width: 2 * $table-border-width;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.table-borderless {
|
|
62
|
-
th,
|
|
63
|
-
td,
|
|
64
|
-
thead th,
|
|
65
|
-
tbody + tbody {
|
|
66
|
-
border: 0;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// Zebra-striping
|
|
71
|
-
//
|
|
72
|
-
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
|
73
|
-
|
|
74
|
-
.table-striped {
|
|
75
|
-
tbody tr:nth-of-type(#{$table-striped-order}) {
|
|
76
|
-
background-color: $table-accent-bg;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
// Hover effect
|
|
82
|
-
//
|
|
83
|
-
// Placed here since it has to come after the potential zebra striping
|
|
84
|
-
|
|
85
|
-
.table-hover {
|
|
86
|
-
tbody tr {
|
|
87
|
-
@include hover() {
|
|
88
|
-
color: $table-hover-color;
|
|
89
|
-
background-color: $table-hover-bg;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
// Table backgrounds
|
|
96
|
-
//
|
|
97
|
-
// Exact selectors below required to override `.table-striped` and prevent
|
|
98
|
-
// inheritance to nested tables.
|
|
99
|
-
|
|
100
|
-
@each $color, $value in $theme-colors {
|
|
101
|
-
@include table-row-variant($color, theme-color-level($color, $table-bg-level), theme-color-level($color, $table-border-level));
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
@include table-row-variant(active, $table-active-bg);
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
// Dark styles
|
|
108
|
-
//
|
|
109
|
-
// Same table markup, but inverted color scheme: dark background and light text.
|
|
110
|
-
|
|
111
|
-
// stylelint-disable-next-line no-duplicate-selectors
|
|
112
|
-
.table {
|
|
113
|
-
.thead-dark {
|
|
114
|
-
th {
|
|
115
|
-
color: $table-dark-color;
|
|
116
|
-
background-color: $table-dark-bg;
|
|
117
|
-
border-color: $table-dark-border-color;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.thead-light {
|
|
122
|
-
th {
|
|
123
|
-
color: $table-head-color;
|
|
124
|
-
background-color: $table-head-bg;
|
|
125
|
-
border-color: $table-border-color;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.table-dark {
|
|
131
|
-
color: $table-dark-color;
|
|
132
|
-
background-color: $table-dark-bg;
|
|
133
|
-
|
|
134
|
-
th,
|
|
135
|
-
td,
|
|
136
|
-
thead th {
|
|
137
|
-
border-color: $table-dark-border-color;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
&.table-bordered {
|
|
141
|
-
border: 0;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
&.table-striped {
|
|
145
|
-
tbody tr:nth-of-type(#{$table-striped-order}) {
|
|
146
|
-
background-color: $table-dark-accent-bg;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
&.table-hover {
|
|
151
|
-
tbody tr {
|
|
152
|
-
@include hover() {
|
|
153
|
-
color: $table-dark-hover-color;
|
|
154
|
-
background-color: $table-dark-hover-bg;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
// Responsive tables
|
|
162
|
-
//
|
|
163
|
-
// Generate series of `.table-responsive-*` classes for configuring the screen
|
|
164
|
-
// size of where your table will overflow.
|
|
165
|
-
|
|
166
|
-
.table-responsive {
|
|
167
|
-
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
168
|
-
$next: breakpoint-next($breakpoint, $grid-breakpoints);
|
|
169
|
-
$infix: breakpoint-infix($next, $grid-breakpoints);
|
|
170
|
-
|
|
171
|
-
&#{$infix} {
|
|
172
|
-
@include media-breakpoint-down($breakpoint) {
|
|
173
|
-
display: block;
|
|
174
|
-
width: 100%;
|
|
175
|
-
overflow-x: auto;
|
|
176
|
-
-webkit-overflow-scrolling: touch;
|
|
177
|
-
|
|
178
|
-
// Prevent double border on horizontal scroll due to use of `display: block;`
|
|
179
|
-
> .table-bordered {
|
|
180
|
-
border: 0;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
.toast {
|
|
2
|
-
max-width: $toast-max-width;
|
|
3
|
-
overflow: hidden; // cheap rounded corners on nested items
|
|
4
|
-
@include font-size($toast-font-size);
|
|
5
|
-
color: $toast-color;
|
|
6
|
-
background-color: $toast-background-color;
|
|
7
|
-
background-clip: padding-box;
|
|
8
|
-
border: $toast-border-width solid $toast-border-color;
|
|
9
|
-
box-shadow: $toast-box-shadow;
|
|
10
|
-
backdrop-filter: blur(10px);
|
|
11
|
-
opacity: 0;
|
|
12
|
-
@include border-radius($toast-border-radius);
|
|
13
|
-
|
|
14
|
-
&:not(:last-child) {
|
|
15
|
-
margin-bottom: $toast-padding-x;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
&.showing {
|
|
19
|
-
opacity: 1;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&.show {
|
|
23
|
-
display: block;
|
|
24
|
-
opacity: 1;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
&.hide {
|
|
28
|
-
display: none;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.toast-header {
|
|
33
|
-
display: flex;
|
|
34
|
-
align-items: center;
|
|
35
|
-
padding: $toast-padding-y $toast-padding-x;
|
|
36
|
-
color: $toast-header-color;
|
|
37
|
-
background-color: $toast-header-background-color;
|
|
38
|
-
background-clip: padding-box;
|
|
39
|
-
border-bottom: $toast-border-width solid $toast-header-border-color;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.toast-body {
|
|
43
|
-
padding: $toast-padding-x; // apply to both vertical and horizontal
|
|
44
|
-
}
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
// Base class
|
|
2
|
-
.tooltip {
|
|
3
|
-
position: absolute;
|
|
4
|
-
z-index: $zindex-tooltip;
|
|
5
|
-
display: block;
|
|
6
|
-
margin: $tooltip-margin;
|
|
7
|
-
// Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
|
|
8
|
-
// So reset our font and text properties to avoid inheriting weird values.
|
|
9
|
-
@include reset-text();
|
|
10
|
-
@include font-size($tooltip-font-size);
|
|
11
|
-
// Allow breaking very long words so they don't overflow the tooltip's bounds
|
|
12
|
-
word-wrap: break-word;
|
|
13
|
-
opacity: 0;
|
|
14
|
-
|
|
15
|
-
&.show { opacity: $tooltip-opacity; }
|
|
16
|
-
|
|
17
|
-
.arrow {
|
|
18
|
-
position: absolute;
|
|
19
|
-
display: block;
|
|
20
|
-
width: $tooltip-arrow-width;
|
|
21
|
-
height: $tooltip-arrow-height;
|
|
22
|
-
|
|
23
|
-
&::before {
|
|
24
|
-
position: absolute;
|
|
25
|
-
content: "";
|
|
26
|
-
border-color: transparent;
|
|
27
|
-
border-style: solid;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.bs-tooltip-top {
|
|
33
|
-
padding: $tooltip-arrow-height 0;
|
|
34
|
-
|
|
35
|
-
.arrow {
|
|
36
|
-
bottom: 0;
|
|
37
|
-
|
|
38
|
-
&::before {
|
|
39
|
-
top: 0;
|
|
40
|
-
border-width: $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
|
|
41
|
-
border-top-color: $tooltip-arrow-color;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.bs-tooltip-right {
|
|
47
|
-
padding: 0 $tooltip-arrow-height;
|
|
48
|
-
|
|
49
|
-
.arrow {
|
|
50
|
-
left: 0;
|
|
51
|
-
width: $tooltip-arrow-height;
|
|
52
|
-
height: $tooltip-arrow-width;
|
|
53
|
-
|
|
54
|
-
&::before {
|
|
55
|
-
right: 0;
|
|
56
|
-
border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
|
|
57
|
-
border-right-color: $tooltip-arrow-color;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.bs-tooltip-bottom {
|
|
63
|
-
padding: $tooltip-arrow-height 0;
|
|
64
|
-
|
|
65
|
-
.arrow {
|
|
66
|
-
top: 0;
|
|
67
|
-
|
|
68
|
-
&::before {
|
|
69
|
-
bottom: 0;
|
|
70
|
-
border-width: 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
|
|
71
|
-
border-bottom-color: $tooltip-arrow-color;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.bs-tooltip-left {
|
|
77
|
-
padding: 0 $tooltip-arrow-height;
|
|
78
|
-
|
|
79
|
-
.arrow {
|
|
80
|
-
right: 0;
|
|
81
|
-
width: $tooltip-arrow-height;
|
|
82
|
-
height: $tooltip-arrow-width;
|
|
83
|
-
|
|
84
|
-
&::before {
|
|
85
|
-
left: 0;
|
|
86
|
-
border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
|
|
87
|
-
border-left-color: $tooltip-arrow-color;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.bs-tooltip-auto {
|
|
93
|
-
&[x-placement^="top"] {
|
|
94
|
-
@extend .bs-tooltip-top;
|
|
95
|
-
}
|
|
96
|
-
&[x-placement^="right"] {
|
|
97
|
-
@extend .bs-tooltip-right;
|
|
98
|
-
}
|
|
99
|
-
&[x-placement^="bottom"] {
|
|
100
|
-
@extend .bs-tooltip-bottom;
|
|
101
|
-
}
|
|
102
|
-
&[x-placement^="left"] {
|
|
103
|
-
@extend .bs-tooltip-left;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
// Wrapper for the tooltip content
|
|
108
|
-
.tooltip-inner {
|
|
109
|
-
max-width: $tooltip-max-width;
|
|
110
|
-
padding: $tooltip-padding-y $tooltip-padding-x;
|
|
111
|
-
color: $tooltip-color;
|
|
112
|
-
text-align: center;
|
|
113
|
-
background-color: $tooltip-bg;
|
|
114
|
-
@include border-radius($tooltip-border-radius);
|
|
115
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
.fade {
|
|
2
|
-
@include transition($transition-fade);
|
|
3
|
-
|
|
4
|
-
&:not(.show) {
|
|
5
|
-
opacity: 0;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.collapse {
|
|
10
|
-
&:not(.show) {
|
|
11
|
-
display: none;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.collapsing {
|
|
16
|
-
position: relative;
|
|
17
|
-
height: 0;
|
|
18
|
-
overflow: hidden;
|
|
19
|
-
@include transition($transition-collapse);
|
|
20
|
-
}
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
// stylelint-disable declaration-no-important, selector-list-comma-newline-after
|
|
2
|
-
|
|
3
|
-
//
|
|
4
|
-
// Headings
|
|
5
|
-
//
|
|
6
|
-
|
|
7
|
-
h1, h2, h3, h4, h5, h6,
|
|
8
|
-
.h1, .h2, .h3, .h4, .h5, .h6 {
|
|
9
|
-
margin-bottom: $headings-margin-bottom;
|
|
10
|
-
font-family: $headings-font-family;
|
|
11
|
-
font-weight: $headings-font-weight;
|
|
12
|
-
line-height: $headings-line-height;
|
|
13
|
-
color: $headings-color;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
h1, .h1 { @include font-size($h1-font-size); }
|
|
17
|
-
h2, .h2 { @include font-size($h2-font-size); }
|
|
18
|
-
h3, .h3 { @include font-size($h3-font-size); }
|
|
19
|
-
h4, .h4 { @include font-size($h4-font-size); }
|
|
20
|
-
h5, .h5 { @include font-size($h5-font-size); }
|
|
21
|
-
h6, .h6 { @include font-size($h6-font-size); }
|
|
22
|
-
|
|
23
|
-
.lead {
|
|
24
|
-
@include font-size($lead-font-size);
|
|
25
|
-
font-weight: $lead-font-weight;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// Type display classes
|
|
29
|
-
.display-1 {
|
|
30
|
-
@include font-size($display1-size);
|
|
31
|
-
font-weight: $display1-weight;
|
|
32
|
-
line-height: $display-line-height;
|
|
33
|
-
}
|
|
34
|
-
.display-2 {
|
|
35
|
-
@include font-size($display2-size);
|
|
36
|
-
font-weight: $display2-weight;
|
|
37
|
-
line-height: $display-line-height;
|
|
38
|
-
}
|
|
39
|
-
.display-3 {
|
|
40
|
-
@include font-size($display3-size);
|
|
41
|
-
font-weight: $display3-weight;
|
|
42
|
-
line-height: $display-line-height;
|
|
43
|
-
}
|
|
44
|
-
.display-4 {
|
|
45
|
-
@include font-size($display4-size);
|
|
46
|
-
font-weight: $display4-weight;
|
|
47
|
-
line-height: $display-line-height;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
//
|
|
52
|
-
// Horizontal rules
|
|
53
|
-
//
|
|
54
|
-
|
|
55
|
-
hr {
|
|
56
|
-
margin-top: $hr-margin-y;
|
|
57
|
-
margin-bottom: $hr-margin-y;
|
|
58
|
-
border: 0;
|
|
59
|
-
border-top: $hr-border-width solid $hr-border-color;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
//
|
|
64
|
-
// Emphasis
|
|
65
|
-
//
|
|
66
|
-
|
|
67
|
-
small,
|
|
68
|
-
.small {
|
|
69
|
-
@include font-size($small-font-size);
|
|
70
|
-
font-weight: $font-weight-normal;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
mark,
|
|
74
|
-
.mark {
|
|
75
|
-
padding: $mark-padding;
|
|
76
|
-
background-color: $mark-bg;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
//
|
|
81
|
-
// Lists
|
|
82
|
-
//
|
|
83
|
-
|
|
84
|
-
.list-unstyled {
|
|
85
|
-
@include list-unstyled();
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
// Inline turns list items into inline-block
|
|
89
|
-
.list-inline {
|
|
90
|
-
@include list-unstyled();
|
|
91
|
-
}
|
|
92
|
-
.list-inline-item {
|
|
93
|
-
display: inline-block;
|
|
94
|
-
|
|
95
|
-
&:not(:last-child) {
|
|
96
|
-
margin-right: $list-inline-padding;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
//
|
|
102
|
-
// Misc
|
|
103
|
-
//
|
|
104
|
-
|
|
105
|
-
// Builds on `abbr`
|
|
106
|
-
.initialism {
|
|
107
|
-
@include font-size(90%);
|
|
108
|
-
text-transform: uppercase;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
// Blockquotes
|
|
112
|
-
.blockquote {
|
|
113
|
-
margin-bottom: $spacer;
|
|
114
|
-
@include font-size($blockquote-font-size);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.blockquote-footer {
|
|
118
|
-
display: block;
|
|
119
|
-
@include font-size($blockquote-small-font-size);
|
|
120
|
-
color: $blockquote-small-color;
|
|
121
|
-
|
|
122
|
-
&::before {
|
|
123
|
-
content: "\2014\00A0"; // em dash, nbsp
|
|
124
|
-
}
|
|
125
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
@import "utilities/align";
|
|
2
|
-
@import "utilities/background";
|
|
3
|
-
@import "utilities/borders";
|
|
4
|
-
@import "utilities/clearfix";
|
|
5
|
-
@import "utilities/display";
|
|
6
|
-
@import "utilities/embed";
|
|
7
|
-
@import "utilities/flex";
|
|
8
|
-
@import "utilities/float";
|
|
9
|
-
@import "utilities/overflow";
|
|
10
|
-
@import "utilities/position";
|
|
11
|
-
@import "utilities/screenreaders";
|
|
12
|
-
@import "utilities/shadows";
|
|
13
|
-
@import "utilities/sizing";
|
|
14
|
-
@import "utilities/stretched-link";
|
|
15
|
-
@import "utilities/spacing";
|
|
16
|
-
@import "utilities/text";
|
|
17
|
-
@import "utilities/visibility";
|