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

185 lines
3.4 KiB
SCSS
Raw Normal View History

.d-header {
2017-09-06 10:47:48 -04:00
width: 100%;
position: absolute;
top: 0;
z-index: z("header");
2017-09-06 10:47:48 -04:00
background-color: $header_background;
box-shadow: shadow("header");
2017-09-06 10:47:48 -04:00
.docked & {
position: fixed;
backface-visibility: hidden; /** do magic for scrolling performance **/
}
.contents {
margin: 8px 0;
}
.title {
float: left;
a, a:visited {
color: $header_primary;
}
2017-09-06 10:47:48 -04:00
}
#site-logo {
max-height: 40px;
}
.d-icon-home {
2017-09-06 10:47:48 -04:00
font-size: 1.643em;
}
.panel {
float: right;
position: relative;
display: flex;
align-items: center;
2017-09-06 10:47:48 -04:00
}
.hamburger-panel, .user-menu, .search-menu {
width: 0; // Flexbox fix for Safari
}
2018-02-16 17:13:10 -05:00
.header-buttons {
margin-top: .2em;
}
2017-09-06 10:47:48 -04:00
.login-button, button.sign-up-button {
padding: 6px 10px;
.fa { margin-right: 3px; }
}
button.login-button {
margin-left: 7px;
}
2017-09-06 11:29:43 -04:00
}
2017-09-06 10:47:48 -04:00
.header-dropdown-toggle, .drop-down, .panel-body {
2017-09-10 14:26:55 -04:00
.flagged-posts, .queued-posts {
background: $danger;
2018-02-20 17:31:02 -05:00
min-width: 6px;
2017-09-10 14:26:55 -04:00
}
}
2017-09-06 11:29:43 -04:00
.d-header-icons {
text-align: center;
margin: 0 0 0 5px;
list-style: none;
> li {
float: left;
}
.icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 2.2857em;
height: 2.2857em;
padding: .2143em;
2017-09-06 11:29:43 -04:00
color: dark-light-choose(scale-color($header_primary, $lightness: 50%), $header_primary);
text-decoration: none;
cursor: pointer;
border-top: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
transition: all linear .15s;
outline: none;
img.avatar {
width: 2.2857em;
height: 2.2857em;
}
&:hover, &:focus {
2017-09-06 11:29:43 -04:00
color: $primary;
background-color: $primary-low;
2017-09-06 10:47:48 -04:00
border-top: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
2017-09-06 11:29:43 -04:00
}
&:active {
color: $primary;
background-color: $primary-low;
}
}
.drop-down-mode & {
2017-09-06 11:29:43 -04:00
.active .icon {
position: relative;
color: #7b7b7b;
background-color: $secondary;
cursor: default;
border-top: 1px solid $primary-low;
border-left: 1px solid $primary-low;
border-right: 1px solid $primary-low;
&:after {
display: block;
position: absolute;
top: 100%;
left: 0;
z-index: z("header") + 1; // Higher than .menu-panel
2017-09-06 11:29:43 -04:00
width: 100%;
height: 0;
content: "";
border-top: 1px solid $secondary;
2017-09-06 10:47:48 -04:00
}
2017-09-06 11:29:43 -04:00
&:hover {
border-bottom: none;
}
2017-09-06 10:47:48 -04:00
}
2017-09-06 11:29:43 -04:00
}
2017-09-06 11:29:43 -04:00
.d-icon {
width: 100%;
2018-01-12 17:27:38 -05:00
font-size: $font-up-4;
line-height: $line-height-large;
2017-09-06 11:29:43 -04:00
display: inline-block;
2017-09-06 10:47:48 -04:00
}
2017-09-06 11:29:43 -04:00
.notifications {
position: relative;
}
.ring {
position: absolute;
top: -9px;
z-index: z("base");
2017-09-06 11:29:43 -04:00
margin-left: 0;
}
.header-dropdown-toggle {
position: relative;
}
.badge-notification {
position: absolute;
z-index: z("base");
2017-09-06 11:29:43 -04:00
left: 0;
2018-01-12 17:27:38 -05:00
top: -4px;
min-width: 6px;
2017-09-06 11:29:43 -04:00
}
.unread-notifications {
left: auto;
2018-01-12 17:27:38 -05:00
right: -3px;
2017-10-10 16:07:46 -04:00
background-color: dark-light-choose($tertiary-medium, $tertiary);
2017-09-06 11:29:43 -04:00
}
.unread-private-messages, .ring {
left: auto;
right: 25px;
2017-09-06 10:47:48 -04:00
}
}
.highlight-strong {
2017-06-11 22:20:14 -04:00
background-color: $highlight-medium;
}
.search-highlight {
font-weight: bold;
}
2014-10-18 03:12:48 -04:00
#search-help table td {
padding-right: 10px;
}
2014-11-10 05:31:15 -05:00
// we don't need this X to clear field
#search-term::-ms-clear {
display: none;
}