Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
28582080
Commit
28582080
authored
10 years ago
by
Mark Otto
Browse files
Options
Download
Plain Diff
Merge pull request #14673 from twbs/restore_sr_friendly_collapse
More screenreader friendly Collapse, Take 2
parents
73117814
6cfd176a
4 merge requests
!28721
Hot test
,
!16605
Test pull please ignore
,
!22103
test
,
!25326
Adjust examples
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
less/component-animations.less
+5
-2
less/component-animations.less
less/navbar.less
+1
-0
less/navbar.less
less/navs.less
+2
-0
less/navs.less
with
8 additions
and
2 deletions
+8
-2
less/component-animations.less
+
5
-
2
View file @
28582080
...
...
@@ -17,8 +17,9 @@
.collapse {
display: none;
visibility: hidden;
&.in { display: block; }
&.in { display: block;
visibility: visible;
}
tr&.in { display: table-row; }
tbody&.in { display: table-row-group; }
}
...
...
@@ -27,5 +28,7 @@
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
.transition-property(~"height, visibility");
.transition-duration(.35s);
.transition-timing-function(ease);
}
This diff is collapsed.
Click to expand it.
less/navbar.less
+
1
-
0
View file @
28582080
...
...
@@ -67,6 +67,7 @@
&.collapse {
display: block !important;
visibility: visible !important;
height: auto !important;
padding-bottom: 0; // Override default setting
overflow: visible !important;
...
...
This diff is collapsed.
Click to expand it.
less/navs.less
+
2
-
0
View file @
28582080
...
...
@@ -223,9 +223,11 @@
.tab-content {
> .tab-pane {
display: none;
visibility: hidden;
}
> .active {
display: block;
visibility: visible;
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets