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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

395 lines
7.4 KiB
SCSS
Raw Normal View History

.d-header-wrap {
@include sticky;
top: 0;
z-index: z("header");
}
.d-header {
display: flex;
align-items: center;
2017-09-06 10:47:48 -04:00
width: 100%;
z-index: z("header");
background-color: var(--header_background);
box-shadow: shadow("header");
backface-visibility: hidden; /** do magic for scrolling performance **/
2017-09-06 10:47:48 -04:00
> .wrap {
box-sizing: border-box;
width: 100%;
height: 100%;
.contents {
display: flex;
align-items: center;
height: 100%;
.header-row {
width: 100%;
.logo-wrapper {
float: left;
}
.auth-buttons {
float: right;
margin-top: 0.4em;
.login-button,
.signup-button {
padding: 8px 14px;
}
}
}
}
}
2017-09-06 10:47:48 -04:00
.title {
display: flex;
align-items: center;
height: 100%;
a,
a:visited {
color: var(--header_primary);
}
2017-09-06 10:47:48 -04:00
}
#site-logo {
width: auto;
2017-09-06 10:47:48 -04:00
}
.d-icon-home {
font-size: $font-up-6;
2017-09-06 10:47:48 -04:00
}
.panel {
position: relative;
display: flex;
flex: 0 0 auto;
margin-left: auto;
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 {
display: flex;
align-items: center;
margin-top: 0.2em;
2018-02-16 17:13:10 -05:00
}
.login-button,
.sign-up-button {
2017-09-06 10:47:48 -04:00
padding: 6px 10px;
.fa {
margin-right: 3px;
}
2017-09-06 10:47:48 -04:00
}
.login-button {
2017-09-06 10:47:48 -04:00
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 {
.flagged-posts,
.reviewables {
background: var(--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: 0.2143em;
2017-09-06 11:29:43 -04:00
text-decoration: none;
cursor: pointer;
border-top: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
transition: all linear 0.15s;
outline: none;
img.avatar {
width: 2.1333em;
height: 2.1333em;
}
.discourse-no-touch &:hover,
.discourse-no-touch &:focus {
background-color: var(--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;
2019-01-31 19:31:09 -05:00
.d-icon {
color: var(--primary-medium);
2019-01-31 19:31:09 -05:00
}
2017-09-06 11:29:43 -04:00
}
&:active {
color: var(--primary);
background-color: var(--primary-low);
2017-09-06 11:29:43 -04:00
}
}
.drop-down-mode & {
2017-09-06 11:29:43 -04:00
.active .icon {
position: relative;
background-color: var(--secondary);
2017-09-06 11:29:43 -04:00
cursor: default;
border-top: 1px solid var(--primary-low);
border-left: 1px solid var(--primary-low);
border-right: 1px solid var(--primary-low);
.d-icon {
color: var(--primary-medium);
}
2017-09-06 11:29:43 -04:00
&: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 var(--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;
color: var(--header_primary-low-mid);
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;
2019-01-17 15:46:55 -05:00
min-width: 0.6em;
2017-09-06 11:29:43 -04:00
}
.unread-notifications {
left: auto;
2018-01-12 17:27:38 -05:00
right: -3px;
background-color: var(--tertiary-med-or-tertiary);
2017-09-06 11:29:43 -04:00
}
.unread-high-priority-notifications,
.ring {
2017-09-06 11:29:43 -04:00
left: auto;
right: 25px;
2017-09-06 10:47:48 -04:00
}
}
.header-sidebar-toggle {
button {
margin-right: 1em;
box-sizing: content-box; // matches other header icons
display: flex;
justify-content: center;
width: 2.2857em;
height: 2.2857em;
padding: 0.2143em;
&:focus,
.discourse-no-touch & {
&:hover {
background-color: var(--primary-low);
}
}
.d-icon {
width: 100%;
font-size: var(--font-up-4);
line-height: var(--line-height-large);
display: inline-block;
color: var(--header_primary-low-mid);
}
}
}
.highlight-strong {
background-color: var(--highlight-medium);
}
// 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;
}
.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;
}
}
.topic-link {
color: var(--header_primary);
display: block;
@include ellipsis;
}
.topic-statuses {
.d-icon {
color: var(--header_primary-medium);
}
.d-icon-envelope {
color: var(--danger);
}
}
.header-title {
padding: 0;
margin: 0;
font-size: $font-up-3;
width: 100%;
}
.categories-wrapper {
display: inline-flex;
flex: 0 1 auto;
@include ellipsis;
.badge-wrapper {
@include ellipsis;
}
}
.badge-wrapper {
margin-right: 0.7em;
min-width: 2.75em; // min needed for ellipsis
}
2018-12-07 20:01:38 -05:00
.badge-wrapper {
&.bullet,
&.bar,
&.none {
span.badge-category {
color: var(--header_primary-high);
2018-12-07 20:01:38 -05:00
}
}
}
.topic-header-extra {
display: inline-flex;
align-items: center;
max-width: 100%;
.discourse-tags {
display: inline;
color: var(--header_primary-high);
@include ellipsis;
.discourse-tag {
display: inline; // tags need to stay inline in order for them to truncate
vertical-align: unset;
}
}
}
}
// PM header participants
$avatar-height: 1.641em;
$mobile-avatar-height: 1.532em;
.topic-header-participants {
display: flex;
align-items: center;
font-size: $font-down-1;
@include ellipsis;
&:not(:first-child) {
margin-left: 5px;
}
.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;
}
}
}
.trigger-group-card {
padding: 0 5px;
border: 1px solid var(--primary-low);
border-radius: 0.25em;
min-width: 3em;
@include ellipsis;
.icon {
display: flex;
align-items: center;
height: $avatar-height;
.mobile-view & {
height: $mobile-avatar-height;
}
color: var(--primary-high);
.d-icon {
margin-right: 5px;
}
}
span {
@include ellipsis;
}
}
.more-participants {
color: var(--header_primary-high);
margin-left: 5px;
}
}