Files
NodeBB/public/less/admin/header.less

123 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-08-19 14:46:40 -04:00
.header {
.no-select;
2015-08-19 14:46:40 -04:00
position: relative;
background: #333;
width: 100%;
height: 200px;
margin-bottom: 50px;
2015-08-19 14:58:48 -04:00
font-size: 16px;
2015-08-19 14:46:40 -04:00
2015-08-20 13:21:12 -04:00
#main-page-title {
position: absolute;
left: 48px;
bottom: 17px;
color: #aaa;
font-size: 47px;
font-weight: 300;
}
.quick-actions {
position: static;
padding: 15px;
display: flex;
flex-direction: row-reverse;
margin: 0;
> * {
margin-right: 20px;
}
> .menu-button {
margin-right: 0;
padding: 0 5px;
}
.alert {
font-size: 14px;
margin-bottom: 0;
&.alert-info {
background-color: #eee;
color: #333;
}
}
2015-08-20 19:39:44 -04:00
.dropdown {
margin-right: 0px;
.dropdown-toggle i {
padding: 0 1rem;
}
}
.fa {
line-height: 44px;
2016-07-29 16:40:10 +03:00
font-size: 25px;
}
2015-08-20 19:12:34 -04:00
#user_dropdown {
font-size: 25px;
2015-08-20 19:55:18 -04:00
color: #eee;
i {
margin-top: 12px;
display: block;
}
2015-08-20 19:12:34 -04:00
}
}
2015-08-20 19:39:44 -04:00
#acp-search {
input {
padding: 10px 20px;
width: 250px;
height: 44px;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 3px;
box-shadow: none;
.transition(.4s ease background-color);
&:focus {
background-color: #eee;
color: #333;
}
}
.search-match {
font-weight: 700;
color: black;
}
}
2015-08-19 14:46:40 -04:00
> ul {
list-style-type: none;
padding: 0px;
position: absolute;
2015-08-20 12:12:55 -04:00
bottom: -11px;
2015-08-19 14:46:40 -04:00
left: 50px;
> li {
float: left;
margin-right: 30px;
padding-bottom: 10px;
border-bottom: 4px solid transparent;
transition: border-color 150ms linear;
2015-08-19 14:46:40 -04:00
2015-08-19 15:52:31 -04:00
&.active {
border-color: @brand-primary;
2015-08-19 15:52:31 -04:00
}
2015-08-19 14:46:40 -04:00
> a {
color: white;
text-transform: uppercase;
text-decoration: none;
2015-08-19 15:52:31 -04:00
outline: none;
2015-08-19 14:46:40 -04:00
}
}
}
.plugins-menu {
max-height: 50vh;
overflow-y: auto;
}
2016-10-13 09:37:03 -07:00
}