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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'css/vote.scss')
-rw-r--r--css/vote.scss26
1 files changed, 21 insertions, 5 deletions
diff --git a/css/vote.scss b/css/vote.scss
index 08d3afac..99cff64d 100644
--- a/css/vote.scss
+++ b/css/vote.scss
@@ -103,7 +103,7 @@ $user-column-width: 265px;
.vote, .poll-cell {
flex-grow: 1;
- width: 85px;
+ max-width: 85px;
margin: 2px;
align-items:center;
}
@@ -121,6 +121,7 @@ $user-column-width: 265px;
background-repeat: no-repeat;
background-size: 32px;
height: 44px;
+ display: flex;
&.yes {
background-color: $bg-yes;
@@ -153,13 +154,24 @@ $user-column-width: 265px;
}
&.active {
+
cursor: pointer;
- border: 2px solid;
+ // border: 2px solid;
border-radius: var(--border-radius);
box-sizing: border-box;
+ width: 25px;
+ height: 25px;
+ background-size: 20px;
+ margin: auto !important;
+ background-color: var(--color-main-background);
+ color: var(--color-primary);
+ flex-grow: 0 !important;
+ &.icon-no {
+ background-image: initial;
+ }
&.unvoted {
- background-color: $bg-maybe;
- color: $fg-maybe;
+ background-color: $bg-maybe;
+ color: $fg-maybe;
}
}
}
@@ -193,7 +205,11 @@ $user-column-width: 265px;
.current-user {
- background-color: var(--color-background-dark);
+ background-color: var(--color-primary-element-light);
+ .name {
+ color: var(--color-primary-text);
+ font-weight: bold;
+ }
}
#switchDetails {