fix firefox flex bug in ticket zoom
This commit is contained in:
parent
252e987e72
commit
36d3c32d24
2 changed files with 59 additions and 51 deletions
|
@ -1,5 +1,4 @@
|
||||||
<div class="tabsSidebar-holder flex vertical">
|
<div class="tabsSidebar-holder">
|
||||||
<div class="flex u-positionOrigin horizontal">
|
|
||||||
<div class="main no-padding flex tabsSidebar-sidebarSpacer tabsSidebar-tabsSpacer">
|
<div class="main no-padding flex tabsSidebar-sidebarSpacer tabsSidebar-tabsSpacer">
|
||||||
<div class="ticketZoom">
|
<div class="ticketZoom">
|
||||||
<div class="scrollPageHeader tabsSidebar-sidebarSpacer zIndex-9 horizontal center"
|
<div class="scrollPageHeader tabsSidebar-sidebarSpacer zIndex-9 horizontal center"
|
||||||
|
@ -51,7 +50,6 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="tabsSidebar vertical"></div>
|
<div class="tabsSidebar vertical"></div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="attributeBar">
|
<div class="attributeBar">
|
||||||
<form class="form-inline is-closed hide" role="form">
|
<form class="form-inline is-closed hide" role="form">
|
||||||
|
|
|
@ -3442,6 +3442,8 @@ footer {
|
||||||
.tabsSidebar-holder {
|
.tabsSidebar-holder {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@extend .flex;
|
||||||
|
@extend .vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tabsSidebar .sidebar {
|
.tabsSidebar .sidebar {
|
||||||
|
@ -3500,7 +3502,7 @@ footer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 60px;
|
||||||
transition: 500ms;
|
transition: 500ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4799,6 +4801,14 @@ body.fit {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.flex-full {
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-webkit-flex: 1 1 100%;
|
||||||
|
-moz-flex: 1 1 100%;
|
||||||
|
-ms-flex: 1 1 100%;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.flex-auto {
|
.flex-auto {
|
||||||
-webkit-box-flex: 1;
|
-webkit-box-flex: 1;
|
||||||
-webkit-flex: 1 1 auto;
|
-webkit-flex: 1 1 auto;
|
||||||
|
|
Loading…
Reference in a new issue