The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 7418d962 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Disable problematic accessibility styles.

parent 1d03e88f
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
$bp3-icon-path: '../../bootprint3/images/icons'; $bp3-icon-path: '../../bootprint3/images/icons';
.doi-icon { width: 16px; } .doi-icon { width: 16px; }
.bp-icon, .bp-icon,
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -25,6 +25,7 @@ a { ...@@ -25,6 +25,7 @@ a {
* instead of display: none, keep things sr accessible * instead of display: none, keep things sr accessible
* https://tailwindcss.com/docs/screen-readers/ * https://tailwindcss.com/docs/screen-readers/
*/ */
/*
.collapse.collapse:not(.in) { .collapse.collapse:not(.in) {
position: absolute; position: absolute;
display: block; display: block;
...@@ -42,6 +43,7 @@ a { ...@@ -42,6 +43,7 @@ a {
.long-view.collapse:not(.in) { .long-view.collapse:not(.in) {
display: none; display: none;
} }
*/
@media (min-width: 768px) { @media (min-width: 768px) {
.navbar-collapse.collapse:not(.in) { .navbar-collapse.collapse:not(.in) {
position: static; position: static;
......
@import '../vendor/bootstrap-accessibility/bootstrap-accessibility'; @import "../vendor/bootstrap-accessibility/bootstrap-accessibility";
@import '../vendor/a11y'; @import "../vendor/a11y";
// ACCESSIBILITY IMPROVEMENTS /* ACCESSIBILITY IMPROVEMENTS */
a { a {
text-decoration: underline; text-decoration: underline;
} }
// AAA Color Contrasts /* AAA Color Contrasts */
$badge-bg: #595959 !default; $badge-bg: #595959;
$breadcrumb-color: #535353 !default; $breadcrumb-color: #535353;
$breadcrumb-active-color: #444 !default; $breadcrumb-active-color: #444;
$state-danger-text: #8a211e !default;
$state-danger-text: #8a211e;
.alert-danger, .alert-danger,
.alert-danger a { .alert-danger a {
color: $state-danger-text; color: $state-danger-text;
.btn-danger {
color: #fff;
}
.btn-danger:hover {
color: $state-danger-text;
}
} }
/** /**
...@@ -53,16 +44,15 @@ $state-danger-text: #8a211e !default; ...@@ -53,16 +44,15 @@ $state-danger-text: #8a211e !default;
display: none; display: none;
} }
*/ */
@media (min-width: 768px) { @media (min-width: 768px) {
.navbar-collapse.collapse:not(.in) { .navbar-collapse.collapse:not(.in) {
clip: auto; position: static;
width: auto;
height: auto; height: auto;
padding: 0;
margin: 0; margin: 0;
overflow: visible; overflow: visible;
padding: 0; clip: auto;
position: static;
white-space: normal; white-space: normal;
width: auto;
} }
} }
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -21,7 +21,7 @@ $search-row-selected-color: $white; ...@@ -21,7 +21,7 @@ $search-row-selected-color: $white;
$sidebar-title-bg: $white; $sidebar-title-bg: $white;
$sidebar-title-color: $near-black; $sidebar-title-color: $near-black;
$sidebar-title-icon-color: $light-gray; $sidebar-title-icon-color: $light-silver;
$sidebar-item-bg: $white; $sidebar-item-bg: $white;
$sidebar-item-color: $black; $sidebar-item-color: $black;
$sidebar-item-hover-bg: $lightest-blue; $sidebar-item-hover-bg: $lightest-blue;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment