2014-05-26 23:33:47 +08:00
|
|
|
.d-header {
|
2018-11-22 10:21:49 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
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
|
|
|
|
2018-11-22 10:21:49 +08:00
|
|
|
> .wrap {
|
2019-01-18 05:11:40 +08:00
|
|
|
width: calc(100% - 16px); // accommodates for 8px vertical padding
|
2018-11-22 10:21:49 +08:00
|
|
|
height: 100%;
|
|
|
|
.contents {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
2019-07-09 07:21:19 +08:00
|
|
|
|
|
|
|
.header-row {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.logo-wrapper {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.auth-buttons {
|
|
|
|
float: right;
|
|
|
|
margin-top: 0.4em;
|
|
|
|
|
|
|
|
.login-button,
|
|
|
|
.signup-button {
|
|
|
|
padding: 8px 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-22 10:21:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2018-11-22 10:21:49 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
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-11-22 10:21:49 +08:00
|
|
|
width: auto;
|
2017-09-06 22:47:48 +08:00
|
|
|
}
|
|
|
|
|
2017-11-24 00:14:51 +08:00
|
|
|
.d-icon-home {
|
2019-03-19 18:39:38 +08:00
|
|
|
font-size: $font-up-6;
|
2017-09-06 22:47:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
position: relative;
|
2018-02-17 04:58:10 +08:00
|
|
|
display: flex;
|
2018-11-22 10:21:49 +08:00
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-left: auto;
|
2018-02-17 04:58:10 +08:00
|
|
|
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-12-08 02:56:54 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
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,
|
2020-02-25 21:31:04 +08:00
|
|
|
.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
|
|
|
}
|
|
|
|
|
2020-02-25 21:31:04 +08:00
|
|
|
.login-button {
|
2017-09-06 22:47:48 +08:00
|
|
|
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,
|
2019-01-04 01:03:01 +08:00
|
|
|
.reviewables {
|
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;
|
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 {
|
2019-01-18 10:47:26 +08:00
|
|
|
width: 2.1333em;
|
|
|
|
height: 2.1333em;
|
2018-02-17 04:58:10 +08:00
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
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;
|
2019-02-01 08:31:09 +08:00
|
|
|
.d-icon {
|
|
|
|
color: $primary-medium;
|
|
|
|
}
|
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;
|
|
|
|
background-color: $secondary;
|
|
|
|
cursor: default;
|
|
|
|
border-top: 1px solid $primary-low;
|
|
|
|
border-left: 1px solid $primary-low;
|
|
|
|
border-right: 1px solid $primary-low;
|
2019-02-01 02:59:49 +08:00
|
|
|
.d-icon {
|
|
|
|
color: $primary-medium;
|
|
|
|
}
|
2017-09-06 23:29:43 +08:00
|
|
|
&: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;
|
2019-02-01 02:59:49 +08:00
|
|
|
color: $header_primary-low-mid;
|
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;
|
2019-01-18 04:46:55 +08:00
|
|
|
min-width: 0.6em;
|
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
|
|
|
}
|
2020-04-01 07:09:20 +08:00
|
|
|
.unread-high-priority-notifications,
|
2018-06-08 17:49:31 +08:00
|
|
|
.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;
|
|
|
|
}
|
2018-11-22 10:21:49 +08:00
|
|
|
|
|
|
|
// topic info in the header
|
|
|
|
.extra-info-wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 100%;
|
|
|
|
line-height: $line-height-medium;
|
|
|
|
padding: 0 1.5em 0 0.5em;
|
|
|
|
// we need to hide overflow in both to truncate the title in a flexbox
|
|
|
|
overflow: hidden;
|
|
|
|
.extra-info {
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
animation: fadein 0.5s;
|
|
|
|
}
|
2020-07-16 07:30:35 +08:00
|
|
|
.title-wrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"title title"
|
|
|
|
"categories extra";
|
|
|
|
grid-template-columns: auto minmax(2em, 1fr); // min must be as wide as ellipsis
|
|
|
|
align-items: baseline;
|
|
|
|
.header-title {
|
|
|
|
grid-area: title;
|
|
|
|
}
|
|
|
|
.categories-wrapper {
|
|
|
|
grid-area: categories;
|
|
|
|
}
|
|
|
|
.topic-header-extra {
|
|
|
|
grid-area: extra;
|
|
|
|
}
|
|
|
|
}
|
2018-11-22 10:21:49 +08:00
|
|
|
.topic-link {
|
|
|
|
color: $header_primary;
|
|
|
|
display: block;
|
2019-11-07 03:00:29 +08:00
|
|
|
@include ellipsis;
|
2020-07-28 05:26:48 +08:00
|
|
|
// Some characters like '/' and 'j' can be wider than the font's em-box
|
|
|
|
// this causes some left/right text clipping with overflow hidden
|
|
|
|
// extra padding adds space to account for this; negative margin repositions
|
|
|
|
$wiggle-room: 0.15em;
|
|
|
|
padding-left: $wiggle-room;
|
|
|
|
margin-left: -#{$wiggle-room};
|
2018-11-22 10:21:49 +08:00
|
|
|
}
|
|
|
|
.topic-statuses {
|
2018-12-07 08:22:04 +08:00
|
|
|
.d-icon {
|
|
|
|
color: $header_primary-medium;
|
2018-11-22 10:21:49 +08:00
|
|
|
}
|
|
|
|
.d-icon-envelope {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
}
|
2019-08-28 16:18:27 +08:00
|
|
|
.header-title {
|
2020-07-16 07:30:35 +08:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2018-11-22 10:21:49 +08:00
|
|
|
font-size: $font-up-3;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.categories-wrapper {
|
|
|
|
display: inline-flex;
|
2019-03-19 18:39:38 +08:00
|
|
|
flex: 0 1 auto;
|
2020-07-16 07:30:35 +08:00
|
|
|
@include ellipsis;
|
2019-03-19 18:39:38 +08:00
|
|
|
.badge-wrapper {
|
2019-11-07 03:00:29 +08:00
|
|
|
@include ellipsis;
|
2018-11-22 10:21:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.badge-wrapper {
|
2020-07-16 07:30:35 +08:00
|
|
|
margin-right: 0.7em;
|
|
|
|
min-width: 2.75em; // min needed for ellipsis
|
2018-11-22 10:21:49 +08:00
|
|
|
}
|
2018-12-08 09:01:38 +08:00
|
|
|
.badge-wrapper {
|
|
|
|
&.bullet,
|
|
|
|
&.bar,
|
|
|
|
&.none {
|
|
|
|
span.badge-category {
|
|
|
|
color: $header_primary-high;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-22 10:21:49 +08:00
|
|
|
.topic-header-extra {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 100%;
|
|
|
|
.discourse-tags {
|
2018-12-08 09:01:38 +08:00
|
|
|
color: $header_primary-high;
|
2019-11-07 03:00:29 +08:00
|
|
|
@include ellipsis;
|
2018-11-22 10:21:49 +08:00
|
|
|
.discourse-tag {
|
2019-01-05 23:09:44 +08:00
|
|
|
display: inline; // tags need to stay inline in order for them to truncate
|
2020-07-16 07:30:35 +08:00
|
|
|
vertical-align: unset;
|
2018-11-22 10:21:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-30 22:40:40 +08:00
|
|
|
|
2019-01-05 23:09:44 +08:00
|
|
|
// PM header participants
|
|
|
|
|
|
|
|
$avatar-height: 1.641em;
|
|
|
|
$mobile-avatar-height: 1.532em;
|
|
|
|
|
2018-12-30 22:40:40 +08:00
|
|
|
.topic-header-participants {
|
2019-01-05 23:09:44 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: $font-down-1;
|
2020-07-16 07:30:35 +08:00
|
|
|
@include ellipsis;
|
2019-01-06 00:11:53 +08:00
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2019-01-05 23:09:44 +08:00
|
|
|
.trigger-user-card,
|
|
|
|
.trigger-group-card {
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.trigger-user-card {
|
|
|
|
.icon {
|
|
|
|
height: $avatar-height;
|
|
|
|
.mobile-view & {
|
|
|
|
height: $mobile-avatar-height;
|
|
|
|
}
|
|
|
|
display: inline-block;
|
|
|
|
img {
|
|
|
|
height: 100%;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
2018-12-30 22:40:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.trigger-group-card {
|
2019-01-05 23:09:44 +08:00
|
|
|
padding: 0 5px;
|
2019-01-02 17:56:42 +08:00
|
|
|
border: 1px solid $primary-low;
|
|
|
|
border-radius: 0.25em;
|
2020-07-16 07:30:35 +08:00
|
|
|
min-width: 3em;
|
2019-11-07 03:00:29 +08:00
|
|
|
@include ellipsis;
|
2019-01-02 17:56:42 +08:00
|
|
|
|
2019-01-05 23:09:44 +08:00
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: $avatar-height;
|
|
|
|
.mobile-view & {
|
|
|
|
height: $mobile-avatar-height;
|
|
|
|
}
|
2019-01-02 17:56:42 +08:00
|
|
|
color: $primary-high;
|
|
|
|
|
|
|
|
.d-icon {
|
2019-01-05 23:09:44 +08:00
|
|
|
margin-right: 5px;
|
2019-01-02 17:56:42 +08:00
|
|
|
}
|
|
|
|
}
|
2019-01-05 23:09:44 +08:00
|
|
|
|
|
|
|
span {
|
2019-11-07 03:00:29 +08:00
|
|
|
@include ellipsis;
|
2019-01-05 23:09:44 +08:00
|
|
|
}
|
2018-12-30 22:40:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.more-participants {
|
|
|
|
color: $header_primary-high;
|
2019-01-05 23:09:44 +08:00
|
|
|
margin-left: 5px;
|
2018-12-30 22:40:40 +08:00
|
|
|
}
|
|
|
|
}
|