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:
authordartcafe <github@dartcafe.de>2022-03-28 19:19:53 +0300
committerdartcafe <github@dartcafe.de>2022-03-28 19:19:53 +0300
commit8d64ec655c91a4d2aaae10bc062bb67af3cca799 (patch)
treef57d8904fdc088880b76423b7cede7ece9a9fd41 /src/js/components/VoteTable/VoteTable.vue
parent8f426e577319f846869d5fd2d5661b19bb8a063d (diff)
refactor ActionDelete
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/VoteTable/VoteTable.vue')
-rw-r--r--src/js/components/VoteTable/VoteTable.vue24
1 files changed, 18 insertions, 6 deletions
diff --git a/src/js/components/VoteTable/VoteTable.vue b/src/js/components/VoteTable/VoteTable.vue
index 34ca77dc..4982a5b5 100644
--- a/src/js/components/VoteTable/VoteTable.vue
+++ b/src/js/components/VoteTable/VoteTable.vue
@@ -105,12 +105,6 @@ export default {
display: flex;
flex: 1;
- .participant {
- display: flex;
- align-self: stretch;
- justify-content: center;
- }
-
.participant, .vote-item {
flex: 0 0 auto;
height: 4.5em;
@@ -123,6 +117,24 @@ export default {
}
}
+ .participant {
+ display: flex;
+ align-self: stretch;
+ justify-content: center;
+
+ .material-design-icon {
+ // display: none;
+ visibility: hidden;
+ }
+
+ &:hover {
+ background: var(--color-background-hover);
+ .material-design-icon {
+ visibility: visible;
+ }
+ }
+ }
+
.vote-table__users {
display: flex;
flex-direction: column;