2024-10-10
This commit is contained in:
321
web/bsadmin/assets/less/header.less
Normal file
321
web/bsadmin/assets/less/header.less
Normal file
@@ -0,0 +1,321 @@
|
||||
@import "variable.less"; // Variable.less
|
||||
|
||||
/* Header
|
||||
---------------*/
|
||||
|
||||
.header {
|
||||
background: @primary;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
min-height: 50px;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.logo {
|
||||
background: @primary;
|
||||
display: inline-block;
|
||||
padding: 16px 0;
|
||||
text-align: center;
|
||||
width: 250px;
|
||||
transition: width 300ms ease-in-out;
|
||||
img {
|
||||
width: 35px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
span {
|
||||
color: @white;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 3px;
|
||||
padding-left: 20px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-hide {
|
||||
.logo {
|
||||
width: 0px;
|
||||
span {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header-icon {
|
||||
font-size: 18px;
|
||||
padding: 14px 15px;
|
||||
color: @white;
|
||||
position: relative;
|
||||
transition: all 0.4s ease-in-out;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
float: left;
|
||||
i,
|
||||
img,
|
||||
span {
|
||||
cursor: pointer;
|
||||
}
|
||||
&:hover,
|
||||
&:focus,
|
||||
&.active {
|
||||
background: darken(@primary, 3%);
|
||||
}
|
||||
}
|
||||
|
||||
.header-icon.active {
|
||||
.drop-down {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
}
|
||||
}
|
||||
|
||||
.drop-down {
|
||||
background: @white;
|
||||
color: @black;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
width: 320px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 55px;
|
||||
transform: translateY(50px);
|
||||
transition: all 0.4s ease-in-out;
|
||||
border-top: 0px;
|
||||
// box-shadow: 10px 5px 10px @border;
|
||||
border: 1px solid @border;
|
||||
// border-left: 1px solid @border;
|
||||
// border-right: 1px solid @border;
|
||||
// border-bottom: 1px solid @border;
|
||||
}
|
||||
|
||||
.header-left {
|
||||
.drop-down {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-content-heading {
|
||||
padding: 10px 15px;
|
||||
// border-bottom: 1px solid #f1f1f1;
|
||||
span {
|
||||
font-size: 13px;
|
||||
font-family: @mont;
|
||||
color: @text;
|
||||
}
|
||||
i {
|
||||
position: relative;
|
||||
top: 5px;
|
||||
opacity: 1!important;
|
||||
color: @primary;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-content-body {
|
||||
// padding: 15px 15px 10px;
|
||||
li {
|
||||
padding: 15px;
|
||||
border-top: 1px solid @white-light;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&.active {
|
||||
background: @white-light;
|
||||
border-top: 1px solid @white-light;
|
||||
}
|
||||
a {
|
||||
// color: @text-light;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&.active {
|
||||
color: @text-light;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
padding: 5px 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.notification-heading {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
color: @text;
|
||||
}
|
||||
|
||||
.avatar-img {
|
||||
border-radius: 100px;
|
||||
width: 25px;
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
.user-avatar {
|
||||
margin-left: 10px;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
// position: relative;
|
||||
// top: -3px;
|
||||
}
|
||||
|
||||
.notification-text {
|
||||
font-size: 12px;
|
||||
font-family: @mol;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
padding-top: 3px;
|
||||
}
|
||||
|
||||
.notification-timestamp {
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.notification-percentage {
|
||||
font-size: 12px;
|
||||
position: relative;
|
||||
top: 12px;
|
||||
}
|
||||
|
||||
.notification-unread {
|
||||
background: @white-light;
|
||||
.notification-heading {
|
||||
color: #555;
|
||||
}
|
||||
}
|
||||
|
||||
.more-link {
|
||||
font-size: 12px;
|
||||
color: @primary;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dropdown-profile {
|
||||
width: 200px;
|
||||
.trial-day {
|
||||
font-size: 11px;
|
||||
padding-top: 2px;
|
||||
color: @primary;
|
||||
}
|
||||
li {
|
||||
padding: 7px 15px;
|
||||
a {
|
||||
display: block;
|
||||
color: @text;
|
||||
&:hover,
|
||||
&:focus,
|
||||
&.active {
|
||||
color: @text;
|
||||
}
|
||||
span {
|
||||
font-family: @mont;
|
||||
font-size: 14px;
|
||||
}
|
||||
i {
|
||||
margin-right: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
padding: 7px 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header-link {
|
||||
position: relative;
|
||||
top: -3px;
|
||||
font-size: 14px;
|
||||
// width: 30px;
|
||||
}
|
||||
|
||||
|
||||
/* Search box
|
||||
----------------------*/
|
||||
|
||||
//
|
||||
//
|
||||
//.is-active:before {
|
||||
// top: 0;
|
||||
//}
|
||||
//
|
||||
//.is-active span.line {
|
||||
// background: none;
|
||||
//}
|
||||
//
|
||||
//.is-active span.line:before,
|
||||
//.is-active span.line:after {
|
||||
// -webkit-transition-delay: 0s, 0.3s;
|
||||
// transition-delay: 0s, 0.3s;
|
||||
//}
|
||||
//
|
||||
//.is-active span.line:before {
|
||||
// top: 0;
|
||||
// -webkit-transform: rotate(45deg);
|
||||
// transform: rotate(45deg);
|
||||
//}
|
||||
//
|
||||
//.is-active span.line:after {
|
||||
// bottom: 0;
|
||||
// -webkit-transform: rotate(-45deg);
|
||||
// transform: rotate(-45deg);
|
||||
//}
|
||||
//.chat-sidebar {
|
||||
// background-color: @white;
|
||||
// position: fixed;
|
||||
// right: -240px;
|
||||
// bottom: 0;
|
||||
// top: 55px;
|
||||
// width: 240px;
|
||||
// z-index: 2;
|
||||
// -webkit-transition: all 0.5s ease 0s;
|
||||
// transition: all 0.5s ease 0s;
|
||||
//}
|
||||
//
|
||||
//.chat-sidebar.is-active {
|
||||
// right: 0;
|
||||
//}
|
||||
//
|
||||
.main {
|
||||
.page-header {
|
||||
min-height: 50px;
|
||||
margin: 0px;
|
||||
padding: 0px 15px;
|
||||
background: @white;
|
||||
border-bottom: 0px;
|
||||
h1 {
|
||||
font-size: 18px;
|
||||
padding: 14px 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
.breadcrumb {
|
||||
margin: 0px;
|
||||
padding: 14px 15px;
|
||||
background: @white;
|
||||
li {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&.active {
|
||||
font-family: @mol;
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
}
|
||||
a {
|
||||
font-size: 12px;
|
||||
font-family: @mol;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-task {
|
||||
.progress {
|
||||
height: 5px;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 20px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.progress-bar {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user