Commit b6b0fe7d authored by Chris Rebert's avatar Chris Rebert

rm `visibility` where redundant to `display`

Refs #15755
parent 38fbd8fe
...@@ -17,9 +17,8 @@ ...@@ -17,9 +17,8 @@
.collapse { .collapse {
display: none; display: none;
visibility: hidden;
&.in { display: block; visibility: visible; } &.in { display: block; }
tr&.in { display: table-row; } tr&.in { display: table-row; }
tbody&.in { display: table-row-group; } tbody&.in { display: table-row-group; }
} }
......
...@@ -67,7 +67,6 @@ ...@@ -67,7 +67,6 @@
&.collapse { &.collapse {
display: block !important; display: block !important;
visibility: visible !important;
height: auto !important; height: auto !important;
padding-bottom: 0; // Override default setting padding-bottom: 0; // Override default setting
overflow: visible !important; overflow: visible !important;
......
...@@ -223,11 +223,9 @@ ...@@ -223,11 +223,9 @@
.tab-content { .tab-content {
> .tab-pane { > .tab-pane {
display: none; display: none;
visibility: hidden;
} }
> .active { > .active {
display: block; display: block;
visibility: visible;
} }
} }
......
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
position: absolute; position: absolute;
z-index: @zindex-tooltip; z-index: @zindex-tooltip;
display: block; display: block;
visibility: visible;
// Reset font and text properties given new insertion method // Reset font and text properties given new insertion method
font-family: @font-family-base; font-family: @font-family-base;
font-size: @font-size-small; font-size: @font-size-small;
......
Markdown is supported
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