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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-08-01 14:30:13 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-08-01 22:37:55 +0300
commitee638490114b9604250dc2704d3369acde8e3238 (patch)
tree8ded61e54ed07670d3fac34a28c4872f5e1a99f7 /css
parent64df04f4a4165e0b060a44d6731ccf1007c41b39 (diff)
Allow to adjust the calendar order
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'css')
-rw-r--r--css/src/style.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/css/src/style.scss b/css/src/style.scss
index 923c34a3..b5e94d7a 100644
--- a/css/src/style.scss
+++ b/css/src/style.scss
@@ -10,6 +10,9 @@ $blue_due: #4271a6; // due dates and low importance
*/
.app-navigation {
> ul {
+ display: block !important;
+
+ > div > li,
> li {
&.collection .app-navigation-entry-icon::before {
content: '';
@@ -67,9 +70,12 @@ $blue_due: #4271a6; // due dates and low importance
}
}
- &.dnd-hover {
+ &.dnd-hover,
+ &.sortable-ghost {
// background-color: rgba( $color-primary, .1 ); didn't work for some reason
background-color: transparentize( $color-primary, .9 );
+ box-shadow: 0 0 3px var(--color-primary);
+ z-index: 1000;
}
button {