discourse/app/assets/stylesheets/common/base/header.scss

294 lines
5.4 KiB
SCSS
Raw Normal View History

.d-header {
min-width: 100%;
position: absolute;
top: 0;
z-index: 1001;
background-color: $header_background;
box-shadow: 0 2px 4px -2px rgba($header_primary, .25);
.docked & {
position: fixed;
}
.contents {
margin: 10px 0;
}
.title {
display: table;
float: left;
height: 40px;
> a {
display: table-cell;
vertical-align: middle;
}
}
#site-logo {
max-height: 40px;
}
.fa-home {
font-size: 20px;
line-height: 40px;
}
.panel {
float: right;
position: relative;
}
.current-username {
float: left;
a {
color: $header_primary;
font-size: 14px;
2014-07-03 23:40:49 -04:00
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
button.login-button {
float: left;
margin-top: 7px;
padding: 6px 10px;
.fa { margin-right: 3px; }
}
.icons {
float: left;
text-align: center;
margin: 0 0 0 5px;
list-style: none;
> li {
float: left;
}
.icon {
display: block;
padding: 3px;
color: scale-color($header_primary, $lightness: 50%);
text-decoration: none;
cursor: pointer;
border-top: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
&:hover {
color: $primary;
background-color: scale-color-diff();
border-top: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
}
&:active {
color: $primary;
background-color: scale-color-diff();
}
}
.active .icon {
position: relative;
color: #7b7b7b;
background-color: $secondary;
cursor: default;
border-top: 1px solid scale-color-diff();
border-left: 1px solid scale-color-diff();
border-right: 1px solid scale-color-diff();
&:after {
display: block;
position: absolute;
top: 100%;
left: 0;
z-index: 1101;
width: 100%;
height: 0;
content: "";
border-top: 1px solid $secondary;
}
&:hover {
border-bottom: none;
}
}
[class^="fa fa-"] {
width: 32px;
height: 32px;
font-size: 20px;
line-height: 32px;
display: inline-block;
}
.notifications {
position: relative;
}
.badge-notification {
position: absolute;
top: -9px;
z-index: 1;
margin-left: 0;
}
.unread-notifications {
right: -4px;
background-color: scale-color($tertiary, $lightness: 50%);
}
.unread-private-messages {
left: -4px;
}
}
.flagged-posts {
background-color: $danger;
}
}
.d-dropdown {
display: none;
position: absolute;
background: $secondary;
max-height: 417px;
top: 100%;
right: 0;
z-index: 1100;
overflow: auto;
border: 1px solid scale-color-diff();
2014-06-03 21:56:50 -04:00
padding: 5px;
@include box-shadow(0 2px 2px rgba($primary, .4));
ul {
margin: 0;
list-style: none;
}
li:not(.category) {
font-size: 13px;
line-height: 16px;
.fa {
margin-right: 3px;
}
2014-06-03 21:56:50 -04:00
a {display: block;
padding: 5px;
}
2014-06-27 19:42:43 -04:00
&:hover a:not(.badge-notification) {
background-color: scale-color($highlight, $lightness: 60%);
}
2014-06-03 21:56:50 -04:00
button {margin-left: 5px;}
}
.selected {
background-color: scale-color($tertiary, $lightness: 90%);
}
2014-06-03 21:56:50 -04:00
// Notifications
&#notifications-dropdown {
.fa {
color: scale-color($primary, $lightness: 50%);
}
li {
background-color: scale-color($tertiary, $lightness: 90%);
padding: 5px;
&:hover a {background: transparent;}
2014-06-03 21:59:42 -04:00
a {
display: inline;
padding: 1px;
}
}
.read {
background-color: $secondary;
}
.none {
padding: 5px;
}
.loading {
padding: 10px;
display: block;
color: scale-color($primary, $lightness: 50%);
font-size: 24px;
text-align: center;
}
}
.category-links li:not(.heading) a {
display: inline-block;
}
2014-06-03 21:56:50 -04:00
// Site map
&#site-map-dropdown {
.flagged-posts {
display: inline-block;
position: absolute;
padding: 3px;
margin-top: -22px;
margin-left: 60px;
}
}
// Search
&#search-dropdown {
.heading {
padding: 5px;
}
}
input[type='text'] {
width: 93%;
height: 22px;
margin: 5px;
padding: 5px;
}
2014-06-19 14:04:23 -04:00
.search-context {
padding: 0 5px;
}
.searching {
display: block;
position: absolute;
top: 17px;
right: 15px;
width: 22px;
height: 22px;
background: {
image: image-url("spinner_96.gif");
repeat: no-repeat;
position: 0px 50%;
size: 18px;
};
}
.no-results {
2014-06-03 21:56:50 -04:00
padding: 5px;
}
.filter {
float: right;
2014-06-03 21:56:50 -04:00
padding: 0;
&:hover {background: transparent;}
}
// Categories
.category {
float: left;
background-color: transparent;
line-height: 20px;
2014-06-03 21:56:50 -04:00
margin: 5px 5px 0 5px;
}
&#user-dropdown {
width: 118px;
}
.btn {
padding: 2px 8px;
margin-bottom: 2px;
.fa {
margin-right: 5px;
}
}
}