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