Set double outline to buttons in focus state

Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
pull/39277/head
julia.kirschenheuter 3 years ago
parent 12ee2581aa
commit 34bbb4ed48
  1. 3
      apps/dashboard/src/DashboardApp.vue
  2. 5
      apps/user_status/src/UserStatus.vue
  3. 2
      core/css/apps.css
  4. 2
      core/css/apps.css.map
  5. 6
      core/css/apps.scss
  6. 2
      core/css/server.css
  7. 2
      core/css/server.css.map
  8. 4
      dist/dashboard-main.js
  9. 2
      dist/dashboard-main.js.map
  10. 4
      dist/user_status-menu.js
  11. 2
      dist/user_status-menu.js.map

@ -522,7 +522,8 @@ export default {
background-color: var(--color-background-hover)!important;
}
&:focus-visible {
box-shadow: 0 0 0 2px var(--color-main-text) !important;
box-shadow: 0 0 0 4px var(--color-main-background) !important;
outline: 2px solid var(--color-main-text) !important;
}
}

@ -301,8 +301,9 @@ export default {
&:focus {
background-color: var(--color-background-hover);
}
&:focus {
box-shadow: 0 0 0 2px var(--color-main-text) !important;
&:focus-visible {
box-shadow: 0 0 0 4px var(--color-main-background) !important;
outline: 2px solid var(--color-main-text) !important;
}
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -731,7 +731,7 @@ $min-content-width: variables.$breakpoint-mobile - variables.$navigation-width -
}
}
}
&::-webkit-scrollbar-button {
height: var(--body-container-radius);
}
@ -1430,3 +1430,7 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2);
display: flex;
}
}
.button.primary.skip-navigation:focus-visible {
box-shadow: 0 0 0 4px var(--color-main-background) !important;
outline: 2px solid var(--color-main-text) !important;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save