@saooti/octopus-sdk 33.0.8 → 33.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/package.json +1 -1
- package/src/assets/form.scss +11 -0
- package/src/assets/general.scss +2 -2
- package/src/assets/multiselect.scss +0 -1
- package/src/assets/share.scss +0 -1
- package/src/components/display/categories/CategoryList.vue +1 -1
- package/src/components/display/comments/CommentInput.vue +1 -1
- package/src/components/display/filter/ProductorSearch.vue +1 -1
- package/src/components/display/list/Paginate.vue +1 -1
- package/src/components/display/podcasts/PodcastSwiperList.vue +1 -1
- package/src/components/display/sharing/SharePlayer.vue +1 -1
- package/src/components/misc/player/PlayerTimeline.vue +1 -1
- package/vite.config.js +1 -0
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
|
@@ -77,4 +77,15 @@
|
|
|
77
77
|
.vc-select select{
|
|
78
78
|
padding: 0 20px 0 8px !important;
|
|
79
79
|
}
|
|
80
|
+
.vc-date{
|
|
81
|
+
.vc-month,.vc-day,.vc-year{
|
|
82
|
+
color: $octopus-primary-color !important;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
.vc-highlight{
|
|
86
|
+
background-color: $octopus-primary-color !important;
|
|
87
|
+
}
|
|
88
|
+
.vc-select select:focus{
|
|
89
|
+
border-color: $octopus-primary-color !important;
|
|
90
|
+
}
|
|
80
91
|
}
|
package/src/assets/general.scss
CHANGED
|
@@ -116,11 +116,11 @@ body{
|
|
|
116
116
|
border-radius: 1rem;
|
|
117
117
|
flex-grow: 1;
|
|
118
118
|
overflow: auto;
|
|
119
|
-
box-shadow: 0px 12px 48px 6px $
|
|
119
|
+
box-shadow: 0px 12px 48px 6px $primaryColorReallyTransparent !important;
|
|
120
120
|
@media (max-width: 500px){
|
|
121
121
|
margin: 0.3rem;
|
|
122
122
|
padding: 0.8rem;
|
|
123
|
-
box-shadow:0px 6px 20px 3px $
|
|
123
|
+
box-shadow:0px 6px 20px 3px $primaryColorReallyTransparent !important;
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
|
package/src/assets/share.scss
CHANGED