@saooti/octopus-sdk 30.0.7 → 30.0.11

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.
Files changed (87) hide show
  1. package/README.md +5 -1
  2. package/index.ts +13 -2
  3. package/package.json +1 -1
  4. package/src/assets/bootstrap-diff.scss +17 -25
  5. package/src/assets/form.scss +7 -37
  6. package/src/assets/general.scss +62 -171
  7. package/src/assets/live.scss +39 -0
  8. package/src/assets/modal.scss +14 -18
  9. package/src/assets/multiselect.scss +4 -85
  10. package/src/assets/octopus-library.scss +1 -0
  11. package/src/assets/share.scss +149 -267
  12. package/src/assets/transition.scss +95 -1
  13. package/src/components/display/categories/CategoryChooser.vue +1 -1
  14. package/src/components/display/categories/CategoryList.vue +2 -4
  15. package/src/components/display/comments/CommentInput.vue +2 -2
  16. package/src/components/display/comments/CommentItem.vue +6 -6
  17. package/src/components/display/comments/CommentParentInfo.vue +1 -1
  18. package/src/components/display/comments/CommentPlayer.vue +1 -1
  19. package/src/components/display/edit/EditCommentBox.vue +8 -16
  20. package/src/components/display/emission/EmissionChooser.vue +1 -3
  21. package/src/components/display/emission/EmissionInlineList.vue +12 -3
  22. package/src/components/display/emission/EmissionItem.vue +22 -64
  23. package/src/components/display/emission/EmissionList.vue +59 -68
  24. package/src/components/display/emission/EmissionPlayerItem.vue +10 -9
  25. package/src/components/display/filter/AdvancedSearch.vue +50 -146
  26. package/src/components/display/filter/CategoryFilter.vue +9 -13
  27. package/src/components/display/filter/MonetizableFilter.vue +2 -4
  28. package/src/components/display/filter/ProductorSearch.vue +20 -40
  29. package/src/components/display/filter/RubriqueChoice.vue +5 -7
  30. package/src/components/display/filter/RubriqueFilter.vue +8 -13
  31. package/src/components/display/live/CountDown.vue +4 -2
  32. package/src/components/display/live/LiveHorizontalList.vue +1 -1
  33. package/src/components/display/live/LiveItem.vue +4 -4
  34. package/src/components/display/live/LiveList.vue +84 -214
  35. package/src/components/display/organisation/OrganisationChooser.vue +5 -26
  36. package/src/components/display/organisation/OrganisationChooserLight.vue +7 -1
  37. package/src/components/display/participant/ParticipantItem.vue +7 -19
  38. package/src/components/display/participant/ParticipantList.vue +39 -52
  39. package/src/components/display/playlist/PlaylistItem.vue +2 -2
  40. package/src/components/display/playlist/PlaylistList.vue +8 -14
  41. package/src/components/display/playlist/PodcastList.vue +21 -40
  42. package/src/components/display/podcasts/AnimatorsItem.vue +0 -1
  43. package/src/components/display/podcasts/ParticipantDescription.vue +4 -16
  44. package/src/components/display/podcasts/PodcastFilterList.vue +20 -63
  45. package/src/components/display/podcasts/PodcastImage.vue +27 -84
  46. package/src/components/display/podcasts/PodcastInlineList.vue +14 -36
  47. package/src/components/display/podcasts/PodcastItem.vue +5 -5
  48. package/src/components/display/podcasts/PodcastList.vue +7 -14
  49. package/src/components/display/podcasts/PodcastModuleBox.vue +9 -28
  50. package/src/components/display/podcasts/TagList.vue +2 -3
  51. package/src/components/display/rubriques/RubriqueChooser.vue +2 -2
  52. package/src/components/display/rubriques/RubriqueList.vue +5 -25
  53. package/src/components/display/sharing/PlayerParameters.vue +30 -71
  54. package/src/components/display/sharing/ShareButtons.vue +21 -45
  55. package/src/components/display/sharing/ShareDistribution.vue +1 -7
  56. package/src/components/display/sharing/SharePlayer.vue +10 -19
  57. package/src/components/display/sharing/SharePlayerColors.vue +4 -8
  58. package/src/components/display/sharing/SharePlayerTypes.vue +1 -2
  59. package/src/components/display/sharing/SubscribeButtons.vue +2 -4
  60. package/src/components/form/ClassicCheckbox.vue +61 -0
  61. package/src/components/form/ClassicLoading.vue +28 -0
  62. package/src/components/form/ClassicRadio.vue +61 -0
  63. package/src/components/form/ClassicSearch.vue +82 -0
  64. package/src/components/misc/ErrorMessage.vue +4 -1
  65. package/src/components/misc/Footer.vue +26 -35
  66. package/src/components/misc/HomeDropdown.vue +42 -91
  67. package/src/components/misc/LeftMenu.vue +107 -141
  68. package/src/components/misc/Player.vue +15 -29
  69. package/src/components/misc/PlayerButtons.vue +14 -37
  70. package/src/components/misc/PlayerClockAndTimeline.vue +1 -1
  71. package/src/components/misc/PlayerProgressBar.vue +15 -50
  72. package/src/components/misc/TopBar.vue +139 -222
  73. package/src/components/misc/modal/NewsletterModal.vue +13 -27
  74. package/src/components/pages/Category.vue +3 -8
  75. package/src/components/pages/Emission.vue +12 -24
  76. package/src/components/pages/Emissions.vue +8 -17
  77. package/src/components/pages/Home.vue +1 -3
  78. package/src/components/pages/Lives.vue +1 -4
  79. package/src/components/pages/Participant.vue +19 -27
  80. package/src/components/pages/Participants.vue +7 -15
  81. package/src/components/pages/Playlist.vue +16 -29
  82. package/src/components/pages/Playlists.vue +1 -11
  83. package/src/components/pages/Podcast.vue +16 -30
  84. package/src/components/pages/Podcasts.vue +9 -23
  85. package/src/components/pages/Search.vue +26 -64
  86. package/src/sass/_variables.scss +0 -1
  87. package/src/store/class/general/media.ts +1 -1
package/README.md CHANGED
@@ -504,4 +504,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
504
504
  * 30.0.4 Remplacer la version "classique" des miniplayers par la version beta
505
505
  * 30.0.5 Tri des classes dans des sous dossiers
506
506
  * 30.0.6 Merge 29
507
- * 30.0.7 Améliorations css
507
+ * 30.0.7 Améliorations css
508
+ * 30.0.8 Améliorations diverses
509
+ * 30.0.9 Améliorations diverses
510
+ * 30.0.10 PB clearInterval
511
+ * 30.0.11 Version pour release
package/index.ts CHANGED
@@ -49,6 +49,11 @@ import RubriqueChooser from "./src/components/display/rubriques/RubriqueChooser.
49
49
  import CommentList from "./src/components/display/comments/CommentList.vue";
50
50
  import CommentInput from "./src/components/display/comments/CommentInput.vue";
51
51
 
52
+ //form
53
+ import ClassicSearch from "./src/components/form/ClassicSearch.vue";
54
+ import ClassicCheckbox from "./src/components/form/ClassicCheckbox.vue";
55
+ import ClassicRadio from "./src/components/form/ClassicRadio.vue";
56
+
52
57
  //mixins
53
58
  import {selenium} from "./src/components/mixins/functions";
54
59
  import {cookies} from "./src/components/mixins/functions";
@@ -99,7 +104,10 @@ const components = {
99
104
  orgaFilter,
100
105
  initSDK,
101
106
  Popover,
102
- tagOfMixins
107
+ tagOfMixins,
108
+ ClassicSearch,
109
+ ClassicCheckbox,
110
+ ClassicRadio
103
111
  }
104
112
 
105
113
  export default components;
@@ -146,5 +154,8 @@ export {
146
154
  orgaFilter,
147
155
  initSDK,
148
156
  Popover,
149
- tagOfMixins
157
+ tagOfMixins,
158
+ ClassicSearch,
159
+ ClassicCheckbox,
160
+ ClassicRadio
150
161
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.7",
3
+ "version": "30.0.11",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -59,10 +59,6 @@
59
59
  border-color: darken($octopus-primary-color, 7%);
60
60
  }
61
61
  }
62
- &.btn-secondary{
63
- border-width: 0;
64
- color: #000;
65
- }
66
62
  &.btn-light{
67
63
  color: $octopus-primary-color;
68
64
  background: transparent;
@@ -96,18 +92,8 @@
96
92
  margin: 0 1rem 1rem 0;
97
93
  font-size: 0.8em;
98
94
  }
99
- }
100
-
101
- &.btn-arrow {
102
- border-radius: 50px;
103
- margin: 0.2rem;
104
- width: 1.8rem;
105
- height: 1.8rem;
106
- background: $octopus-secondary-color;
107
- padding: 0;
108
- &:hover {
109
- border: 0;
110
- background: $octopus-secondary-color;
95
+ &.active{
96
+ border-bottom: $octopus-primary-color 2px solid;
111
97
  }
112
98
  }
113
99
 
@@ -130,7 +116,7 @@
130
116
  }
131
117
  }
132
118
 
133
- &.btn-linkPlus {
119
+ &.btn-link-plus {
134
120
  padding: 8px 16px;
135
121
  font-size: 0.8rem;
136
122
  border-radius: 50px;
@@ -138,6 +124,7 @@
138
124
  color: #000;
139
125
  box-shadow: none;
140
126
  display: flex;
127
+ border: 1px solid transparent;
141
128
  .saooti-plus{
142
129
  line-height: 1.5 !important;
143
130
  margin-left: 5px;
@@ -164,7 +151,7 @@
164
151
  margin: 1rem;
165
152
  }
166
153
 
167
- &.btn-bigRound{
154
+ &.btn-big-round{
168
155
  border: 1px #aaa solid;
169
156
  background: none;
170
157
  font-size: 3rem !important;
@@ -176,7 +163,8 @@
176
163
  height: 5rem;
177
164
  }
178
165
 
179
- &.admin-button {
166
+ &.admin-button,
167
+ &.btn-arrow {
180
168
  padding: 0.3rem;
181
169
  height: 1.8rem;
182
170
  width: 1.8rem;
@@ -184,6 +172,14 @@
184
172
  display: inline-flex;
185
173
  align-items: center;
186
174
  }
175
+ &.btn-arrow {
176
+ margin: 0.2rem;
177
+ background: $octopus-secondary-color;
178
+ &:hover {
179
+ background: $octopus-secondary-color;
180
+ }
181
+ }
182
+
187
183
  }
188
184
 
189
185
  .share-btn {
@@ -240,12 +236,13 @@
240
236
  display: none;
241
237
  }
242
238
  .dropdown-menu {
243
- padding: $dropdown-padding-y 0.5rem;
239
+ padding: 0.5rem;
244
240
  @media (max-width: 450px) {
245
241
  min-width: 15rem;
246
242
  }
247
243
  }
248
244
  .dropdown-item {
245
+ cursor: pointer;
249
246
  font-size: 0.8rem;
250
247
  @media (max-width: 450px) {
251
248
  padding: 0.25rem 0;
@@ -257,11 +254,6 @@
257
254
  }
258
255
  }
259
256
 
260
- .modal-header {
261
- @media (max-width: 450px) {
262
- padding: 1rem 0;
263
- }
264
- }
265
257
  .accordion-button {
266
258
  padding: 0.5rem;
267
259
  }
@@ -5,6 +5,13 @@
5
5
  .width-auto{
6
6
  width: auto !important;
7
7
  }
8
+ select {
9
+ background: white !important;
10
+ outline-color: transparent !important;
11
+ padding: 0.5rem;
12
+ border: 0.1rem solid #dee2e6;
13
+ border-radius: 0.3rem;
14
+ }
8
15
 
9
16
  .form-input {
10
17
  -webkit-appearance: none;
@@ -35,43 +42,6 @@
35
42
  cursor: pointer;
36
43
  }
37
44
 
38
- .filter-search-input{
39
- flex-grow: 1;
40
- height: 2rem;
41
- margin: 1rem 0;
42
- padding: 1.2rem 3rem 1.2rem 1.2rem;
43
- border-radius: 2rem;
44
- border-style: none;
45
- background: white;
46
- @media (max-width: 450px) {
47
- margin: 0.5rem 0;
48
- font-size: 0.6rem;
49
- padding: 1.2rem 2.5rem 1.2rem 1.2rem;
50
- }
51
- }
52
-
53
- .btn-underline.active{
54
- border-bottom: $octopus-primary-color 2px solid;
55
- }
56
- // Datetime picker
57
- .theme-saooti input{
58
- border: 0.1rem solid #dee2e6;
59
- border-radius: 0.3rem;
60
- padding: 0.1rem 0.4rem;
61
- }
62
- .theme-saooti .vdatetime-popup__header,
63
- .theme-saooti .vdatetime-calendar__month__day--selected>span>span,
64
- .theme-saooti .vdatetime-calendar__month__day--selected:hover>span>span,
65
- .theme-saooti .vdatetime-popup__date-picker__item--selected>span>span {
66
- background: $octopus-primary-color;
67
- }
68
-
69
- .theme-saooti .vdatetime-year-picker__item--selected,
70
- .theme-saooti .vdatetime-time-picker__item--selected,
71
- .theme-saooti .vdatetime-popup__actions__button {
72
- color: $octopus-primary-color;
73
- }
74
-
75
45
  //Navigation Bar
76
46
  .nav{
77
47
  border-bottom: 0.05rem solid #ddd;
@@ -2,7 +2,6 @@
2
2
  html{
3
3
  font-size: 20px;
4
4
  }
5
-
6
5
  body{
7
6
  color: #353535;
8
7
  font-family: Montserrat,sans-serif,Helvetica Neue;
@@ -11,78 +10,68 @@ body{
11
10
  background: #fff;
12
11
  }
13
12
  .octopus-app{
13
+ h1,h2,h3,h4,h5,h6{
14
+ font-weight: 600;
15
+ margin-bottom: 0.25rem;
16
+ margin-top: 0;
17
+ @media (max-width: 500px){
18
+ margin: 0.2rem;
19
+ }
20
+ }
14
21
  h1{
15
22
  font-size: 1.8rem;
16
23
  text-align: center;
17
24
  color: #666;
18
25
  @media (max-width: 500px){
19
26
  font-size: 1.2rem;
27
+ margin: 0.5rem 0 1rem;
20
28
  }
21
29
  }
22
30
  h2{
23
31
  @media (max-width: 500px){
24
- font-size: 1.2rem;
32
+ font-size: 1rem;
25
33
  }
26
34
  }
27
35
 
28
- .small-Text{
36
+ .small-text{
29
37
  font-size: 0.6rem;
30
38
  display: flex;
31
- align-items: center;
32
- .saooti-clock3 {
33
- margin-right: 0.2rem;
34
- }
35
- }
36
-
37
- h1,h2,h3,h4,h5,h6{
38
- font-weight: 600;
39
- line-height: 1.2;
40
- margin-bottom: 0.5em;
41
- margin-top: 0;
42
- @media (max-width: 500px){
43
- margin: 0.5rem;
44
- font-size: 1rem;
45
- }
46
- }
47
-
48
- h1 {
49
- @media (max-width: 500px){
50
- margin: 0.5rem 0 1rem;
51
- }
52
-
53
- }
39
+ align-items: center;
40
+ .saooti-clock3 {
41
+ margin-right: 0.2rem;
42
+ }
43
+ }
44
+
45
+ .d-flex-column{
46
+ display: flex;
47
+ flex-direction: row;
48
+ @media (max-width: 960px) {
49
+ flex-direction: column;
50
+ }
51
+ }
52
+ .d-flex-row{
53
+ display: flex;
54
+ flex-direction: column;
55
+ @media (max-width: 960px) {
56
+ flex-direction: row;
57
+ flex-wrap: wrap;
58
+ }
59
+ }
54
60
 
55
61
  .primary-color{
56
62
  color: $octopus-primary-color;
57
63
  }
58
- .primary-dark{
64
+ .primary-darker{
59
65
  color: $octopus-primary-dark;
60
66
  }
61
-
62
67
  .primary-bg{
63
68
  background: $octopus-primary-color;
64
69
  }
65
70
  .secondary-bg{
66
71
  background: $octopus-background;
67
72
  }
68
-
69
- .border-primary{
70
- border-color:$octopus-primary-color !important;
71
- border-radius: 3rem;
72
- border-radius: 3rem;
73
- border-style: inset;
74
- border-width: 1px;;
75
- }
76
-
77
- .pe-5 {
78
- @media (max-width: 960px) {
79
- padding-right: 5px !important;
80
- }
81
- }
82
- .ps-5 {
83
- @media (max-width: 960px) {
84
- padding-left: 5px !important;
85
- }
73
+ .width-fit-content{
74
+ width: fit-content !important;
86
75
  }
87
76
 
88
77
  .page-box{
@@ -115,32 +104,25 @@ body{
115
104
  .shadow-element{
116
105
  box-shadow: 0px 12px 48px 6px rgba($octopus-primary-color, 0.2) !important;
117
106
  @media (max-width: 500px){
118
- box-shadow:0px 6px 20px 3px rgba($octopus-primary-color, 0.2) !important
107
+ box-shadow:0px 6px 20px 3px rgba($octopus-primary-color, 0.2) !important;
119
108
  }
120
109
  }
121
-
122
- .link-info{
123
- font-weight: bold;
124
- color: $octopus-primary-color;
125
- }
126
- .link-info:hover{
127
- text-decoration: none;
128
- color: $octopus-primary-color;
129
- }
130
-
110
+ a.btn{
111
+ color: #383838;
112
+ &:hover{
113
+ color: #383838;
114
+ }
115
+ }
131
116
  a, a:hover{
132
117
  text-decoration: none;
133
118
  outline-width: 0;
134
119
  }
135
-
136
- a.linkHover.router-link-exact-active.router-link-active {
137
- color: $octopus-primary-color !important;
120
+ a.link-hover{
121
+ color: black !important;
138
122
  }
139
-
140
- a.linkHover:hover{
123
+ a.link-hover.router-link-exact-active.router-link-active, a.link-hover:hover {
141
124
  color: $octopus-primary-color !important;
142
125
  }
143
-
144
126
  .descriptionText{
145
127
  white-space: pre-wrap;
146
128
  word-wrap: break-word;
@@ -150,18 +132,16 @@ body{
150
132
  margin: 1rem 0;
151
133
  }
152
134
  }
153
-
154
- .alert-text{
155
- color: $octopus-alert-text;
156
- }
157
- .flex-grow{
158
- flex-grow: 1;
159
- }
160
135
  .flex-super-grow{
161
136
  flex-grow: 2;
162
137
  }
163
- .flex-shrink{
164
- flex-shrink: 0;
138
+ .flex-small-grow {
139
+ flex-grow: 0.3;
140
+ }
141
+ .flex-grow-mobile {
142
+ @media (max-width: 960px) {
143
+ flex-grow: 1;
144
+ }
165
145
  }
166
146
  .text-center-mobile{
167
147
  text-align: inherit;
@@ -169,15 +149,11 @@ body{
169
149
  text-align: center;
170
150
  }
171
151
  }
172
- .box-share {
173
- flex-grow: inherit;
174
- }
175
152
  .hide-phone{
176
153
  @media (max-width: 960px) {
177
154
  display: none !important;
178
155
  }
179
156
  }
180
-
181
157
  .show-phone{
182
158
  display: none;
183
159
  @media (max-width: 960px) {
@@ -188,7 +164,6 @@ body{
188
164
  visibility: hidden !important;
189
165
  }
190
166
 
191
-
192
167
  .d-contents{
193
168
  display: contents;
194
169
  }
@@ -199,14 +174,16 @@ body{
199
174
  background-size: cover;
200
175
  border-radius: 0.8rem !important;
201
176
  overflow: hidden;
177
+ flex-shrink: 0;
178
+ @media (max-width: 960px) {
179
+ flex-grow: 0;
180
+ }
181
+ @media (max-width: 450px) {
182
+ margin: 0.5rem auto 2rem !important;
183
+ float: inherit !important;
184
+ display: flex;
185
+ }
202
186
  }
203
- .img-box-light {
204
- height: 100px;
205
- width: 100px;
206
- background-size: cover;
207
- margin-right: 10px;
208
- }
209
-
210
187
  .img-box-circle {
211
188
  height: 10rem;
212
189
  width: 10rem;
@@ -216,21 +193,6 @@ body{
216
193
  box-shadow: 0px 8px 26px 6px rgba(64, 163, 114, 0.3);
217
194
  }
218
195
 
219
- .background-icon{
220
- background: $octopus-primary-color;
221
- border-radius: 50%;
222
- width: 1rem;
223
- height: 1rem;
224
- font-size: 1rem;
225
- right: 0;
226
- bottom: 0;
227
- margin: 5px;
228
- position: absolute;
229
- cursor: pointer;
230
- z-index: 3;
231
- }
232
-
233
-
234
196
  .comma {
235
197
  display: flex;
236
198
  flex-wrap: wrap;
@@ -248,31 +210,10 @@ body{
248
210
  }
249
211
  }
250
212
  }
251
-
252
- .noList{
253
- list-style: none;
254
- }
255
213
  .c-hand{
256
214
  cursor: pointer;
257
215
  }
258
216
 
259
- .btn-rounded-icon{
260
- display: flex;
261
- align-items: center;
262
- justify-content: center;
263
- width: 1.8rem;
264
- height: 1.8rem;
265
- }
266
- .font-weight-600{
267
- font-weight: 600;
268
- }
269
- .flex-no-wrap{
270
- flex-wrap: nowrap !important;
271
- }
272
-
273
- .p-01{
274
- padding: 0.1rem !important;
275
- }
276
217
  .html-wysiwyg-content{
277
218
  h3,h4{
278
219
  margin: 0 0 0.5em 0 !important;
@@ -289,61 +230,11 @@ body{
289
230
  margin-bottom: 0.2rem;
290
231
  }
291
232
  }
292
- .planned-bg {
293
- background: #f09653;
294
- }
295
- .pending-bg {
296
- background: #f1643e;
297
- }
298
- .recording-bg {
299
- background: #f34a4a;
300
- }
301
- .error-bg {
302
- background: #ff0000;
303
- }
304
- .debriefing-bg {
305
- background: #6ec66e;
306
- }
307
- .done-bg {
308
- background: #679fe9;
309
- }
310
- .publishing-bg {
311
- background: #7d7d7d;
312
- }
313
- .planned-shadow {
314
- box-shadow: 0px 12px 48px 6px rgba(240, 151, 83, 0.2);
315
- }
316
- .pending-shadow {
317
- box-shadow: 0px 12px 48px 6px rgba(241, 101, 62, 0.2);
318
- }
319
- .recording-shadow {
320
- box-shadow: 0px 12px 48px 6px rgba(243, 74, 74, 0.2);
321
- }
322
- .debriefing-shadow {
323
- box-shadow: 0px 12px 48px 6px rgba(110, 198, 110, 0.2);
324
- }
325
- .publishing-shadow {
326
- box-shadow: 0px 12px 48px 6px rgba(125, 125, 125, 0.2);
327
- }
328
- .error-shadow {
329
- box-shadow: 0px 12px 48px 6px rgba(255, 0, 0, 0.2);
330
- }
331
- @media (max-width: 450px) {
332
- .module-box .img-box {
333
- margin: 0.5rem auto 2rem !important;
334
- float: inherit !important;
335
- display: flex;
336
- }
337
- }
233
+
338
234
  @media (max-width: 960px) {
339
235
  .d-flex:not(.flex-column){
340
236
  flex-wrap: wrap;
341
237
  flex-grow: 1;
342
- &.img-box{
343
- flex-grow: 0;
344
- }
345
238
  }
346
239
  }
347
-
348
-
349
240
  }
@@ -0,0 +1,39 @@
1
+ .planned-bg {
2
+ background: #f09653;
3
+ }
4
+ .pending-bg {
5
+ background: #f1643e;
6
+ }
7
+ .recording-bg {
8
+ background: #f34a4a;
9
+ }
10
+ .error-bg {
11
+ background: #ff0000;
12
+ }
13
+ .debriefing-bg {
14
+ background: #6ec66e;
15
+ }
16
+ .done-bg {
17
+ background: #679fe9;
18
+ }
19
+ .publishing-bg {
20
+ background: #7d7d7d;
21
+ }
22
+ .planned-shadow {
23
+ box-shadow: 0px 12px 48px 6px rgba(240, 151, 83, 0.2);
24
+ }
25
+ .pending-shadow {
26
+ box-shadow: 0px 12px 48px 6px rgba(241, 101, 62, 0.2);
27
+ }
28
+ .recording-shadow {
29
+ box-shadow: 0px 12px 48px 6px rgba(243, 74, 74, 0.2);
30
+ }
31
+ .debriefing-shadow {
32
+ box-shadow: 0px 12px 48px 6px rgba(110, 198, 110, 0.2);
33
+ }
34
+ .publishing-shadow {
35
+ box-shadow: 0px 12px 48px 6px rgba(125, 125, 125, 0.2);
36
+ }
37
+ .error-shadow {
38
+ box-shadow: 0px 12px 48px 6px rgba(255, 0, 0, 0.2);
39
+ }
@@ -2,19 +2,12 @@
2
2
  .octopus-app{
3
3
  .modal{
4
4
  display: block;
5
- }
6
- .modal-backdrop{
7
-
8
5
  }
9
6
  .modal-backdrop {
10
7
  opacity: 0.5;
11
8
  z-index: 0;
12
9
  }
13
-
14
- .modal-wrapper {
15
- display: table-cell;
16
- vertical-align: middle;
17
- }
10
+
18
11
  .modal-dialog {
19
12
  box-shadow: 0 0.2rem 0.5rem rgba(40,40,40,.3);
20
13
  border-radius: 15px;
@@ -30,29 +23,32 @@
30
23
  margin: 2.5% !important;
31
24
  }
32
25
  }
26
+ .modal-header {
27
+ border: 0;
28
+ @media (max-width: 450px) {
29
+ padding: 1rem 0;
30
+ }
31
+ }
33
32
  .modal-body{
34
33
  overflow-x: auto;
34
+ .scroller-vertical {
35
+ min-height: 200px;
36
+ height: 200px;
37
+ }
35
38
  @media (max-width: 500px){
36
39
  padding: 0;
37
- overflow-x: auto;
38
40
  }
39
41
  }
42
+ .modal-dialog, .modal-content {
43
+ min-height: 300px;
44
+ }
40
45
  .modal-content{
41
46
  border: 0;
42
- .close{
43
- outline: none !important;
44
- }
45
47
  height: auto !important;
46
48
  max-height: calc(100vh - 250px) !important;
47
49
  }
48
- .modal-header{
49
- border: 0;
50
- }
51
50
  .modal-footer{
52
51
  border: 0;
53
52
  flex-wrap: initial;
54
53
  }
55
- .modal-dialog, .modal-content {
56
- min-height: 300px;
57
- }
58
54
  }