Skip to content

Commit

Permalink
#88 Change background and border behaviour on error and success
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalbeck committed Feb 5, 2020
1 parent b4ef864 commit c8bdb18
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions css/apps/thirdparty/_polls.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,28 @@
color: var(--color-error);
}
}

input.success,
input.icon-confirn.success {
background-color: var(--color-main-background) !important;
border-color: var(--color-success) !important;
}

input.error {
background-color: var(--color-main-background) !important;
border-color: var(--color-error) !important;
}

.vote-row .counter {

.yes {
background-color: var(--color-success);
}

.no {
background-color: var(--color-error);
}
}
}

.app-polls #app-sidebar {
Expand Down

0 comments on commit c8bdb18

Please sign in to comment.