Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-05-28 11:29:42 +0300
committerdartcafe <github@dartcafe.de>2021-07-01 21:01:42 +0300
commit9b4aaa79c0d838bcfdfb3c571ef3376156ac2f63 (patch)
tree284962b9cfc81ef983be003a64368d3c24ba2f8f /src
parentb0eefd873414c0c0ff60bd8e8f78419595cbdd70 (diff)
obsolete since nextcloud/vue@3.10.0
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src')
-rw-r--r--src/js/assets/scss/hacks.scss16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/js/assets/scss/hacks.scss b/src/js/assets/scss/hacks.scss
index 49e02165..fc24cfe4 100644
--- a/src/js/assets/scss/hacks.scss
+++ b/src/js/assets/scss/hacks.scss
@@ -6,24 +6,20 @@
}
}
+// When switching from non range mode to range mode, date picker crosses
+// the right window border
+// Force date picker position to the right side of the sidebar
.mx-datepicker-main, .mx-datepicker-popup {
- right: 0 !important;
+ right: 4px !important;
left: auto !important;
}
+// fill full input with background color
.mx-input {
background-clip: initial !important;
}
-
-// make date-picker usable
-@media only screen and (min-width: 750px) {
- .edit #app-sidebar-vue {
- // force sidebar min-width to 480px, to show the full date picker, when user is allowed to edit poll
- min-width: 480px;
- }
-}
-
+// force scrolling of sidebar-tabs content
.app-sidebar-tabs {
overflow-y: hidden;
}