@saooti/octopus-sdk 30.0.8 → 30.0.9
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 +2 -1
- package/package.json +1 -1
- package/src/assets/bootstrap-diff.scss +15 -24
- package/src/assets/form.scss +0 -37
- package/src/assets/general.scss +44 -152
- package/src/assets/live.scss +39 -0
- package/src/assets/modal.scss +14 -18
- package/src/assets/multiselect.scss +30 -77
- package/src/assets/octopus-library.scss +1 -0
- package/src/assets/share.scss +149 -256
- package/src/assets/transition.scss +95 -1
- package/src/components/display/categories/CategoryChooser.vue +1 -1
- package/src/components/display/categories/CategoryList.vue +2 -4
- package/src/components/display/comments/CommentInput.vue +2 -2
- package/src/components/display/comments/CommentItem.vue +6 -6
- package/src/components/display/comments/CommentParentInfo.vue +1 -1
- package/src/components/display/edit/EditCommentBox.vue +8 -16
- package/src/components/display/emission/EmissionChooser.vue +1 -3
- package/src/components/display/emission/EmissionInlineList.vue +11 -2
- package/src/components/display/emission/EmissionItem.vue +22 -64
- package/src/components/display/emission/EmissionList.vue +59 -68
- package/src/components/display/emission/EmissionPlayerItem.vue +9 -8
- package/src/components/display/filter/AdvancedSearch.vue +11 -45
- package/src/components/display/filter/MonetizableFilter.vue +2 -4
- package/src/components/display/filter/ProductorSearch.vue +0 -1
- package/src/components/display/filter/RubriqueChoice.vue +4 -6
- package/src/components/display/filter/RubriqueFilter.vue +0 -1
- package/src/components/display/live/CountDown.vue +4 -2
- package/src/components/display/live/LiveHorizontalList.vue +1 -1
- package/src/components/display/live/LiveItem.vue +4 -4
- package/src/components/display/live/LiveList.vue +84 -214
- package/src/components/display/organisation/OrganisationChooser.vue +5 -23
- package/src/components/display/participant/ParticipantItem.vue +7 -19
- package/src/components/display/participant/ParticipantList.vue +39 -52
- package/src/components/display/playlist/PlaylistItem.vue +1 -1
- package/src/components/display/playlist/PlaylistList.vue +8 -14
- package/src/components/display/playlist/PodcastList.vue +14 -22
- package/src/components/display/podcasts/AnimatorsItem.vue +0 -1
- package/src/components/display/podcasts/ParticipantDescription.vue +4 -16
- package/src/components/display/podcasts/PodcastFilterList.vue +13 -47
- package/src/components/display/podcasts/PodcastImage.vue +26 -83
- package/src/components/display/podcasts/PodcastInlineList.vue +13 -35
- package/src/components/display/podcasts/PodcastItem.vue +4 -4
- package/src/components/display/podcasts/PodcastList.vue +7 -14
- package/src/components/display/podcasts/PodcastModuleBox.vue +9 -28
- package/src/components/display/podcasts/TagList.vue +2 -3
- package/src/components/display/rubriques/RubriqueChooser.vue +2 -2
- package/src/components/display/rubriques/RubriqueList.vue +5 -25
- package/src/components/display/sharing/PlayerParameters.vue +6 -26
- package/src/components/display/sharing/ShareButtons.vue +21 -45
- package/src/components/display/sharing/ShareDistribution.vue +1 -7
- package/src/components/display/sharing/SharePlayer.vue +2 -2
- package/src/components/display/sharing/SharePlayerColors.vue +3 -7
- package/src/components/display/sharing/SharePlayerTypes.vue +1 -2
- package/src/components/display/sharing/SubscribeButtons.vue +1 -3
- package/src/components/misc/ErrorMessage.vue +3 -0
- package/src/components/misc/HomeDropdown.vue +2 -2
- package/src/components/misc/LeftMenu.vue +1 -1
- package/src/components/misc/Player.vue +1 -1
- package/src/components/misc/PlayerClockAndTimeline.vue +1 -1
- package/src/components/misc/PlayerProgressBar.vue +1 -1
- package/src/components/misc/TopBar.vue +1 -1
- package/src/components/pages/Lives.vue +0 -1
- package/src/components/pages/Participant.vue +1 -1
- package/src/sass/_variables.scss +0 -1
- package/src/store/class/general/media.ts +1 -1
|
@@ -1,23 +1,10 @@
|
|
|
1
1
|
/* Added styles */
|
|
2
2
|
@import '../sass/_variables.scss';
|
|
3
3
|
.octopus-app{
|
|
4
|
-
|
|
5
|
-
margin: 3px 0 0;
|
|
6
|
-
}
|
|
7
|
-
.default-multiselect-width {
|
|
8
|
-
width: 100%;
|
|
9
|
-
}
|
|
4
|
+
|
|
10
5
|
.default-multiselect-width {
|
|
11
6
|
width: auto;
|
|
12
|
-
-webkit-appearance: none;
|
|
13
|
-
-moz-appearance: none;
|
|
14
|
-
text-indent: 1px;
|
|
15
|
-
text-overflow: '';
|
|
16
7
|
font-size: 1rem;
|
|
17
|
-
@media (max-width: 450px) {
|
|
18
|
-
background: transparent !important;
|
|
19
|
-
width: 98%;
|
|
20
|
-
}
|
|
21
8
|
}
|
|
22
9
|
.multiselect-transparent{
|
|
23
10
|
.multiselect__tags, .multiselect__input, .multiselect__single{
|
|
@@ -28,47 +15,39 @@
|
|
|
28
15
|
padding-left: 0;
|
|
29
16
|
}
|
|
30
17
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
.multiselect__spinner {
|
|
37
|
-
background: none;
|
|
38
|
-
}
|
|
39
|
-
.multiselect__select::before {
|
|
40
|
-
display: none;
|
|
18
|
+
|
|
19
|
+
.multiselect.light-multiselect {
|
|
20
|
+
|
|
21
|
+
.multiselect__single {
|
|
22
|
+
margin-bottom: 0;
|
|
41
23
|
}
|
|
42
24
|
}
|
|
43
25
|
|
|
44
26
|
.light-multiselect{
|
|
27
|
+
min-height: auto;
|
|
45
28
|
.multiselect__tags {
|
|
46
|
-
|
|
47
|
-
|
|
29
|
+
padding: 0 40px 0 0;
|
|
30
|
+
min-height: auto;
|
|
31
|
+
}
|
|
32
|
+
.multiselect__single {
|
|
33
|
+
margin-bottom: 0;
|
|
34
|
+
}
|
|
35
|
+
.multiselect__input,
|
|
36
|
+
.multiselect__single,
|
|
37
|
+
.multiselect__tags,
|
|
38
|
+
.multiselect--active .multiselect__select,
|
|
39
|
+
.multiselect__spinner {
|
|
48
40
|
background: transparent;
|
|
49
|
-
border-color: $octopus-background;
|
|
50
|
-
|
|
51
41
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
.multiselect__spinner {
|
|
63
|
-
background: none;
|
|
64
|
-
}
|
|
65
|
-
.option__image {
|
|
66
|
-
display: none;
|
|
67
|
-
}
|
|
68
|
-
.option__title {
|
|
69
|
-
padding-left: 0 !important;
|
|
70
|
-
font-weight: bold;
|
|
71
|
-
}
|
|
42
|
+
.multiselect--active .multiselect__select {
|
|
43
|
+
transform: unset;
|
|
44
|
+
}
|
|
45
|
+
.option__title {
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
}
|
|
48
|
+
.octopus-arrow-down {
|
|
49
|
+
top: 2px;
|
|
50
|
+
}
|
|
72
51
|
}
|
|
73
52
|
|
|
74
53
|
.multiselect-octopus-proposition{
|
|
@@ -76,7 +55,6 @@
|
|
|
76
55
|
align-items: center;
|
|
77
56
|
overflow: hidden;
|
|
78
57
|
text-overflow: ellipsis;
|
|
79
|
-
|
|
80
58
|
.option__image {
|
|
81
59
|
height: 32px;
|
|
82
60
|
width: 32px;
|
|
@@ -98,8 +76,7 @@
|
|
|
98
76
|
margin: 0.2rem;
|
|
99
77
|
}
|
|
100
78
|
|
|
101
|
-
.octopus-arrow-down
|
|
102
|
-
.octopus-arrow-down-2
|
|
79
|
+
.octopus-arrow-down
|
|
103
80
|
{
|
|
104
81
|
height: 1.2rem;
|
|
105
82
|
width: 1.2rem;
|
|
@@ -107,23 +84,14 @@
|
|
|
107
84
|
cursor: pointer;
|
|
108
85
|
position: absolute;
|
|
109
86
|
right: 10px;
|
|
110
|
-
top:
|
|
87
|
+
top: 11px;
|
|
111
88
|
margin: 0;
|
|
112
89
|
background-color: #ccc;
|
|
113
90
|
border-radius: 50%;
|
|
114
|
-
|
|
115
91
|
&:before{
|
|
116
92
|
position: relative;
|
|
117
93
|
top:2px;
|
|
118
94
|
}
|
|
119
|
-
}
|
|
120
|
-
.classic-select.octopus-arrow-down-2{
|
|
121
|
-
pointer-events: none;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.octopus-arrow-down-2{
|
|
125
|
-
right: 10px;
|
|
126
|
-
top: 11px;
|
|
127
95
|
@media (max-width: 450px) {
|
|
128
96
|
top: 14px;
|
|
129
97
|
}
|
|
@@ -200,22 +168,7 @@
|
|
|
200
168
|
color: #35495e;
|
|
201
169
|
}
|
|
202
170
|
|
|
203
|
-
|
|
204
|
-
.multiselect__tags {
|
|
205
|
-
padding: 0 40px 0 0;
|
|
206
|
-
min-height: auto;
|
|
207
|
-
}
|
|
208
|
-
.multiselect__single {
|
|
209
|
-
margin-bottom: 0;
|
|
210
|
-
}
|
|
211
|
-
.octopus-arrow-down-2 {
|
|
212
|
-
top: 2px;
|
|
213
|
-
}
|
|
214
|
-
display: flex;
|
|
215
|
-
align-items: center;
|
|
216
|
-
min-height: auto;
|
|
217
|
-
top: 0;
|
|
218
|
-
}
|
|
171
|
+
|
|
219
172
|
|
|
220
173
|
.multiselect * {
|
|
221
174
|
box-sizing: border-box;
|
|
@@ -14,6 +14,7 @@ $breadcrumb-border-radius: 2rem !default;
|
|
|
14
14
|
@import './bootstrap-diff.scss';
|
|
15
15
|
/* @import 'node_modules/bootstrap-vue-3/dist/bootstrap-vue-3.css'; */
|
|
16
16
|
@import './general.scss';
|
|
17
|
+
@import './live.scss';
|
|
17
18
|
@import './form.scss';
|
|
18
19
|
@import './multiselect.scss';
|
|
19
20
|
@import './transition.scss';
|
package/src/assets/share.scss
CHANGED
|
@@ -1,38 +1,44 @@
|
|
|
1
1
|
@import '../sass/_variables.scss';
|
|
2
2
|
.octopus-app{
|
|
3
|
-
.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
.saooti-help {
|
|
4
|
+
font-size: 1.5rem;
|
|
5
|
+
border-radius: 50%;
|
|
6
|
+
margin: 0 auto;
|
|
7
|
+
align-items: center;
|
|
8
|
+
width: 2rem;
|
|
9
|
+
height: 2rem;
|
|
10
|
+
vertical-align: middle;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
font-weight: bold;
|
|
13
|
+
background: transparent;
|
|
14
|
+
display: flex;
|
|
15
|
+
justify-self: center;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
&:hover {
|
|
18
|
+
border: 0;
|
|
19
|
+
background: #f3f3f3;
|
|
20
|
+
}
|
|
21
|
+
@media (max-width: 450px) {
|
|
22
|
+
margin: 0.5rem auto 0;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
.category-rubrique-item-plus {
|
|
26
|
+
display: flex;
|
|
27
|
+
height: 1.8rem;
|
|
28
|
+
width: 1.8rem;
|
|
29
|
+
align-items: center;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
font-size: 0.5rem;
|
|
7
32
|
}
|
|
8
33
|
.icon-caution {
|
|
9
34
|
margin-right: 5px;
|
|
10
35
|
margin-bottom: 2px;
|
|
11
36
|
height: 25px;
|
|
12
37
|
}
|
|
13
|
-
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
}
|
|
16
|
-
.input-share-player {
|
|
17
|
-
border: 1px solid #ddd;
|
|
18
|
-
border-radius: 50px;
|
|
19
|
-
&#number-input {
|
|
20
|
-
margin: 0 1rem;
|
|
21
|
-
width: 60px;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
.vue-swatches__swatch--selected {
|
|
25
|
-
border: 2px #40a372 solid !important;
|
|
26
|
-
box-shadow: unset !important;
|
|
27
|
-
-webkit-box-shadow: unset !important;
|
|
28
|
-
}
|
|
38
|
+
|
|
29
39
|
.vue-swatches__trigger{
|
|
30
40
|
border: solid 1px black;
|
|
31
41
|
}
|
|
32
|
-
.share-button-title {
|
|
33
|
-
height: 2rem;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
42
|
.podcast-list {
|
|
37
43
|
align-self: stretch;
|
|
38
44
|
flex-grow: 1;
|
|
@@ -46,263 +52,146 @@
|
|
|
46
52
|
grid-template-columns: repeat(auto-fill, 13rem); /* 2 */
|
|
47
53
|
grid-gap: 1rem; /* 3 */
|
|
48
54
|
justify-content: space-between; /* 4 */
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
justify-items: center;
|
|
55
|
-
display: flex;
|
|
56
|
-
justify-content: space-around;
|
|
55
|
+
@media (max-width: 960px) {
|
|
56
|
+
align-self: auto;
|
|
57
|
+
justify-items: center;
|
|
58
|
+
display: flex;
|
|
59
|
+
justify-content: space-around;
|
|
57
60
|
}
|
|
58
61
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
62
|
+
|
|
63
|
+
.element-list-inline {
|
|
64
|
+
margin: 0;
|
|
65
|
+
padding: 0;
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-wrap: nowrap;
|
|
68
|
+
justify-content: space-between;
|
|
69
|
+
@media (max-width: 960px) {
|
|
70
|
+
overflow-y: scroll;
|
|
71
|
+
-webkit-overflow-scrolling: touch;
|
|
72
|
+
scroll-behavior: smooth;
|
|
73
|
+
padding-bottom: 1rem;
|
|
74
|
+
width: 100%;
|
|
75
|
+
.item-phone-margin {
|
|
76
|
+
margin: 0 0.5rem !important;
|
|
66
77
|
}
|
|
78
|
+
}
|
|
67
79
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
+
|
|
81
|
+
.emission-list {
|
|
82
|
+
align-self: stretch;
|
|
83
|
+
flex-grow: 1;
|
|
84
|
+
margin: 0;
|
|
85
|
+
padding: 0;
|
|
86
|
+
/*For ie11 */
|
|
87
|
+
display: flex;
|
|
88
|
+
flex-wrap: wrap;
|
|
89
|
+
/* end */
|
|
90
|
+
display: grid; /* 1 */
|
|
91
|
+
grid-gap: 1rem; /* 3 */
|
|
92
|
+
justify-content: space-between; /* 4 */
|
|
93
|
+
&.two-emissions {
|
|
94
|
+
grid-template-columns: repeat(auto-fill, 49%); /* 2 */
|
|
80
95
|
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
.out-right-enter-active,
|
|
84
|
-
.out-right-leave-active {
|
|
85
|
-
transition: all 0.3s ease;
|
|
96
|
+
&.three-emissions {
|
|
97
|
+
grid-template-columns: repeat(auto-fill, 32%); /* 2 */
|
|
86
98
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
.out-right-enter {
|
|
90
|
-
transform: translateX(-110%);
|
|
91
|
-
opacity: 0;
|
|
99
|
+
@media (max-width: 1200px) {
|
|
100
|
+
grid-template-columns: auto !important;
|
|
92
101
|
}
|
|
102
|
+
}
|
|
93
103
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
104
|
+
.emission-item-container {
|
|
105
|
+
list-style: none;
|
|
106
|
+
background: #fff;
|
|
107
|
+
border-radius: 2rem;
|
|
108
|
+
display: flex;
|
|
109
|
+
.img-box {
|
|
110
|
+
border-radius: 2rem !important;
|
|
98
111
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
.out-right-leave-to {
|
|
102
|
-
position: absolute;
|
|
112
|
+
@media (max-width: 680px) {
|
|
113
|
+
justify-content: center;
|
|
103
114
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.emission-item-text {
|
|
118
|
+
padding: 1rem;
|
|
119
|
+
display: flex;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
max-height: 13rem;
|
|
122
|
+
@media (max-width: 450px) {
|
|
123
|
+
padding: 0.5rem 0;
|
|
124
|
+
text-align: center;
|
|
107
125
|
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
126
|
+
.emission-name {
|
|
127
|
+
font-size: 0.9rem;
|
|
128
|
+
font-weight: 600;
|
|
129
|
+
overflow: hidden;
|
|
130
|
+
display: -webkit-box;
|
|
131
|
+
-webkit-line-clamp: 2;
|
|
132
|
+
-webkit-box-orient: vertical;
|
|
133
|
+
word-break: break-word;
|
|
134
|
+
}
|
|
135
|
+
.emission-description {
|
|
136
|
+
overflow: hidden;
|
|
137
|
+
margin-top: 0.5em;
|
|
138
|
+
word-break: break-word;
|
|
139
|
+
max-height: 7rem;
|
|
140
|
+
position: relative;
|
|
141
|
+
&.after-emission-description:after {
|
|
142
|
+
content: '...';
|
|
143
|
+
position: absolute;
|
|
144
|
+
padding-left: 1rem;
|
|
145
|
+
right: 0;
|
|
146
|
+
bottom: 0;
|
|
117
147
|
width: 100%;
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
148
|
+
font-size: 1rem;
|
|
149
|
+
font-weight: bolder;
|
|
150
|
+
text-align: center;
|
|
151
|
+
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 40%);
|
|
121
152
|
}
|
|
122
153
|
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
.no-border-round {
|
|
128
|
-
border-radius: 0;
|
|
129
|
-
}
|
|
130
|
-
.text-ellipsis {
|
|
131
|
-
white-space: nowrap;
|
|
132
|
-
overflow: hidden;
|
|
133
|
-
text-overflow: ellipsis;
|
|
154
|
+
.emission-producer {
|
|
155
|
+
font-weight: 300;
|
|
156
|
+
font-size: 0.6rem;
|
|
157
|
+
}
|
|
134
158
|
}
|
|
135
|
-
.
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
159
|
+
.comment-item-container {
|
|
160
|
+
.btn-comment-edit {
|
|
161
|
+
width: 32px;
|
|
162
|
+
height: 32px;
|
|
163
|
+
background: $octopus-secondary-color;
|
|
139
164
|
padding: 0;
|
|
140
|
-
/*For ie11 */
|
|
141
165
|
display: flex;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
grid-gap: 1rem; /* 3 */
|
|
147
|
-
justify-content: space-between; /* 4 */
|
|
148
|
-
}
|
|
149
|
-
.twoEmissions {
|
|
150
|
-
grid-template-columns: repeat(auto-fill, 49%); /* 2 */
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.threeEmissions {
|
|
154
|
-
grid-template-columns: repeat(auto-fill, 32%); /* 2 */
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/** PHONES*/
|
|
158
|
-
@media (max-width: 1200px) {
|
|
159
|
-
.emission-list {
|
|
160
|
-
grid-template-columns: auto;
|
|
161
|
-
}
|
|
166
|
+
align-items: center;
|
|
167
|
+
justify-content: center;
|
|
168
|
+
color: $octopus-primary-color;
|
|
169
|
+
margin-right: 0.25rem;
|
|
162
170
|
}
|
|
163
|
-
.
|
|
164
|
-
|
|
165
|
-
background: #fff;
|
|
166
|
-
border-radius: 2rem;
|
|
167
|
-
display: flex;
|
|
168
|
-
width: 100%;
|
|
169
|
-
margin: 1rem 0;
|
|
170
|
-
.img-box {
|
|
171
|
-
border-radius: 2rem !important;
|
|
172
|
-
}
|
|
171
|
+
.status-Pending {
|
|
172
|
+
background: #eb7d22;
|
|
173
173
|
}
|
|
174
|
-
.
|
|
175
|
-
|
|
176
|
-
border-bottom: 1px solid #ddd;
|
|
174
|
+
.status-Invalid {
|
|
175
|
+
background: #d40303;
|
|
177
176
|
}
|
|
178
|
-
.
|
|
179
|
-
|
|
180
|
-
align-self: flex-end;
|
|
181
|
-
text-transform: none;
|
|
182
|
-
font-size: 1.5em;
|
|
183
|
-
font-weight: normal;
|
|
184
|
-
white-space: nowrap;
|
|
185
|
-
overflow: hidden;
|
|
186
|
-
text-overflow: ellipsis;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.emission-item-text {
|
|
190
|
-
padding: 1rem;
|
|
191
|
-
display: flex;
|
|
192
|
-
flex-direction: column;
|
|
193
|
-
max-height: 13rem;
|
|
194
|
-
|
|
195
|
-
.emission-name {
|
|
196
|
-
font-size: 0.9rem;
|
|
197
|
-
font-weight: 600;
|
|
198
|
-
overflow: hidden;
|
|
199
|
-
display: -webkit-box;
|
|
200
|
-
-webkit-line-clamp: 2;
|
|
201
|
-
-webkit-box-orient: vertical;
|
|
202
|
-
word-break: break-word;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.emission-description {
|
|
206
|
-
overflow: hidden;
|
|
207
|
-
margin-top: 0.5em;
|
|
208
|
-
word-break: break-word;
|
|
209
|
-
max-height: 7rem;
|
|
210
|
-
position: relative;
|
|
211
|
-
&.after-emission-description:after {
|
|
212
|
-
content: '...';
|
|
213
|
-
position: absolute;
|
|
214
|
-
padding-left: 1rem;
|
|
215
|
-
right: 0;
|
|
216
|
-
bottom: 0;
|
|
217
|
-
width: 100%;
|
|
218
|
-
font-size: 1rem;
|
|
219
|
-
font-weight: bolder;
|
|
220
|
-
text-align: center;
|
|
221
|
-
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 40%);
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.emission-small-description {
|
|
226
|
-
-webkit-line-clamp: 2;
|
|
227
|
-
border-top: 1px solid #ddd;
|
|
228
|
-
word-break: break-word;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.emission-producer {
|
|
232
|
-
font-weight: 300;
|
|
233
|
-
font-size: 0.6rem;
|
|
234
|
-
}
|
|
177
|
+
.status-Valid {
|
|
178
|
+
background: $octopus-primary-color;
|
|
235
179
|
}
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
height: 2.5rem !important;
|
|
241
|
-
margin: 0 0.8rem 0 0 !important;
|
|
180
|
+
.status-Valid, .status-Invalid, .status-Pending {
|
|
181
|
+
width: 14px;
|
|
182
|
+
height: 14px;
|
|
183
|
+
border-radius: 50%;
|
|
242
184
|
}
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
flex-wrap: wrap;
|
|
247
|
-
width: auto;
|
|
248
|
-
margin: 0;
|
|
249
|
-
padding: 1rem;
|
|
250
|
-
justify-content: center;
|
|
251
|
-
}
|
|
185
|
+
.icon-certified {
|
|
186
|
+
height: 15px;
|
|
187
|
+
margin-right: 0.5rem;
|
|
252
188
|
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
padding: 0.5rem 0;
|
|
257
|
-
text-align: center;
|
|
258
|
-
}
|
|
189
|
+
.collapsed > .when-opened,
|
|
190
|
+
:not(.collapsed) > .when-closed {
|
|
191
|
+
display: none !important;
|
|
259
192
|
}
|
|
260
|
-
|
|
261
|
-
.comment-item-container {
|
|
262
|
-
.btn-circle {
|
|
263
|
-
width: 32px;
|
|
264
|
-
height: 32px;
|
|
265
|
-
background: $octopus-secondary-color;
|
|
266
|
-
padding: 0;
|
|
267
|
-
display: flex;
|
|
268
|
-
align-items: center;
|
|
269
|
-
justify-content: center;
|
|
270
|
-
}
|
|
271
|
-
.status-Pending {
|
|
272
|
-
background: #eb7d22;
|
|
273
|
-
}
|
|
274
|
-
.status-Invalid {
|
|
275
|
-
background: #d40303;
|
|
276
|
-
}
|
|
277
|
-
.status-Valid {
|
|
278
|
-
background: $octopus-primary-color;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.status-Valid, .status-Invalid, .status-Pending {
|
|
282
|
-
width: 14px;
|
|
283
|
-
height: 14px;
|
|
284
|
-
border-radius: 50%;
|
|
285
|
-
}
|
|
286
|
-
.icon-certified {
|
|
287
|
-
height: 15px;
|
|
288
|
-
margin-right: 0.5rem;
|
|
289
|
-
}
|
|
290
|
-
.btn-answer {
|
|
291
|
-
padding: 0.1rem 0.75rem;
|
|
292
|
-
}
|
|
293
|
-
.collapsed > .when-opened,
|
|
294
|
-
:not(.collapsed) > .when-closed {
|
|
295
|
-
display: none !important;
|
|
296
|
-
}
|
|
297
193
|
}
|
|
298
|
-
|
|
299
|
-
text-align: center;
|
|
300
|
-
width: 100%;
|
|
301
|
-
font-size: 0.6rem;
|
|
302
|
-
padding: 0.2rem 0;
|
|
303
|
-
color: white;
|
|
304
|
-
text-transform: uppercase;
|
|
305
|
-
}
|
|
194
|
+
|
|
306
195
|
|
|
307
196
|
.saooti-stitcher-logo,
|
|
308
197
|
.saooti-google-podcasts,
|
|
@@ -314,6 +203,10 @@
|
|
|
314
203
|
right: 0;
|
|
315
204
|
}
|
|
316
205
|
}
|
|
206
|
+
.saooti-Whatsapp{
|
|
207
|
+
width: 25px;
|
|
208
|
+
height: 25px;
|
|
209
|
+
}
|
|
317
210
|
.saooti-stitcher-logo,.saooti-amazon {
|
|
318
211
|
font-size: 1.7rem !important;
|
|
319
212
|
div {
|