UI fix for OS X when having scrollbars `always on`

Resolves #343.
This commit is contained in:
William Tisäter 2014-09-19 10:52:31 +02:00
parent c061eec101
commit 1856ee3104
1 changed files with 7 additions and 3 deletions

View File

@ -9,15 +9,14 @@
.list-group-item-heading, .list-inline {
margin: 10px 15px 10px 15px;
padding: 0px 5px 10px 5px;
padding: 0px 5px 0px 5px;
}
.list-inline {
padding-left: 0px;
color: $gray;
font-size: 13px;
overflow: scroll;
height: 30px;
height: 20px;
}
.list-group-item-heading {
@ -80,6 +79,11 @@
margin: 0;
font-size: 12px;
color: $gray-light;
overflow: auto;
&::-webkit-scrollbar {
-webkit-appearance: none;
}
}
}