mirror of
https://github.com/fergalmoran/robotopro.git
synced 2025-12-22 09:18:53 +00:00
83 lines
1.2 KiB
Plaintext
Executable File
83 lines
1.2 KiB
Plaintext
Executable File
//some breadcrumbs variables
|
|
@breadcrumb-bg:#F5F5F5;
|
|
@breadcrumb-border:#E5E5E5;
|
|
@breadcrumb-text-color:#555;
|
|
@breadcrumb-link-color:#4C8FBD;
|
|
@breadcrumb-arrow-color:#B2B6BF;
|
|
|
|
|
|
|
|
/* breadcrumbs and searchbox */
|
|
.breadcrumbs {
|
|
position:relative;
|
|
|
|
border-bottom:1px solid @breadcrumb-border;
|
|
background-color:@breadcrumb-bg;
|
|
|
|
min-height:@breadcrumb-height;
|
|
line-height:(@breadcrumb-height - 1);
|
|
|
|
padding:0 12px 0 0;
|
|
|
|
display:block;
|
|
|
|
&.fixed , &.breadcrumbs-fixed{
|
|
position:fixed;
|
|
right:0;
|
|
left:(@sidebar-width + 1);
|
|
top:@navbar-mh;
|
|
z-index:@zindexFixedNavbar - 2;
|
|
}
|
|
}
|
|
|
|
|
|
.breadcrumb {
|
|
background-color:transparent;
|
|
display:inline-block;
|
|
line-height:24px;
|
|
|
|
margin:0 22px 0 12px; padding:0;
|
|
|
|
font-size:13px;
|
|
color:#333;
|
|
|
|
border-radius:0;
|
|
> li {
|
|
& , &.active {
|
|
color:@breadcrumb-text-color;
|
|
}
|
|
|
|
> .divider {
|
|
padding:0 4px;
|
|
}
|
|
|
|
> a {
|
|
display:inline-block;
|
|
padding:0 4px;
|
|
color:@breadcrumb-link-color;
|
|
}
|
|
}
|
|
|
|
|
|
.home-icon {
|
|
margin-left:4px; margin-right:2px;
|
|
font-size:20px;
|
|
position:relative; top:2px;
|
|
}
|
|
|
|
.arrow-icon {
|
|
height:22px;
|
|
padding:0;
|
|
margin:0;
|
|
|
|
position:relative; top:1px;
|
|
|
|
font-size:14px;
|
|
color:@breadcrumb-arrow-color;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|