Skip to content

Commit

Permalink
Use the color-primary-element* variables
Browse files Browse the repository at this point in the history
Signed-off-by: Simon L <szaimen@e.mail.de>
  • Loading branch information
szaimen committed May 12, 2023
1 parent ccf1445 commit 9f91ecc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export default {
}
.avatardiv.circles {
background: var(--color-primary);
background: var(--color-primary-element);
}
.icon-circles {
Expand Down
2 changes: 1 addition & 1 deletion src/BoardSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default {
}
li.selected {
border: 1px solid var(--color-primary);
border: 1px solid var(--color-primary-element);
}
.board-bullet {
Expand Down
2 changes: 1 addition & 1 deletion src/components/AttachmentDragAndDrop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export default {
.dragover {
position: absolute;
background: var(--color-primary-light);
background: var(--color-primary-element-light);
z-index: 11;
display: flex;
border-radius: var(--border-radius);
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/Description.vue
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ h5 {
.CodeMirror-selected,
.CodeMirror-line::selection, .CodeMirror-line>span::selection, .CodeMirror-line>span>span::selection {
background: var(--color-primary-element) !important;
color: var(--color-primary-text) !important;
color: var(--color-primary-element-text) !important;
}
.editor-preview,
Expand Down
2 changes: 1 addition & 1 deletion src/components/cards/CardBadges.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default {
&.overdue {
background-color: var(--color-error);
color: var(--color-primary-text);
color: var(--color-primary-element-text);
opacity: .7;
}
&.now {
Expand Down
2 changes: 1 addition & 1 deletion src/components/cards/badges/DueDate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default {
&.overdue {
background-color: var(--color-error);
color: var(--color-primary-text);
color: var(--color-primary-element-text);
opacity: .7;
padding: 3px 4px;
}
Expand Down

0 comments on commit 9f91ecc

Please sign in to comment.