mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-25 08:53:50 +00:00
feat(tasks): use primary rather than accent color for current task
This commit is contained in:
parent
0e05b2cf0d
commit
89f00935e9
3 changed files with 7 additions and 3 deletions
|
|
@ -51,7 +51,9 @@
|
|||
|
||||
.tab-content {
|
||||
padding: $s;
|
||||
|
||||
@include dark-theme {
|
||||
color: $dark-theme-text-color-lighter;
|
||||
}
|
||||
h3 {
|
||||
margin-bottom: $s;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
<div class="inner-wrapper bg-standard"
|
||||
[class.bg-primary]="isCurrent"
|
||||
[class.color-contrast]="isCurrent"
|
||||
[class.isNotesOpen]="task.isNotesOpen">
|
||||
|
||||
<div class="first-line">
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ $this-first-line-min-height: 40px;
|
|||
}
|
||||
|
||||
&.isCurrent > .inner-wrapper {
|
||||
background: $c-accent;
|
||||
//background: $c-accent;
|
||||
box-shadow: $this-active-shadow;
|
||||
|
||||
.first-line {
|
||||
|
|
@ -179,7 +179,7 @@ $this-first-line-min-height: 40px;
|
|||
|
||||
.show-notes-btn {
|
||||
mat-icon {
|
||||
transition: $transition-standard;
|
||||
transition: transform $transition-standard;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue