74 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /* override some bootstrap settings */
 | |
| 
 | |
| /* nav overrides */
 | |
| 
 | |
| nav .badge {
 | |
| 	position: relative;
 | |
| 	top: -48px;
 | |
| 	float: left;
 | |
| 	font-size: 10px;
 | |
| 	padding: 2px 6px;
 | |
| 	cursor: pointer;
 | |
| }
 | |
| 
 | |
| nav i {
 | |
| 	font-size: 14px;
 | |
| }
 | |
| 
 | |
| nav ul li {
 | |
| 	max-height: 49px;
 | |
| }
 | |
| 
 | |
| nav img {
 | |
| 	height: 48px;
 | |
| 	width: 48px;
 | |
| 	margin-top: 1px;
 | |
| }
 | |
| 
 | |
| nav .dropdown-menu {
 | |
| 	max-height: 450px;
 | |
| 	max-width: 300px;
 | |
| 	overflow-y: auto;
 | |
| 	margin-top: 0px;
 | |
| }
 | |
| 
 | |
| nav .navbar-collapse .navbar-left {
 | |
| 	float: left;
 | |
| }
 | |
| 
 | |
| nav .navbar-collapse .navbar-right {
 | |
| 	float: right;
 | |
| }
 | |
| 
 | |
| nav .navbar-toggle {
 | |
| 	margin-bottom: 7px;
 | |
| }
 | |
| 
 | |
| /* nav overrides end */
 | |
| 
 | |
| .dropdown-menu img {
 | |
| 	float: left;
 | |
| 	width: 32px;
 | |
| 	height: 32px;
 | |
| 	margin-right: 5px;
 | |
| }
 | |
| 
 | |
| .dropdown-menu li a {
 | |
| 	overflow: hidden;
 | |
| 	text-overflow: ellipsis;
 | |
| 	line-height: 1em;
 | |
| 	padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .nav-tabs.nav-justified > li {
 | |
| 	white-space: nowrap;
 | |
| }
 | |
| 
 | |
| code {
 | |
| 	white-space: normal;
 | |
| }
 | |
| 
 | |
| /* Bootstrap assumes that checkboxes are on the left of labels, while it's usually the opposite in Red */
 | |
| .field.checkbox input[type="checkbox"] { margin-left: 0px; }
 | |
| .field.checkbox label { padding-left: 0px; font-weight: 700}
 |