mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-12 11:01:48 -05:00
106 lines
2.0 KiB
Plaintext
106 lines
2.0 KiB
Plaintext
/** @define BreadCrumb */
|
|
|
|
.BreadCrumb {
|
|
padding: 0;
|
|
display: flex;
|
|
background-color: @bc-bg;
|
|
width: 100%;
|
|
z-index: 1039;
|
|
margin-top: 60px;
|
|
height: 40px;
|
|
border-bottom: 1px solid @bc-border;
|
|
}
|
|
.BreadCrumb.is-loggedOut {
|
|
opacity: 0;
|
|
}
|
|
.BreadCrumb-menuLinkHolder {
|
|
display: flex;
|
|
margin-left: auto;
|
|
}
|
|
.BreadCrumb-menuLink {
|
|
width: 58px;
|
|
color: @bc-link-icon;
|
|
flex: initial;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 19px;
|
|
cursor: pointer;
|
|
}
|
|
.BreadCrumb-menuLink:hover {
|
|
color: @bc-link-icon-focus;
|
|
}
|
|
.BreadCrumb-menuLink {
|
|
.BreadCrumb-menuLinkImage.fa-refresh {
|
|
&:hover {
|
|
color: @default-link;
|
|
}
|
|
}
|
|
}
|
|
.BreadCrumb-menuLinkImage {
|
|
font-size: 18px;
|
|
color: @bc-link-icon;
|
|
flex: initial;
|
|
|
|
&:hover {
|
|
color: @default-link-hov;
|
|
}
|
|
}
|
|
.BreadCrumb-menuLink.BreadCrumb-menuLinkActive {
|
|
color: @bc-link-icon-focus;
|
|
|
|
.BreadCrumb-menuLinkImage {
|
|
color: @bc-link-icon-focus;
|
|
|
|
&:hover {
|
|
color: @default-link-hov
|
|
}
|
|
}
|
|
}
|
|
.BreadCrumb-list {
|
|
padding: 0px 20px;
|
|
list-style: none;
|
|
background-color: @default-bg;
|
|
border-radius: 4px;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.BreadCrumb-item {
|
|
display: inline-block;
|
|
color: @default-interface-txt;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.BreadCrumb-invItem {
|
|
max-width: 400px;
|
|
}
|
|
|
|
.BreadCrumb-item + .BreadCrumb-item:before {
|
|
content: "/";
|
|
padding: 0 5px;
|
|
color: @default-icon;
|
|
}
|
|
|
|
@breadcrumb-breakpoint: 900px;
|
|
@breakpoint-sm: 700px;
|
|
|
|
@media screen and (max-width: @breadcrumb-breakpoint) {
|
|
.BreadCrumb-menuLinkImage {
|
|
font-size: 24px;
|
|
}
|
|
.BreadCrumb-menuLink {
|
|
width: 67px;
|
|
padding: 0 21px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @breakpoint-sm) {
|
|
.BreadCrumb {
|
|
padding-left: 50px;
|
|
position: fixed;
|
|
z-index: 2;
|
|
}
|
|
} |