mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
feat: Add hidden-visually CSS class for accessibility
Add utility class to hide elements visually while keeping them accessible to screen readers. This follows web accessibility best practices and aligns with the Nextcloud Files app approach. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
6ee4c16d10
commit
101d103a85
1 changed files with 9 additions and 0 deletions
|
|
@ -9,6 +9,15 @@
|
|||
|
||||
.is-fullwidth{width: 100%;}
|
||||
|
||||
.hidden-visually {
|
||||
position: absolute;
|
||||
left: -10000px;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.button.is-warning{
|
||||
background-color: var(--color-warning, #eca700);
|
||||
border-color: var(--color-warning-hover, #f0b933);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue