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

Fix problem with embedded records.

parent 6f14326e
No related merge requests found
...@@ -24,3 +24,39 @@ a { ...@@ -24,3 +24,39 @@ a {
color: @state-danger-text; color: @state-danger-text;
} }
} }
/**
* OVERRIDE BS3 COLLAPSE MENU HIDDEN
*
* instead of display: none, keep things sr accessible
* https://tailwindcss.com/docs/screen-readers/
*/
.collapse.collapse:not(.in) {
position: absolute;
display: block;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
color: #000;
background-color: #fff;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
.long-view.collapse:not(.in) {
display: none;
}
@media (min-width: 768px) {
.navbar-collapse.collapse:not(.in) {
position: static;
width: auto;
height: auto;
padding: 0;
margin: 0;
overflow: visible;
clip: auto;
white-space: normal;
}
}
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