Skip to content

Commit

Permalink
✨ Voting Booth: Security confirmation checkbox support (#370) (#372)
Browse files Browse the repository at this point in the history
Parent issue: sequentech/meta#224
  • Loading branch information
edulix committed Nov 17, 2023
1 parent 8206468 commit 7fc61d5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
12 changes: 10 additions & 2 deletions dist/themes/default/app.less
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,12 @@
}
}

.btn[disabled] {
.btn[disabled], .btn.disabled-cls {
opacity: 0.4;

&:hover {
box-shadow: none !important;
}
}

.btn-opt-warn {
Expand Down Expand Up @@ -268,9 +272,13 @@
}
}

.btn[disabled] {
.btn[disabled], .btn.disabled-cls {
background-color: @grey-darker !important;
opacity: 1 !important;

&:hover {
box-shadow: none !important;
}
}

.btn-cancel {
Expand Down
2 changes: 1 addition & 1 deletion dist/themes/default/app.min.css

Large diffs are not rendered by default.

12 changes: 10 additions & 2 deletions themes/default/app.less
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,12 @@
}
}

.btn[disabled] {
.btn[disabled], .btn.disabled-cls {
opacity: 0.4;

&:hover {
box-shadow: none !important;
}
}

.btn-opt-warn {
Expand Down Expand Up @@ -268,9 +272,13 @@
}
}

.btn[disabled] {
.btn[disabled], .btn.disabled-cls {
background-color: @grey-darker !important;
opacity: 1 !important;

&:hover {
box-shadow: none !important;
}
}

.btn-cancel {
Expand Down

0 comments on commit 7fc61d5

Please sign in to comment.