237 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			SCSS
		
	
	
	
			
		
		
	
	
			237 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			SCSS
		
	
	
	
| /**
 | |
|  * Includes the main navigation header and the faded toolbar.
 | |
|  */
 | |
| 
 | |
| header {
 | |
|   display: block;
 | |
|   z-index: 2;
 | |
|   top: 0;
 | |
|   background-color: $primary-dark;
 | |
|   color: #fff;
 | |
|   .padded {
 | |
|     padding: $-m;
 | |
|   }
 | |
|   border-bottom: 1px solid #DDD;
 | |
|   //margin-bottom: $-l;
 | |
|   .links {
 | |
|     display: inline-block;
 | |
|     vertical-align: top;
 | |
|     margin-right: $-xl;
 | |
|     @include smaller-than($screen-md) {
 | |
|       margin-right: $-m;
 | |
|     }
 | |
|   }
 | |
|   .links a {
 | |
|     display: inline-block;
 | |
|     padding: $-l;
 | |
|     color: #FFF;
 | |
|     &:last-child {
 | |
|       padding-right: 0;
 | |
|     }
 | |
|     @include smaller-than($screen-md) {
 | |
|       padding: $-l $-s;
 | |
|     }
 | |
|   }
 | |
|   .avatar, .user-name {
 | |
|     display: inline-block;
 | |
|   }
 | |
|   .avatar {
 | |
|     //margin-top: (45px/2);
 | |
|     width: 30px;
 | |
|     height: 30px;
 | |
|   }
 | |
|   .user-name {
 | |
|     vertical-align: top;
 | |
|     padding-top: $-l;
 | |
|     display: inline-block;
 | |
|     cursor: pointer;
 | |
|     > * {
 | |
|       vertical-align: top;
 | |
|     }
 | |
|     > span, > i {
 | |
|       padding-left: $-xs;
 | |
|       display: inline-block;
 | |
|     }
 | |
|     > span {
 | |
|       padding-top: $-xxs;
 | |
|     }
 | |
|     > i {
 | |
|       padding-top: $-xs*1.2;
 | |
|     }
 | |
|     @include smaller-than($screen-md) {
 | |
|       padding-left: $-xs;
 | |
|       .name {
 | |
|         display: none;
 | |
|       }
 | |
|       i {
 | |
|         font-size: 2em;
 | |
|         padding-left: 0;
 | |
|         padding-top: 0;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   @include smaller-than($screen-md) {
 | |
|     text-align: center;
 | |
|     .float.right {
 | |
|       float: none;
 | |
|     }
 | |
|   }
 | |
|   @include smaller-than($screen-sm) {
 | |
|     .links a {
 | |
|       padding: $-s;
 | |
|     }
 | |
|     form.search-box {
 | |
|       margin-top: 0;
 | |
|     }
 | |
|     .user-name {
 | |
|       padding-top: $-s;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| form.search-box {
 | |
|   margin-top: $-l *0.9;
 | |
|   display: inline-block;
 | |
|   position: relative;
 | |
|   text-align: left;
 | |
|   input {
 | |
|     background-color: transparent;
 | |
|     border-radius: 24px;
 | |
|     border: 2px solid #EEE;
 | |
|     color: #EEE;
 | |
|     padding-left: $-m;
 | |
|     padding-right: $-l;
 | |
|     outline: 0;
 | |
|   }
 | |
|   button {
 | |
|     vertical-align: top;
 | |
|     margin-left: -$-l;
 | |
|     color: #FFF;
 | |
|     top: 6px;
 | |
|     right: 4px;
 | |
|     display: inline-block;
 | |
|     position: absolute;
 | |
|     &:hover {
 | |
|       color: #FFF;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .logo {
 | |
|   display: inline-block;
 | |
|   &:hover {
 | |
|     color: #FFF;
 | |
|     text-decoration: none;
 | |
|   }
 | |
| }
 | |
| .logo-text {
 | |
|   display: inline-block;
 | |
|   font-size: 1.8em;
 | |
|   color: #fff;
 | |
|   font-weight: 400;
 | |
|   padding: $-l $-l $-l 0;
 | |
|   vertical-align: top;
 | |
|   line-height: 1;
 | |
| }
 | |
| .logo-image {
 | |
|   margin: $-m $-s $-m 0;
 | |
|   vertical-align: top;
 | |
|   height: 43px;
 | |
| }
 | |
| 
 | |
| .dropdown-container {
 | |
|   display: inline-block;
 | |
|   vertical-align: top;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .dropdown-container ul {
 | |
|   display: none;
 | |
|   position: absolute;
 | |
|   z-index: 999;
 | |
|   top: 0;
 | |
|   list-style: none;
 | |
|   right: 0;
 | |
|   margin: $-m 0;
 | |
|   background-color: #FFFFFF;
 | |
|   box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
 | |
|   border-radius: 1px;
 | |
|   border: 1px solid #EEE;
 | |
|   min-width: 180px;
 | |
|   padding: $-xs 0;
 | |
|   color: #555;
 | |
|   text-align: left !important;
 | |
|   a {
 | |
|     display: block;
 | |
|     padding: $-xs $-m;
 | |
|     color: #555;
 | |
|     &:hover {
 | |
|       text-decoration: none;
 | |
|       background-color: #EEE;
 | |
|     }
 | |
|     i {
 | |
|       margin-right: $-m;
 | |
|       padding-right: 0;
 | |
|       display: inline;
 | |
|       width: 22px;
 | |
|     }
 | |
|   }
 | |
|   li.border-bottom {
 | |
|     border-bottom: 1px solid #DDD;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .breadcrumbs span.sep {
 | |
|   color: #aaa;
 | |
|   padding: 0 $-xs;
 | |
| }
 | |
| 
 | |
| .faded {
 | |
|   a, button, span {
 | |
|     color: #666;
 | |
|   }
 | |
|   .text-button {
 | |
|     opacity: 0.5;
 | |
|     transition: all ease-in-out 120ms;
 | |
|     &:hover {
 | |
|       opacity: 1;
 | |
|       text-decoration: none;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .faded-small {
 | |
|   color: #000;
 | |
|   font-size: 0.9em;
 | |
|   background-color: rgba(21, 101, 192, 0.15);
 | |
| }
 | |
| 
 | |
| .breadcrumbs .text-button, .action-buttons .text-button {
 | |
|   display: inline-block;
 | |
|   padding: $-s;
 | |
|   &:last-child {
 | |
|     padding-right: 0;
 | |
|   }
 | |
| }
 | |
| .action-buttons {
 | |
|   text-align: right;
 | |
|   &.text-left {
 | |
|     text-align: left;
 | |
|     .text-button {
 | |
|       padding-right: $-m;
 | |
|       padding-left: 0;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .setting-nav {
 | |
|   text-align: center;
 | |
|   a {
 | |
|     padding: $-m;
 | |
|     display: inline-block;
 | |
|     color: #666;
 | |
|     &.selected {
 | |
|       border-bottom: 2px solid $primary;
 | |
|     }
 | |
|   }
 | |
| } |