Merge pull request #573 from stenehall/shrink-icons

Shrink nav icons
This commit is contained in:
Tor Hveem 2015-03-25 00:25:18 +01:00
commit 33f2b81f65
2 changed files with 19 additions and 18 deletions

View file

@ -81,10 +81,6 @@ input[type=text], input[type=password], #sendMessage, .badge {
.glyphicon { .glyphicon {
top: 0; /* Fixes alignment issue in top bar */ top: 0; /* Fixes alignment issue in top bar */
} }
.glyphicon-off {
top: 1px; /* Fixes for relative glyphicon size */
font-size: 28px;
}
#topbar { #topbar {
position: fixed; position: fixed;
width: 100%; width: 100%;
@ -97,7 +93,10 @@ input[type=text], input[type=password], #sendMessage, .badge {
#topbar .brand { #topbar .brand {
float: left; float: left;
height: 35px; height: 35px;
padding-left: 5px; }
#topbar .brand a {
display: block;
padding: 0 10px;
} }
#topbar .brand img { #topbar .brand img {
height: 32px; height: 32px;
@ -119,16 +118,19 @@ input[type=text], input[type=password], #sendMessage, .badge {
padding-left: 5px; padding-left: 5px;
margin-right: 0; margin-right: 0;
padding-right: 5px; padding-right: 5px;
padding-top: 2px;
height: 35px; height: 35px;
line-height: 35px; line-height: 35px;
font-size: 30px; font-size: 16px;
position: fixed; position: fixed;
right: 0; right: 0;
} }
#topbar .actions > * { #topbar .actions > * {
padding-left: 5px; padding: 0 5px;
display: inline-block;
}
#topbar .actions .glyphicon {
line-height: 35px;
top: 0;
} }
#topbar .dropdown-menu form { #topbar .dropdown-menu form {
padding-left: 6px; padding-left: 6px;
@ -632,11 +634,12 @@ img.emojione {
left: 40px; left: 40px;
} }
#topbar .brand img {
height: 20px;
}
#topbar .actions { #topbar .actions {
line-height: 35px; font-size: 16px;
height: 35px;
font-size: 31px;
margin-right: 0;
} }
#bufferlines, #nicklist { #bufferlines, #nicklist {

View file

@ -226,11 +226,9 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel
<span ng-repeat="part in activeBuffer().title" ng-class="::part.classes" ng-bind-html="::(part.text | linky:'_blank' | DOMfilter:'irclinky')"></span> <span ng-repeat="part in activeBuffer().title" ng-class="::part.classes" ng-bind-html="::(part.text | linky:'_blank' | DOMfilter:'irclinky')"></span>
</div> </div>
<div class="actions pull-right vertical-line-left"> <div class="actions pull-right vertical-line-left">
<div class="pull-left"> <a class="settings-toggle" ng-click="showModal('settingsModal')" title="Options menu">
<a class="settings-toggle" ng-click="showModal('settingsModal')" title="Options menu"> <i class="glyphicon glyphicon-cog"></i>
<i class="glyphicon glyphicon-cog"></i> </a>
</a>
</div>
<a ng-click="disconnect()" title="Disconnect from WeeChat"> <a ng-click="disconnect()" title="Disconnect from WeeChat">
<i class="glyphicon glyphicon-off"></i> <i class="glyphicon glyphicon-off"></i>
</a> </a>