44 lines
896 B
Plaintext
44 lines
896 B
Plaintext
/* ------------------------------------------------------------------------------
|
|
*
|
|
* # Toolbars
|
|
*
|
|
* Custom toolbars, mainly based on navbar component
|
|
*
|
|
* Version: 1.0
|
|
* Latest update: Dec 5, 2016
|
|
*
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
// Base
|
|
// ------------------------------
|
|
|
|
.panel-toolbar-inbox {
|
|
background-color: #fcfcfc;
|
|
|
|
// Add top border radius if first in panel
|
|
.panel > &:first-child {
|
|
.border-top-radius(@border-radius-base);
|
|
}
|
|
|
|
// Make navbar transparent
|
|
> .navbar {
|
|
background-color: transparent;
|
|
border-width: 0;
|
|
}
|
|
|
|
// Make default buttons white in default navbar
|
|
> .navbar-default {
|
|
.btn-default {
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
|
|
|
|
// Desktop view
|
|
@media (min-width: @grid-float-breakpoint) {
|
|
padding-top: (@line-height-computed / 2);
|
|
padding-bottom: (@line-height-computed / 2);
|
|
}
|
|
}
|