55 lines
1.2 KiB
SCSS
55 lines
1.2 KiB
SCSS
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/* Page based action buttons in the upper right corner of the content area */
|
|
.content-header > .breadcrumb {
|
|
position: absolute;
|
|
float: right;
|
|
background: transparent;
|
|
}
|
|
|
|
/* Right sidebar with additional tabs for personal settings and "About Kimai" section */
|
|
.control-sidebar {
|
|
select {
|
|
color: $input-color;
|
|
background-color: $input-bg;
|
|
}
|
|
div.image {
|
|
img.img-circle {
|
|
max-width: 34px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.toolbar-pad {
|
|
padding: 10px;
|
|
}
|
|
|
|
/* The filter form is available on most pages above the datatable */
|
|
@media (min-width: $screen-sm-min) {
|
|
.toolbar {
|
|
form.navbar-form {
|
|
font-size: $font-size-base;
|
|
.form-control {
|
|
display: inline-block;
|
|
width: 100%;
|
|
vertical-align: middle;
|
|
}
|
|
.control-label {
|
|
width: 100%;
|
|
}
|
|
.input-group {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
.toolbar-pad {
|
|
padding: 10px 0;
|
|
}
|
|
}
|
|
|