Merge pull request #4090 from PaulAdamDavis/ie-fixes

IE UI fixes
This commit is contained in:
John O'Nolan 2014-09-23 06:14:11 +02:00
commit a41c17936c
4 changed files with 15 additions and 8 deletions

View File

@ -38,6 +38,7 @@
h1 {
margin-top: -6px;
margin-bottom: -21px;
font-feature-settings: normal;
.version {
font-weight: 300;
@ -71,6 +72,7 @@
float: left;
display: inline-block;
margin: 0;
font-feature-settings: normal;
}
dt {
margin-right: 5px;

View File

@ -135,7 +135,12 @@
// The burger to expand .global-nav menu
.menu-button {
@include icon($i-menu, 18px) { line-height: 44px; }
@include icon($i-menu, 18px) {
position: absolute;
top: 50%;
left: 22px;
transform: translateY(-50%);
}
display: block;
position: absolute;
top: 0;

View File

@ -12,8 +12,8 @@
// Main settings-menu styles, apply to every item
.settings-menu {
width: 25%;
position: fixed;
top: 60px;
position: absolute;
top: 0;
left: 0;
bottom: 0;
z-index: 700;
@ -24,7 +24,7 @@
}
@media (max-width: 900px) {
top: 44px;
top: 0;
}
ul {

View File

@ -19,21 +19,21 @@
.object-list-item {
@media (max-width: 500px) {
@media (max-width: 600px) {
display: block;
padding: 15px 0;
@include clearfix;
}
@media (min-width: 501px) {
@media (min-width: 601px) {
display: flex;
justify-content: start;
align-items: center;
padding: 0 15px;
height: 68px;
}
border-top: 1px solid $lightbrown;
min-height: 68px;
} // .object-list-item
@ -89,7 +89,7 @@ a.object-list-item {
.object-list-item-body {
flex: 1;
flex: 1 1 auto;
align-items: stretch;
padding-left: 15px;