Fix modal height and accordion in firefox
This commit is contained in:
parent
640f3f8228
commit
4259b070de
1 changed files with 9 additions and 1 deletions
|
@ -363,7 +363,7 @@ table.notimestampseconds td.time span.seconds {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
width:100%;
|
width:100%;
|
||||||
height:200%;
|
height: 100%;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
background-color:rgba(0, 0, 0, 0.5)
|
background-color:rgba(0, 0, 0, 0.5)
|
||||||
}
|
}
|
||||||
|
@ -379,6 +379,7 @@ table.notimestampseconds td.time span.seconds {
|
||||||
transition: .2s ease-in-out, top .3s ease-out;
|
transition: .2s ease-in-out, top .3s ease-out;
|
||||||
transition-delay: 0s, 0.1s;
|
transition-delay: 0s, 0.1s;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
|
height: 200%;
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
@ -437,6 +438,13 @@ h2 span, h2 small {
|
||||||
border: 0px solid transparent;
|
border: 0px solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* fix for firefox being stupid */
|
||||||
|
@-moz-document url-prefix() {
|
||||||
|
.panel[data-state=collapsed] .panel-collapse * {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* */
|
/* */
|
||||||
/* Mobile layout */
|
/* Mobile layout */
|
||||||
/* */
|
/* */
|
||||||
|
|
Loading…
Add table
Reference in a new issue