2015-09-03 11:51:10 -04:00
|
|
|
/**
|
|
|
|
* Includes the main navigation header and the faded toolbar.
|
|
|
|
*/
|
|
|
|
|
2018-10-16 13:49:16 -04:00
|
|
|
header .grid {
|
|
|
|
grid-template-columns: auto min-content auto;
|
|
|
|
}
|
|
|
|
|
2019-04-07 04:57:48 -04:00
|
|
|
@include smaller-than($l) {
|
|
|
|
header .grid {
|
|
|
|
grid-template-columns: 1fr;
|
2019-04-13 12:36:27 -04:00
|
|
|
grid-row-gap: 0;
|
2019-04-07 04:57:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
header {
|
2018-10-16 13:49:16 -04:00
|
|
|
position: relative;
|
2015-09-03 11:51:10 -04:00
|
|
|
display: block;
|
2019-08-04 11:21:16 -04:00
|
|
|
z-index: 11;
|
2015-09-03 11:51:10 -04:00
|
|
|
top: 0;
|
|
|
|
color: #fff;
|
2018-02-17 08:30:52 -05:00
|
|
|
fill: #fff;
|
2015-09-03 11:51:10 -04:00
|
|
|
border-bottom: 1px solid #DDD;
|
2018-10-21 15:05:11 -04:00
|
|
|
box-shadow: $bs-card;
|
|
|
|
padding: $-xxs 0;
|
2015-09-03 11:51:10 -04:00
|
|
|
.links {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.links a {
|
|
|
|
display: inline-block;
|
2018-05-27 15:32:06 -04:00
|
|
|
padding: $-m;
|
2015-09-03 11:51:10 -04:00
|
|
|
color: #FFF;
|
2018-02-17 08:30:52 -05:00
|
|
|
fill: #FFF;
|
2018-05-27 15:32:06 -04:00
|
|
|
}
|
|
|
|
.dropdown-container {
|
|
|
|
padding-left: $-m;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
.avatar, .user-name {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.avatar {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
.user-name {
|
|
|
|
vertical-align: top;
|
2017-08-19 10:33:22 -04:00
|
|
|
position: relative;
|
2015-09-03 11:51:10 -04:00
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
2015-10-18 12:29:26 -04:00
|
|
|
> * {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2018-02-17 14:49:00 -05:00
|
|
|
> span {
|
2015-10-18 12:29:26 -04:00
|
|
|
padding-left: $-xs;
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: $-xxs;
|
|
|
|
}
|
2018-02-17 14:49:00 -05:00
|
|
|
> svg {
|
2016-03-30 16:28:38 -04:00
|
|
|
padding-top: 4px;
|
|
|
|
font-size: 18px;
|
2015-10-18 12:29:26 -04:00
|
|
|
}
|
2018-10-16 13:49:16 -04:00
|
|
|
@include between($l, $xl) {
|
2015-09-03 11:51:10 -04:00
|
|
|
padding-left: $-xs;
|
2015-10-18 12:29:26 -04:00
|
|
|
.name {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
|
2019-08-24 13:26:28 -04:00
|
|
|
.header *, .primary-background * {
|
|
|
|
outline-color: #FFF;
|
|
|
|
}
|
2018-10-16 13:49:16 -04:00
|
|
|
|
|
|
|
|
2017-08-19 10:33:22 -04:00
|
|
|
.header-search {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
header .search-box {
|
2015-09-03 11:51:10 -04:00
|
|
|
display: inline-block;
|
2017-08-27 10:16:51 -04:00
|
|
|
margin-top: 10px;
|
2015-09-03 11:51:10 -04:00
|
|
|
input {
|
2017-08-19 10:33:22 -04:00
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
2018-10-21 15:05:11 -04:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
border-radius: 40px;
|
2015-09-03 11:51:10 -04:00
|
|
|
color: #EEE;
|
2018-05-27 14:51:32 -04:00
|
|
|
z-index: 2;
|
2018-10-21 15:05:11 -04:00
|
|
|
padding-left: 40px;
|
2019-08-24 13:26:28 -04:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.6);
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
button {
|
2018-02-17 08:30:52 -05:00
|
|
|
fill: #EEE;
|
2018-05-27 14:51:32 -04:00
|
|
|
z-index: 1;
|
2018-10-21 15:05:11 -04:00
|
|
|
left: 16px;
|
2018-05-27 14:51:32 -04:00
|
|
|
svg {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2017-08-19 10:33:22 -04:00
|
|
|
}
|
|
|
|
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
|
|
color: #DDD;
|
|
|
|
}
|
|
|
|
::-moz-placeholder { /* Firefox 19+ */
|
|
|
|
color: #DDD;
|
|
|
|
}
|
2018-10-16 13:49:16 -04:00
|
|
|
@include between($l, $xl) {
|
2017-08-19 10:33:22 -04:00
|
|
|
max-width: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
.logo {
|
2015-10-01 16:08:36 -04:00
|
|
|
display: inline-block;
|
|
|
|
&:hover {
|
|
|
|
color: #FFF;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.logo-text {
|
2015-09-03 11:51:10 -04:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 1.8em;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 400;
|
2017-08-19 10:33:22 -04:00
|
|
|
padding: 14px $-l 14px 0;
|
2015-09-03 11:51:10 -04:00
|
|
|
vertical-align: top;
|
|
|
|
line-height: 1;
|
2015-10-01 16:08:36 -04:00
|
|
|
}
|
|
|
|
.logo-image {
|
2017-08-19 10:33:22 -04:00
|
|
|
margin: $-xs $-s $-xs 0;
|
2015-10-01 16:08:36 -04:00
|
|
|
vertical-align: top;
|
2015-10-07 18:17:48 -04:00
|
|
|
height: 43px;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
|
2018-10-16 13:49:16 -04:00
|
|
|
.mobile-menu-toggle {
|
|
|
|
color: #FFF;
|
|
|
|
fill: #FFF;
|
|
|
|
font-size: 2em;
|
|
|
|
border: 2px solid rgba(255, 255, 255, 0.8);
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 0 $-xs;
|
|
|
|
position: absolute;
|
|
|
|
right: $-m;
|
2019-04-14 07:04:20 -04:00
|
|
|
top: 13px;
|
2018-10-16 13:49:16 -04:00
|
|
|
line-height: 1;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
svg {
|
|
|
|
margin: 0;
|
2019-04-14 07:04:20 -04:00
|
|
|
bottom: -2px;
|
2018-10-16 13:49:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include smaller-than($l) {
|
|
|
|
header .header-links {
|
|
|
|
display: none;
|
|
|
|
background-color: #FFF;
|
|
|
|
z-index: 10;
|
|
|
|
right: $-m;
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
box-shadow: $bs-hover;
|
|
|
|
margin-top: -$-xs;
|
|
|
|
&.show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
header .links a, header .dropdown-container ul li a {
|
|
|
|
text-align: left;
|
|
|
|
display: block;
|
|
|
|
padding: $-s $-m;
|
|
|
|
color: $text-dark;
|
|
|
|
fill: $text-dark;
|
|
|
|
svg {
|
|
|
|
margin-right: $-s;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background-color: #EEE;
|
|
|
|
color: #444;
|
|
|
|
fill: #444;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
header .dropdown-container {
|
|
|
|
display: block;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
header .links {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
header .dropdown-container ul {
|
|
|
|
display: block !important;
|
|
|
|
position: relative;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-13 12:36:27 -04:00
|
|
|
.tri-layout-mobile-tabs {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 5;
|
|
|
|
background-color: #FFF;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
box-shadow: $bs-card;
|
|
|
|
}
|
|
|
|
.tri-layout-mobile-tab {
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: 3px solid #BBB;
|
2019-05-06 11:08:08 -04:00
|
|
|
cursor: pointer;
|
2019-04-13 12:36:27 -04:00
|
|
|
&:first-child {
|
|
|
|
border-right: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
&.active {
|
|
|
|
border-bottom-color: currentColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 15:05:11 -04:00
|
|
|
.breadcrumbs {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2019-02-17 12:52:42 -05:00
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: wrap;
|
2019-03-30 10:27:00 -04:00
|
|
|
opacity: 0.7;
|
2019-02-17 12:52:42 -05:00
|
|
|
.icon-list-item {
|
|
|
|
width: auto;
|
|
|
|
padding-top: $-xs;
|
|
|
|
padding-bottom: $-xs;
|
|
|
|
}
|
|
|
|
.separator {
|
|
|
|
display: inline-block;
|
|
|
|
fill: #aaa;
|
|
|
|
font-size: 1.6em;
|
|
|
|
line-height: 0.8;
|
|
|
|
margin: -2px 0 0;
|
|
|
|
}
|
2019-08-24 13:26:28 -04:00
|
|
|
&:hover, &:focus-within {
|
2019-03-30 10:27:00 -04:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2018-10-21 15:05:11 -04:00
|
|
|
|
2019-04-13 12:36:27 -04:00
|
|
|
@include smaller-than($l) {
|
|
|
|
.breadcrumbs .icon-list-item {
|
|
|
|
padding: $-xs;
|
|
|
|
> span + span {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
> span:first-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-24 10:57:35 -05:00
|
|
|
.breadcrumb-listing {
|
|
|
|
position: relative;
|
|
|
|
.breadcrumb-listing-toggle {
|
|
|
|
padding: 6px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 4px;
|
|
|
|
&:hover {
|
|
|
|
border-color: #DDD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.svg-icon {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb-listing-dropdown {
|
|
|
|
box-shadow: $bs-med;
|
|
|
|
overflow: hidden;
|
|
|
|
min-height: 100px;
|
|
|
|
width: 240px;
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 80;
|
|
|
|
right: -$-m;
|
|
|
|
.breadcrumb-listing-search .svg-icon {
|
|
|
|
position: absolute;
|
|
|
|
left: $-s;
|
|
|
|
top: 11px;
|
|
|
|
fill: #888;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
.breadcrumb-listing-entity-list {
|
|
|
|
max-height: 400px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
padding-left: $-xl;
|
|
|
|
border-radius: 0;
|
|
|
|
border: 0;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-14 07:04:20 -04:00
|
|
|
@include smaller-than($m) {
|
|
|
|
.breadcrumb-listing-dropdown {
|
|
|
|
position: fixed;
|
|
|
|
right: auto;
|
|
|
|
left: $-m;
|
|
|
|
}
|
|
|
|
.breadcrumb-listing-dropdown .breadcrumb-listing-entity-list {
|
|
|
|
max-height: 240px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
.faded {
|
2016-01-20 17:13:13 -05:00
|
|
|
a, button, span, span > div {
|
2015-09-03 11:51:10 -04:00
|
|
|
color: #666;
|
2018-02-17 08:30:52 -05:00
|
|
|
fill: #666;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
.text-button {
|
|
|
|
opacity: 0.5;
|
|
|
|
transition: all ease-in-out 120ms;
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-12 11:31:02 -05:00
|
|
|
.faded span.faded-text {
|
2016-03-12 10:52:19 -05:00
|
|
|
display: inline-block;
|
|
|
|
padding: $-s;
|
|
|
|
}
|
|
|
|
|
2018-10-21 15:05:11 -04:00
|
|
|
.action-buttons .text-button {
|
2015-09-03 11:51:10 -04:00
|
|
|
display: inline-block;
|
2018-10-21 15:05:11 -04:00
|
|
|
padding: $-xs $-s;
|
2015-09-03 11:51:10 -04:00
|
|
|
&:last-child {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
2017-07-02 15:33:32 -04:00
|
|
|
&:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-07-22 10:20:36 -04:00
|
|
|
|
|
|
|
|
2017-07-02 15:33:32 -04:00
|
|
|
.action-buttons .dropdown-container:last-child a {
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: $-s;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
.action-buttons {
|
|
|
|
text-align: right;
|
|
|
|
&.text-left {
|
|
|
|
text-align: left;
|
|
|
|
.text-button {
|
|
|
|
padding-right: $-m;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2016-03-12 11:31:02 -05:00
|
|
|
&.text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
|
2017-07-22 10:20:36 -04:00
|
|
|
@include smaller-than($m) {
|
2018-10-21 15:05:11 -04:00
|
|
|
.action-buttons .text-button {
|
2018-03-18 08:23:48 -04:00
|
|
|
padding: $-xs $-xs;
|
2017-07-22 10:20:36 -04:00
|
|
|
}
|
|
|
|
.action-buttons .dropdown-container:last-child a {
|
|
|
|
padding-left: $-xs;
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|