Style toolbar

This commit is contained in:
Brian Federle 2013-10-01 12:17:57 -07:00
parent 5c827f762e
commit 16f1e3a68a
3 changed files with 21 additions and 18 deletions

View File

@ -839,7 +839,7 @@
if (!filters) return false;
var $filters = $('<div></div>').addClass('filters reduced-hide');
$filters.append($('<label>').html(_l('label.filterBy')));
$filters.append($('<label>').html(_l('label.filterBy') + ': '));
var $filterSelect = $('<select id="filterBy"></select>').appendTo($filters);

View File

@ -249,10 +249,4 @@ body {
.panel-controls {
display: none;
}
.section-select, .filters {
@include span-columns(4);
margin: 8px;
}
}

View File

@ -1,21 +1,30 @@
@mixin csui-toolbar {
@include row;
padding: 5px;
background: #e0e0e0;
.search-bar {
@include span-columns(2);
input[type=text] {
padding: 5px;
}
}
background: lighten(#e0e0e0, 5%);
padding: 10px;
.button.action {
@include csui-button;
float: right;
margin: 8px;
margin-right: 10px;
}
input, label, select {
float: left;
margin: 0 10px 0 10px;
padding-top: 6px;
padding-bottom: 6px;
font-size: 12px;
}
label {
margin-right: 0px;
}
.search-bar {
float: right;
margin-right: 25px;
}
}