Improve behaviour of top line

use positition fixed to eliminate problem with title being too long and
pushing the content to being two lines instead of one
with-route-provider
Tor Hveem 12 years ago
parent f5088d54b0
commit c77746695f
  1. 11
      css/glowingbear.css

@ -115,10 +115,8 @@ input[type=text], input[type=password] {
line-height: 25px; line-height: 25px;
white-space: nowrap; white-space: nowrap;
} }
#topbar > * {
float: left;
}
#topbar .brand { #topbar .brand {
float: left;
height: 25px; height: 25px;
padding-left: 5px; padding-left: 5px;
} }
@ -126,11 +124,14 @@ input[type=text], input[type=password] {
height: 25px; height: 25px;
} }
#topbar .title { #topbar .title {
padding-left: 10%; position: fixed;
left: 14%;
overflow: hidden; overflow: hidden;
} }
#topbar .actions { #topbar .actions {
float: right; position: fixed;
right: 0;
background: #282828;
} }
#topbar .dropdown-menu form { #topbar .dropdown-menu form {
padding-left: 6px; padding-left: 6px;

Loading…
Cancel
Save