@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,291 +0,0 @@
|
|
|
1
|
-
// stylelint-disable selector-no-qualifying-type
|
|
2
|
-
|
|
3
|
-
// Buttons
|
|
4
|
-
.btn {
|
|
5
|
-
display: inline-block;
|
|
6
|
-
@include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-line-height, $btn-border-radius);
|
|
7
|
-
@include transition($btn-transition);
|
|
8
|
-
|
|
9
|
-
background: $octopus-light-secondary-color ;
|
|
10
|
-
border: 0;
|
|
11
|
-
border-radius: 50px;
|
|
12
|
-
font-size: 0.7rem;
|
|
13
|
-
cursor: pointer;
|
|
14
|
-
text-align: center;
|
|
15
|
-
transition: background .2s, border .2s, box-shadow .2s, color .2s;
|
|
16
|
-
vertical-align: middle;
|
|
17
|
-
white-space: nowrap;
|
|
18
|
-
color: black;
|
|
19
|
-
@media (max-width: 500px){
|
|
20
|
-
white-space: unset;
|
|
21
|
-
}
|
|
22
|
-
&:hover,
|
|
23
|
-
&:focus,
|
|
24
|
-
&:active,
|
|
25
|
-
&.active {
|
|
26
|
-
outline: none !important;
|
|
27
|
-
box-shadow: none;
|
|
28
|
-
text-decoration: none;
|
|
29
|
-
}
|
|
30
|
-
&:hover{
|
|
31
|
-
background: rgba($octopus-primary-color, 0.3) ;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&[disabled],
|
|
35
|
-
&:disabled,
|
|
36
|
-
&.disabled {
|
|
37
|
-
cursor: default;
|
|
38
|
-
opacity: .5;
|
|
39
|
-
pointer-events: none;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
// Button Primary
|
|
43
|
-
&.btn-primary {
|
|
44
|
-
background: $octopus-third-color;
|
|
45
|
-
background: -moz-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
46
|
-
background: -webkit-gradient(left top, right bottom, color-stop(0%, $octopus-third-color), color-stop(100%, $octopus-primary-color));
|
|
47
|
-
background: -webkit-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
48
|
-
background: -o-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
49
|
-
background: -ms-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
50
|
-
background: linear-gradient(135deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
51
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d91f', endColorstr='#50b685', GradientType=1 );
|
|
52
|
-
border-color: $octopus-primary-color;
|
|
53
|
-
border-radius: 50px;
|
|
54
|
-
height: auto;
|
|
55
|
-
border-bottom: 0 solid transparent;
|
|
56
|
-
color: white !important;
|
|
57
|
-
&:focus,
|
|
58
|
-
&:hover {
|
|
59
|
-
background:$octopus-third-color;
|
|
60
|
-
background: -moz-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
61
|
-
background: -webkit-gradient(left top, right bottom, color-stop(0%, $octopus-third-color), color-stop(100%, $octopus-primary-color));
|
|
62
|
-
background: -webkit-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
63
|
-
background: -o-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
64
|
-
background: -ms-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
65
|
-
background: linear-gradient(135deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
66
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d91f', endColorstr='#4fcf91', GradientType=1 );
|
|
67
|
-
border: 0;
|
|
68
|
-
}
|
|
69
|
-
&:active,
|
|
70
|
-
&.active {
|
|
71
|
-
background: darken($octopus-primary-color, 4%);
|
|
72
|
-
border-color: darken($octopus-primary-color, 7%);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
&.btn-light{
|
|
76
|
-
color: $octopus-primary-color;
|
|
77
|
-
background: transparent;
|
|
78
|
-
}
|
|
79
|
-
&.btn-auth{
|
|
80
|
-
&:focus,
|
|
81
|
-
&:hover {
|
|
82
|
-
background:$octopus-third-color;
|
|
83
|
-
background: -moz-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
84
|
-
background: -webkit-gradient(left top, right bottom, color-stop(0%, $octopus-third-color), color-stop(100%, $octopus-primary-color));
|
|
85
|
-
background: -webkit-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
86
|
-
background: -o-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
87
|
-
background: -ms-linear-gradient(-45deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
88
|
-
background: linear-gradient(135deg, $octopus-third-color 0%, $octopus-primary-color 100%);
|
|
89
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d91f', endColorstr='#4fcf91', GradientType=1 );
|
|
90
|
-
border: 0;
|
|
91
|
-
}
|
|
92
|
-
&:active,
|
|
93
|
-
&.active {
|
|
94
|
-
background: darken($octopus-primary-color, 4%);
|
|
95
|
-
border-color: darken($octopus-primary-color, 7%);
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
//Button disable halo after click
|
|
99
|
-
.no-effect{
|
|
100
|
-
&:focus,
|
|
101
|
-
&:hover {
|
|
102
|
-
border-bottom: 0 !important;
|
|
103
|
-
outline: 0;
|
|
104
|
-
box-shadow: 0 0 0 0 transparent !important;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
&.btn-underline{
|
|
108
|
-
background: none;
|
|
109
|
-
padding: 0;
|
|
110
|
-
margin: 0 2rem 1rem 0;
|
|
111
|
-
border-radius: 0;
|
|
112
|
-
@media (max-width: 600px) {
|
|
113
|
-
margin: 0 1rem 1rem 0;
|
|
114
|
-
font-size: 0.8em;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
&.btn-arrow {
|
|
119
|
-
border-radius: 50px;
|
|
120
|
-
margin: 0.2rem;
|
|
121
|
-
width: 1.8rem;
|
|
122
|
-
height: 1.8rem;
|
|
123
|
-
background: $octopus-secondary-color;
|
|
124
|
-
padding: 0;
|
|
125
|
-
&:hover {
|
|
126
|
-
border: 0;
|
|
127
|
-
background: $octopus-secondary-color;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
&.btn-link {
|
|
132
|
-
background: $octopus-secondary-color;
|
|
133
|
-
color: $octopus-primary-color;
|
|
134
|
-
font-weight: bold;
|
|
135
|
-
margin: 2rem;
|
|
136
|
-
width: fit-content;
|
|
137
|
-
align-self: center;
|
|
138
|
-
&:focus,
|
|
139
|
-
&:hover,
|
|
140
|
-
&:active,
|
|
141
|
-
&.active {
|
|
142
|
-
background: darken($octopus-secondary-color, 5%);
|
|
143
|
-
color: $octopus-primary-color;
|
|
144
|
-
}
|
|
145
|
-
@media (max-width: 500px){
|
|
146
|
-
margin: 0.3rem;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
&.btn-linkPlus {
|
|
151
|
-
padding: 8px 16px;
|
|
152
|
-
font-size: 0.8rem;
|
|
153
|
-
border-radius: 50px;
|
|
154
|
-
background-color: #ddd;
|
|
155
|
-
color: #000;
|
|
156
|
-
box-shadow: none;
|
|
157
|
-
display: flex;
|
|
158
|
-
.saooti-plus{
|
|
159
|
-
line-height: 1.5 !important;
|
|
160
|
-
margin-left: 5px;
|
|
161
|
-
}
|
|
162
|
-
&:focus,
|
|
163
|
-
&:hover,
|
|
164
|
-
&:active,
|
|
165
|
-
&.active {
|
|
166
|
-
background: $octopus-primary-color;
|
|
167
|
-
color: white;
|
|
168
|
-
border: 1px solid $octopus-primary-color;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
&.btn-more{
|
|
173
|
-
background: $octopus-primary-color;
|
|
174
|
-
color: $octopus-background;
|
|
175
|
-
width: 2rem;
|
|
176
|
-
height: 2rem;
|
|
177
|
-
display: flex;
|
|
178
|
-
align-items: center;
|
|
179
|
-
justify-content: center;
|
|
180
|
-
border-radius: 50px;
|
|
181
|
-
margin: 1rem;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
&.btn-bigRound{
|
|
185
|
-
border: 1px #aaa solid;
|
|
186
|
-
background: none;
|
|
187
|
-
font-size: 3rem !important;
|
|
188
|
-
color: #666;
|
|
189
|
-
border-radius: 50%;
|
|
190
|
-
padding: 1rem;
|
|
191
|
-
margin-right: 1rem;
|
|
192
|
-
width: 5rem;
|
|
193
|
-
height: 5rem;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
&.admin-button {
|
|
197
|
-
padding: 0.3rem;
|
|
198
|
-
height: 1.8rem;
|
|
199
|
-
width: 1.8rem;
|
|
200
|
-
font-size: 1rem;
|
|
201
|
-
display: inline-flex;
|
|
202
|
-
align-items: center;
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
.share-btn {
|
|
208
|
-
font-size: 1.3rem;
|
|
209
|
-
width: 2.5rem;
|
|
210
|
-
height: 2.5rem !important;
|
|
211
|
-
padding: 0.5rem;
|
|
212
|
-
display: inline-flex;
|
|
213
|
-
align-items: center;
|
|
214
|
-
justify-content: center;
|
|
215
|
-
}
|
|
216
|
-
.share-btn.m-3 {
|
|
217
|
-
margin: 0 1rem 0 0!important;
|
|
218
|
-
}
|
|
219
|
-
.btn-rss {
|
|
220
|
-
background: #ddd !important;
|
|
221
|
-
&:hover {
|
|
222
|
-
border: 0;
|
|
223
|
-
background: #ccc !important;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
.btn-facebook {
|
|
227
|
-
background: #d8dfea !important;
|
|
228
|
-
color: #3b5998 !important;
|
|
229
|
-
&:hover {
|
|
230
|
-
background: #afbdd4 !important;
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
.btn-twitter {
|
|
234
|
-
background: #d2ecfc !important;
|
|
235
|
-
color: #1da1f2 !important;
|
|
236
|
-
&:hover {
|
|
237
|
-
background: #bbe3fb !important;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
.btn-linkedin {
|
|
241
|
-
background: #0077b550 !important;
|
|
242
|
-
color: #0077b5 !important;
|
|
243
|
-
&:hover {
|
|
244
|
-
background: #00a0dc !important;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
// Future-proof disabling of clicks on `<a>` elements
|
|
249
|
-
a.btn.disabled,
|
|
250
|
-
fieldset:disabled a.btn {
|
|
251
|
-
pointer-events: none;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
//
|
|
258
|
-
// Button Sizes
|
|
259
|
-
//
|
|
260
|
-
|
|
261
|
-
.btn-lg {
|
|
262
|
-
@include button-size($btn-padding-y-lg, $btn-padding-x-lg, $btn-font-size-lg, $btn-line-height-lg, $btn-border-radius-lg);
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.btn-sm {
|
|
266
|
-
@include button-size($btn-padding-y-sm, $btn-padding-x-sm, $btn-font-size-sm, $btn-line-height-sm, $btn-border-radius-sm);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
//
|
|
271
|
-
// Block button
|
|
272
|
-
//
|
|
273
|
-
|
|
274
|
-
.btn-block {
|
|
275
|
-
display: block;
|
|
276
|
-
width: 100%;
|
|
277
|
-
|
|
278
|
-
// Vertically space out multiple block buttons
|
|
279
|
-
+ .btn-block {
|
|
280
|
-
margin-top: $btn-block-spacing-y;
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
// Specificity overrides
|
|
285
|
-
input[type="submit"],
|
|
286
|
-
input[type="reset"],
|
|
287
|
-
input[type="button"] {
|
|
288
|
-
&.btn-block {
|
|
289
|
-
width: 100%;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
@@ -1,278 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Base styles
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
.card {
|
|
6
|
-
position: relative;
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: column;
|
|
9
|
-
min-width: 0; // See https://github.com/twbs/bootstrap/pull/22740#issuecomment-305868106
|
|
10
|
-
height: $card-height;
|
|
11
|
-
word-wrap: break-word;
|
|
12
|
-
background-color: $card-bg;
|
|
13
|
-
background-clip: border-box;
|
|
14
|
-
border: $card-border-width solid $card-border-color;
|
|
15
|
-
@include border-radius($card-border-radius);
|
|
16
|
-
|
|
17
|
-
> hr {
|
|
18
|
-
margin-right: 0;
|
|
19
|
-
margin-left: 0;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
> .list-group:first-child {
|
|
23
|
-
.list-group-item:first-child {
|
|
24
|
-
@include border-top-radius($card-border-radius);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
> .list-group:last-child {
|
|
29
|
-
.list-group-item:last-child {
|
|
30
|
-
@include border-bottom-radius($card-border-radius);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.card-body {
|
|
36
|
-
// Enable `flex-grow: 1` for decks and groups so that card blocks take up
|
|
37
|
-
// as much space as possible, ensuring footers are aligned to the bottom.
|
|
38
|
-
flex: 1 1 auto;
|
|
39
|
-
// Workaround for the image size bug in IE
|
|
40
|
-
// See: https://github.com/twbs/bootstrap/pull/28855
|
|
41
|
-
min-height: 1px;
|
|
42
|
-
padding: $card-spacer-x;
|
|
43
|
-
color: $card-color;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.card-title {
|
|
47
|
-
margin-bottom: $card-spacer-y;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.card-subtitle {
|
|
51
|
-
margin-top: -$card-spacer-y / 2;
|
|
52
|
-
margin-bottom: 0;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.card-text:last-child {
|
|
56
|
-
margin-bottom: 0;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.card-link {
|
|
60
|
-
@include hover() {
|
|
61
|
-
text-decoration: none;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
+ .card-link {
|
|
65
|
-
margin-left: $card-spacer-x;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
//
|
|
70
|
-
// Optional textual caps
|
|
71
|
-
//
|
|
72
|
-
|
|
73
|
-
.card-header {
|
|
74
|
-
padding: $card-spacer-y $card-spacer-x;
|
|
75
|
-
margin-bottom: 0; // Removes the default margin-bottom of <hN>
|
|
76
|
-
color: $card-cap-color;
|
|
77
|
-
background-color: $card-cap-bg;
|
|
78
|
-
border-bottom: $card-border-width solid $card-border-color;
|
|
79
|
-
|
|
80
|
-
&:first-child {
|
|
81
|
-
@include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
+ .list-group {
|
|
85
|
-
.list-group-item:first-child {
|
|
86
|
-
border-top: 0;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.card-footer {
|
|
92
|
-
padding: $card-spacer-y $card-spacer-x;
|
|
93
|
-
background-color: $card-cap-bg;
|
|
94
|
-
border-top: $card-border-width solid $card-border-color;
|
|
95
|
-
|
|
96
|
-
&:last-child {
|
|
97
|
-
@include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
//
|
|
103
|
-
// Header navs
|
|
104
|
-
//
|
|
105
|
-
|
|
106
|
-
.card-header-tabs {
|
|
107
|
-
margin-right: -$card-spacer-x / 2;
|
|
108
|
-
margin-bottom: -$card-spacer-y;
|
|
109
|
-
margin-left: -$card-spacer-x / 2;
|
|
110
|
-
border-bottom: 0;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.card-header-pills {
|
|
114
|
-
margin-right: -$card-spacer-x / 2;
|
|
115
|
-
margin-left: -$card-spacer-x / 2;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
// Card image
|
|
119
|
-
.card-img-overlay {
|
|
120
|
-
position: absolute;
|
|
121
|
-
top: 0;
|
|
122
|
-
right: 0;
|
|
123
|
-
bottom: 0;
|
|
124
|
-
left: 0;
|
|
125
|
-
padding: $card-img-overlay-padding;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.card-img,
|
|
129
|
-
.card-img-top,
|
|
130
|
-
.card-img-bottom {
|
|
131
|
-
flex-shrink: 0; // For IE: https://github.com/twbs/bootstrap/issues/29396
|
|
132
|
-
width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.card-img,
|
|
136
|
-
.card-img-top {
|
|
137
|
-
@include border-top-radius($card-inner-border-radius);
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.card-img,
|
|
141
|
-
.card-img-bottom {
|
|
142
|
-
@include border-bottom-radius($card-inner-border-radius);
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
// Card deck
|
|
147
|
-
|
|
148
|
-
.card-deck {
|
|
149
|
-
.card {
|
|
150
|
-
margin-bottom: $card-deck-margin;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
@include media-breakpoint-up(sm) {
|
|
154
|
-
display: flex;
|
|
155
|
-
flex-flow: row wrap;
|
|
156
|
-
margin-right: -$card-deck-margin;
|
|
157
|
-
margin-left: -$card-deck-margin;
|
|
158
|
-
|
|
159
|
-
.card {
|
|
160
|
-
// Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
|
161
|
-
flex: 1 0 0%;
|
|
162
|
-
margin-right: $card-deck-margin;
|
|
163
|
-
margin-bottom: 0; // Override the default
|
|
164
|
-
margin-left: $card-deck-margin;
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
//
|
|
171
|
-
// Card groups
|
|
172
|
-
//
|
|
173
|
-
|
|
174
|
-
.card-group {
|
|
175
|
-
// The child selector allows nested `.card` within `.card-group`
|
|
176
|
-
// to display properly.
|
|
177
|
-
> .card {
|
|
178
|
-
margin-bottom: $card-group-margin;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
@include media-breakpoint-up(sm) {
|
|
182
|
-
display: flex;
|
|
183
|
-
flex-flow: row wrap;
|
|
184
|
-
// The child selector allows nested `.card` within `.card-group`
|
|
185
|
-
// to display properly.
|
|
186
|
-
> .card {
|
|
187
|
-
// Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
|
|
188
|
-
flex: 1 0 0%;
|
|
189
|
-
margin-bottom: 0;
|
|
190
|
-
|
|
191
|
-
+ .card {
|
|
192
|
-
margin-left: 0;
|
|
193
|
-
border-left: 0;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// Handle rounded corners
|
|
197
|
-
@if $enable-rounded {
|
|
198
|
-
&:not(:last-child) {
|
|
199
|
-
@include border-right-radius(0);
|
|
200
|
-
|
|
201
|
-
.card-img-top,
|
|
202
|
-
.card-header {
|
|
203
|
-
// stylelint-disable-next-line property-blacklist
|
|
204
|
-
border-top-right-radius: 0;
|
|
205
|
-
}
|
|
206
|
-
.card-img-bottom,
|
|
207
|
-
.card-footer {
|
|
208
|
-
// stylelint-disable-next-line property-blacklist
|
|
209
|
-
border-bottom-right-radius: 0;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
&:not(:first-child) {
|
|
214
|
-
@include border-left-radius(0);
|
|
215
|
-
|
|
216
|
-
.card-img-top,
|
|
217
|
-
.card-header {
|
|
218
|
-
// stylelint-disable-next-line property-blacklist
|
|
219
|
-
border-top-left-radius: 0;
|
|
220
|
-
}
|
|
221
|
-
.card-img-bottom,
|
|
222
|
-
.card-footer {
|
|
223
|
-
// stylelint-disable-next-line property-blacklist
|
|
224
|
-
border-bottom-left-radius: 0;
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
//
|
|
234
|
-
// Columns
|
|
235
|
-
//
|
|
236
|
-
|
|
237
|
-
.card-columns {
|
|
238
|
-
.card {
|
|
239
|
-
margin-bottom: $card-columns-margin;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
@include media-breakpoint-up(sm) {
|
|
243
|
-
column-count: $card-columns-count;
|
|
244
|
-
column-gap: $card-columns-gap;
|
|
245
|
-
orphans: 1;
|
|
246
|
-
widows: 1;
|
|
247
|
-
|
|
248
|
-
.card {
|
|
249
|
-
display: inline-block; // Don't let them vertically span multiple columns
|
|
250
|
-
width: 100%; // Don't let their width change
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
//
|
|
257
|
-
// Accordion
|
|
258
|
-
//
|
|
259
|
-
|
|
260
|
-
.accordion {
|
|
261
|
-
> .card {
|
|
262
|
-
overflow: hidden;
|
|
263
|
-
|
|
264
|
-
&:not(:last-of-type) {
|
|
265
|
-
border-bottom: 0;
|
|
266
|
-
@include border-bottom-radius(0);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
&:not(:first-of-type) {
|
|
270
|
-
@include border-top-radius(0);
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
> .card-header {
|
|
274
|
-
@include border-radius(0);
|
|
275
|
-
margin-bottom: -$card-border-width;
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
}
|