Skip to content

Commit

Permalink
Merge pull request #12063 from owncloud/fix/disabled-checkbox-opacity
Browse files Browse the repository at this point in the history
fix: lower disabled checkbox opacity
  • Loading branch information
LukasHirt authored Dec 31, 2024
2 parents d54d3ce + 23bb045 commit eb4f304
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Change opacity of disabled checkboxes

We've fixed an issue where disabled checkbox was not clearly distinguishable from enabled ones by lowering it's opacity.

https://github.com/owncloud/web/pull/12063
https://github.com/owncloud/web/issues/12060
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ export default defineComponent({
&:disabled {
background-color: $form-radio-disabled-background;
cursor: default;
opacity: 0.4;
}
&:disabled:checked {
Expand Down

0 comments on commit eb4f304

Please sign in to comment.