fix button align and colors

This commit is contained in:
Tor Hveem 2015-03-29 15:18:38 +02:00
parent 210165daf7
commit 7c2b2d98e8
3 changed files with 8 additions and 4 deletions

View file

@ -58,6 +58,10 @@ td.message {
border-bottom: 2px solid #555; border-bottom: 2px solid #555;
} }
.input-group-addon, .input-group-btn {
vertical-align: top;
}
.footer button { .footer button {
border-radius: 0; border-radius: 0;
} }

View file

@ -43,11 +43,11 @@ tr.bufferline:hover {
color: black; color: black;
} }
.btn-primary { .btn-default {
background-color: #555; background-color: #555;
border-color: #444; border-color: #444;
} }
.btn-primary:hover { .btn-default:hover {
background-color: #666; background-color: #666;
border-color: #555; border-color: #555;
} }

View file

@ -1,5 +1,5 @@
<div ng-show="plugin.visible"> <div ng-show="plugin.visible">
<button class="btn btn-primary btn-sm pull-right unselectable" <button class="btn btn-default btn-sm pull-right unselectable"
ng-click="hideContent()"> ng-click="hideContent()">
Hide {{ ::plugin.name }} Hide {{ ::plugin.name }}
</button> </button>
@ -8,7 +8,7 @@
</div> </div>
<div ng-hide="plugin.visible"> <div ng-hide="plugin.visible">
<button class="btn btn-sm pull-right unselectable" <button class="btn btn-default btn-sm pull-right unselectable"
ng-class="::{ ng-class="::{
'btn-warning': plugin.nsfw, 'btn-warning': plugin.nsfw,
'btn-primary': !plugin.nsfw}" 'btn-primary': !plugin.nsfw}"