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:
authorTim Krief <tim@timkrief.com>2020-07-21 12:59:04 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-07-23 21:22:28 +0300
commitd3d3555f5e87c7ae88446a6aa3df99361a36cf0e (patch)
treee430a98419830df2dfac3fa26cbdc11cd82faa92 /css
parenta5168955776eb6fcf864aee12f4bc49eb08ab8e3 (diff)
Made lines straight between two rows on the same level
The lines between two rows on the same level were rounded off on the left, which looked a bit off. Now they are straight. Signed-off-by: Tim Krief <tim@timkrief.com>
Diffstat (limited to 'css')
-rw-r--r--css/src/style.scss7
1 files changed, 4 insertions, 3 deletions
diff --git a/css/src/style.scss b/css/src/style.scss
index 2f937f6c..f67bda9a 100644
--- a/css/src/style.scss
+++ b/css/src/style.scss
@@ -500,9 +500,11 @@ $priority_colors: ($red_overdue, $red_overdue, $red_overdue, $red_overdue, $yell
&::before {
content: '';
display: block;
- padding: var(--border-radius);
+ height: 1px;
+ border: 0 solid var(--color-main-background);
+ border-width: var(--border-radius) 0;
margin: calc(-1 * var(--border-radius)) 0;
- background: var(--color-main-background);
+ background-color: var(--color-background-darker);
position: relative;
z-index: -1;
}
@@ -532,7 +534,6 @@ $priority_colors: ($red_overdue, $red_overdue, $red_overdue, $red_overdue, $yell
position: relative;
background-color: var(--color-main-background);
border-radius: var(--border-radius);
- box-shadow: inset 0 2px 0 -1px var(--color-background-darker);
&.active {
.task-info .title {