toolbar.less 896 Bytes
Newer Older
Luis Gangas committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/* ------------------------------------------------------------------------------
*
*  # 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);
    }
}