make the buffers list static width instead of relative
This commit is contained in:
parent
70abe58afe
commit
f7b0b6fffe
1 changed files with 7 additions and 5 deletions
|
@ -140,7 +140,7 @@ input[type=text], input[type=password], .badge {
|
||||||
}
|
}
|
||||||
#topbar .title {
|
#topbar .title {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 14%;
|
left: 145px; /* sidebar */
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
#topbar .actions {
|
#topbar .actions {
|
||||||
|
@ -160,10 +160,9 @@ input[type=text], input[type=password], .badge {
|
||||||
}
|
}
|
||||||
#sidebar {
|
#sidebar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 12%;
|
width: 140px;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-width: 130px;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-top: 35px; /* topbar */
|
padding-top: 35px; /* topbar */
|
||||||
font-size: smaller;
|
font-size: smaller;
|
||||||
|
@ -232,7 +231,7 @@ input[type=text], input[type=password], .badge {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 99%;
|
height: 99%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
margin-left: 14%; /* sidebar */
|
margin-left: 145px; /* sidebar */
|
||||||
width: auto;
|
width: auto;
|
||||||
top: 25px; /* topbar */
|
top: 25px; /* topbar */
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
@ -245,7 +244,7 @@ input[type=text], input[type=password], .badge {
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-fixed-bottom {
|
.navbar-fixed-bottom {
|
||||||
margin: 0 5px 0 14%;
|
margin: 0 5px 0 145px; /* sidebar */
|
||||||
}
|
}
|
||||||
.navbar-inverse {
|
.navbar-inverse {
|
||||||
background-color: #181818;
|
background-color: #181818;
|
||||||
|
@ -263,6 +262,9 @@ input[type=text], input[type=password], .badge {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
#bufferlines {
|
||||||
|
padding-bottom: 55px; /* navbar fixed bottom */
|
||||||
|
}
|
||||||
.navbar-fixed-bottom {
|
.navbar-fixed-bottom {
|
||||||
margin: 0 5px 0 5px;
|
margin: 0 5px 0 5px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue