add buttons to ui dark theme

This commit is contained in:
Ben Ogle
2013-08-20 10:47:26 -07:00
parent d89e95dc54
commit 5579551521
3 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
@import "ui-colors";
.btn-toggle.btn-group {
.btn {
font-weight: bold;
background: @button-color-1;
color: @text-color-3;
font-size: 12px;
padding: 3px;
border: none;
border-left: 1px solid @border-color-2;
&:hover{ background: @button-color-hover-1; }
&.enabled{
color: @accent-color-info-1;
background: @button-color-active-1;
box-shadow: inset 1px 1px 1px @highlight-background-color-1;
}
}
.btn:first-child {
border-left: none;
border-bottom-left-radius: 2px;
border-top-left-radius: 2px;
}
.btn:last-child {
border-bottom-right-radius: 2px;
border-top-right-radius: 2px;
}
}

View File

@@ -12,4 +12,5 @@
'archive-view'
'collaboration'
'overlay'
'buttons'
]

View File

@@ -51,4 +51,8 @@
@dark-background-color-1: #1b1c1e;
@dark-background-color-2: #19191a;
@text-color-4: #969696;
@text-color-4: #969696;
@button-color-1: #303030;
@button-color-hover-1: #353536;
@button-color-active-1: #404040;