Skip to content

Commit

Permalink
deactivate modal blur example
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Nov 9, 2023
1 parent 9fd8cd2 commit b405dec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions _includes/plugins/custom-css-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ Activating horizontal scrolling on data-tables:
}
```

Deactivate the background blur for modals, which might be problematic in [RDP sessions](https://github.com/kimai/kimai/discussions/4415):
```css
.modal-blur {
-webkit-backdrop-filter: blur(0px) !important;
backdrop-filter: blur(0px) !important;
}
```

Switching the order of save and cancel buttons:
```css
.modal-footer button[type=submit], .box-footer input[type=submit] {
Expand Down

0 comments on commit b405dec

Please sign in to comment.