@saooti/octopus-sdk 30.0.5 → 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.
Files changed (88) hide show
  1. package/README.md +5 -0
  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 -52
  6. package/src/assets/general.scss +56 -170
  7. package/src/assets/live.scss +39 -0
  8. package/src/assets/modal.scss +14 -18
  9. package/src/assets/multiselect.scss +30 -77
  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 +7 -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 -150
  26. package/src/components/display/filter/CategoryFilter.vue +9 -13
  27. package/src/components/display/filter/MonetizableFilter.vue +3 -5
  28. package/src/components/display/filter/ProductorSearch.vue +20 -40
  29. package/src/components/display/filter/RubriqueChoice.vue +6 -8
  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 -23
  36. package/src/components/display/organisation/OrganisationChooserLight.vue +8 -2
  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 +5 -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 +22 -46
  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 +108 -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/Popover.vue +8 -2
  73. package/src/components/misc/TopBar.vue +140 -222
  74. package/src/components/misc/modal/NewsletterModal.vue +13 -27
  75. package/src/components/pages/Category.vue +3 -8
  76. package/src/components/pages/Emission.vue +12 -24
  77. package/src/components/pages/Emissions.vue +8 -17
  78. package/src/components/pages/Home.vue +1 -3
  79. package/src/components/pages/Lives.vue +1 -4
  80. package/src/components/pages/Participant.vue +19 -27
  81. package/src/components/pages/Participants.vue +7 -15
  82. package/src/components/pages/Playlist.vue +16 -29
  83. package/src/components/pages/Playlists.vue +1 -11
  84. package/src/components/pages/Podcast.vue +16 -30
  85. package/src/components/pages/Podcasts.vue +9 -23
  86. package/src/components/pages/Search.vue +26 -64
  87. package/src/sass/_variables.scss +0 -1
  88. package/src/store/class/general/media.ts +1 -1
package/README.md CHANGED
@@ -496,9 +496,14 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
496
496
  * 29.0.27 Petit cursor:pointer des familles
497
497
  * 29.0.28 Petite couleur des familles
498
498
  * 29.0.29 Amélioration Popover
499
+ * 29.0.30 Amélioration Popover
499
500
 
500
501
  * 30.0.1 Nouveau sprint
501
502
  * 30.0.2 Correction css
502
503
  * 30.0.3 Ajout tag page podcast
503
504
  * 30.0.4 Remplacer la version "classique" des miniplayers par la version beta
504
505
  * 30.0.5 Tri des classes dans des sous dossiers
506
+ * 30.0.6 Merge 29
507
+ * 30.0.7 Améliorations css
508
+ * 30.0.8 Améliorations diverses
509
+ * 30.0.9 Améliorations diverses
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.5",
3
+ "version": "30.0.9",
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,58 +42,6 @@
35
42
  cursor: pointer;
36
43
  }
37
44
 
38
- .basic-select{
39
- background: white;
40
- min-height: 40px;
41
- text-align: left;
42
- color: #35495e;
43
- padding: 0.5rem;
44
- border-radius: 0.3rem;
45
- border-style: none;
46
- outline: transparent;
47
- width: 350px;
48
- margin-bottom: 1rem;
49
- overflow: hidden;
50
- text-overflow: ellipsis;
51
- }
52
-
53
- .filter-search-input{
54
- flex-grow: 1;
55
- height: 2rem;
56
- margin: 1rem 0;
57
- padding: 1.2rem 3rem 1.2rem 1.2rem;
58
- border-radius: 2rem;
59
- border-style: none;
60
- background: white;
61
- @media (max-width: 450px) {
62
- margin: 0.5rem 0;
63
- font-size: 0.6rem;
64
- padding: 1.2rem 2.5rem 1.2rem 1.2rem;
65
- }
66
- }
67
-
68
- .btn-underline.active{
69
- border-bottom: $octopus-primary-color 2px solid;
70
- }
71
- // Datetime picker
72
- .theme-saooti input{
73
- border: 0.1rem solid #dee2e6;
74
- border-radius: 0.3rem;
75
- padding: 0.1rem 0.4rem;
76
- }
77
- .theme-saooti .vdatetime-popup__header,
78
- .theme-saooti .vdatetime-calendar__month__day--selected>span>span,
79
- .theme-saooti .vdatetime-calendar__month__day--selected:hover>span>span,
80
- .theme-saooti .vdatetime-popup__date-picker__item--selected>span>span {
81
- background: $octopus-primary-color;
82
- }
83
-
84
- .theme-saooti .vdatetime-year-picker__item--selected,
85
- .theme-saooti .vdatetime-time-picker__item--selected,
86
- .theme-saooti .vdatetime-popup__actions__button {
87
- color: $octopus-primary-color;
88
- }
89
-
90
45
  //Navigation Bar
91
46
  .nav{
92
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,20 @@ 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
110
 
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
-
131
111
  a, a:hover{
132
112
  text-decoration: none;
133
113
  outline-width: 0;
134
114
  }
135
-
136
- a.linkHover.router-link-exact-active.router-link-active {
137
- color: $octopus-primary-color !important;
115
+ a.link-hover{
116
+ color: black !important;
138
117
  }
139
-
140
- a.linkHover:hover{
118
+ a.link-hover.router-link-exact-active.router-link-active, a.link-hover:hover {
141
119
  color: $octopus-primary-color !important;
142
120
  }
143
-
144
121
  .descriptionText{
145
122
  white-space: pre-wrap;
146
123
  word-wrap: break-word;
@@ -150,18 +127,16 @@ body{
150
127
  margin: 1rem 0;
151
128
  }
152
129
  }
153
-
154
- .alert-text{
155
- color: $octopus-alert-text;
156
- }
157
- .flex-grow{
158
- flex-grow: 1;
159
- }
160
130
  .flex-super-grow{
161
131
  flex-grow: 2;
162
132
  }
163
- .flex-shrink{
164
- flex-shrink: 0;
133
+ .flex-small-grow {
134
+ flex-grow: 0.3;
135
+ }
136
+ .flex-grow-mobile {
137
+ @media (max-width: 960px) {
138
+ flex-grow: 1;
139
+ }
165
140
  }
166
141
  .text-center-mobile{
167
142
  text-align: inherit;
@@ -169,15 +144,11 @@ body{
169
144
  text-align: center;
170
145
  }
171
146
  }
172
- .box-share {
173
- flex-grow: inherit;
174
- }
175
147
  .hide-phone{
176
148
  @media (max-width: 960px) {
177
149
  display: none !important;
178
150
  }
179
151
  }
180
-
181
152
  .show-phone{
182
153
  display: none;
183
154
  @media (max-width: 960px) {
@@ -188,7 +159,6 @@ body{
188
159
  visibility: hidden !important;
189
160
  }
190
161
 
191
-
192
162
  .d-contents{
193
163
  display: contents;
194
164
  }
@@ -199,14 +169,16 @@ body{
199
169
  background-size: cover;
200
170
  border-radius: 0.8rem !important;
201
171
  overflow: hidden;
172
+ flex-shrink: 0;
173
+ @media (max-width: 960px) {
174
+ flex-grow: 0;
175
+ }
176
+ @media (max-width: 450px) {
177
+ margin: 0.5rem auto 2rem !important;
178
+ float: inherit !important;
179
+ display: flex;
180
+ }
202
181
  }
203
- .img-box-light {
204
- height: 100px;
205
- width: 100px;
206
- background-size: cover;
207
- margin-right: 10px;
208
- }
209
-
210
182
  .img-box-circle {
211
183
  height: 10rem;
212
184
  width: 10rem;
@@ -216,21 +188,6 @@ body{
216
188
  box-shadow: 0px 8px 26px 6px rgba(64, 163, 114, 0.3);
217
189
  }
218
190
 
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
191
  .comma {
235
192
  display: flex;
236
193
  flex-wrap: wrap;
@@ -248,31 +205,10 @@ body{
248
205
  }
249
206
  }
250
207
  }
251
-
252
- .noList{
253
- list-style: none;
254
- }
255
208
  .c-hand{
256
209
  cursor: pointer;
257
210
  }
258
211
 
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
212
  .html-wysiwyg-content{
277
213
  h3,h4{
278
214
  margin: 0 0 0.5em 0 !important;
@@ -289,61 +225,11 @@ body{
289
225
  margin-bottom: 0.2rem;
290
226
  }
291
227
  }
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
- }
228
+
338
229
  @media (max-width: 960px) {
339
230
  .d-flex:not(.flex-column){
340
231
  flex-wrap: wrap;
341
232
  flex-grow: 1;
342
- &.img-box{
343
- flex-grow: 0;
344
- }
345
233
  }
346
234
  }
347
-
348
-
349
235
  }
@@ -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
  }