Skip to content

Commit

Permalink
Merge branch 'dev' into ROU-4372
Browse files Browse the repository at this point in the history
  • Loading branch information
BenOsodrac committed Aug 30, 2023
2 parents 91215ed + 535f692 commit bf0c2b3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dist/OutSystemsUI.css
Original file line number Diff line number Diff line change
Expand Up @@ -2796,10 +2796,16 @@ span.validation-message{
margin-right:var(--space-base);
width:auto;
}
[data-upload]:focus-visible{
border:var(--border-size-s) solid var(--color-primary);
}
.is-rtl [data-upload] [data-icon]{
margin-left:var(--space-base);
margin-right:var(--space-none);
}
.has-accessible-features [data-upload]{
border:var(--border-size-s) solid var(--color-neutral-7);
}
/*! 4.13. Button Group */
.button-group{
background-color:transparent;
Expand Down
12 changes: 12 additions & 0 deletions src/scss/03-widgets/_upload.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
margin-right: var(--space-base);
width: auto;
}

&:focus-visible {
border: var(--border-size-s) solid var(--color-primary);
}
}

// IsRTL --------------------------------------------------------------------
Expand All @@ -55,3 +59,11 @@
}
}
}

/* Accessibility -------------------------------------------------------------- */
///
.has-accessible-features {
[data-upload] {
border: var(--border-size-s) solid var(--color-neutral-7);
}
}

0 comments on commit bf0c2b3

Please sign in to comment.