mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:21:35 +08:00
353 lines
6.3 KiB
SCSS
353 lines
6.3 KiB
SCSS
.menu-panel.slide-in {
|
|
position: fixed;
|
|
right: 0;
|
|
|
|
.panel-body {
|
|
position: absolute;
|
|
top: 3px;
|
|
bottom: 37px;
|
|
width: 97%;
|
|
}
|
|
}
|
|
|
|
.menu-panel.drop-down {
|
|
position: absolute;
|
|
// positions are relative to the .d-header .panel div
|
|
top: 100%; // directly underneath .panel
|
|
right: -10px; // 10px to the right of .panel - adjust as needed
|
|
}
|
|
|
|
.menu-panel {
|
|
border: 1px solid $primary-low;
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
|
|
background-color: $secondary;
|
|
z-index: z("header");
|
|
padding: 0.5em;
|
|
width: 300px;
|
|
|
|
hr {
|
|
margin: 3px 0;
|
|
}
|
|
|
|
.panel-header {
|
|
position: absolute;
|
|
right: 20px;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.panel-body {
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
|
|
.menu-links.columned {
|
|
li {
|
|
width: 50%;
|
|
float: left;
|
|
}
|
|
}
|
|
|
|
.menu-panel {
|
|
ul.menu-links li, ul li.heading {
|
|
a {
|
|
padding: 0.25em 0.5em;
|
|
display: block;
|
|
&:hover {
|
|
background-color: $highlight-medium;
|
|
}
|
|
}
|
|
|
|
.new {
|
|
font-size: $font-down-1;
|
|
margin-left: 0.5em;
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
}
|
|
}
|
|
|
|
li.category-link {
|
|
float: left;
|
|
background-color: transparent;
|
|
display: inline-flex;
|
|
margin: 0.25em 0.5em;
|
|
width: 43%;
|
|
.badge-notification {
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
background-color: transparent;
|
|
display: inline;
|
|
padding: 0;
|
|
font-size: $font-down-1;
|
|
line-height: $line-height-large;
|
|
}
|
|
.badge-wrapper {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: inline-block;
|
|
&.bar, &.bullet {
|
|
color: $primary;
|
|
}
|
|
&.box {
|
|
color: $secondary;
|
|
+ a.badge.badge-notification {
|
|
padding-top: 2px;
|
|
}
|
|
span {
|
|
z-index: z("base") * -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// note these topic counts only appear for anons in the category hamburger drop down
|
|
b.topics-count {
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
font-weight: normal;
|
|
font-size: $font-down-1;
|
|
}
|
|
.box + b.topics-count {
|
|
padding-top: 2px;
|
|
}
|
|
|
|
span.badge-category {
|
|
max-width: 90px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
}
|
|
|
|
.search-menu {
|
|
|
|
.search-input {
|
|
position: relative;
|
|
}
|
|
|
|
.search-context .show-help {
|
|
float: right;
|
|
}
|
|
|
|
.heading {
|
|
padding: 5px 0 5px 5px;
|
|
.filter {
|
|
padding: 0 5px;
|
|
}
|
|
}
|
|
|
|
input[type='text'] {
|
|
margin: 0.5em 3px;
|
|
box-sizing: border-box;
|
|
width: calc(100% - 6px);
|
|
height: 32px;
|
|
}
|
|
|
|
.search-context {
|
|
padding: 0 5px;
|
|
label { margin-bottom: 0; }
|
|
}
|
|
|
|
.searching {
|
|
position: absolute;
|
|
top: 1.15em;
|
|
right: 1em;
|
|
|
|
.spinner {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-width: 2px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
// I am ghetto using this to display "Show More".. be warned
|
|
.no-results {
|
|
padding: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.filter {
|
|
padding: 0;
|
|
&:hover {background: transparent;}
|
|
}
|
|
|
|
.search-link {
|
|
.badge-category-parent {
|
|
line-height: $line-height-small;
|
|
}
|
|
.topic-title {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.topic-statuses {
|
|
float: none;
|
|
display: inline-block;
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
margin: 0;
|
|
.fa {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
li:not(.category):not(.heading) {
|
|
font-size: $font-0;
|
|
line-height: $line-height-medium;
|
|
|
|
.fa {
|
|
font-size: inherit;
|
|
}
|
|
|
|
a {
|
|
&:not(.discourse-tag) {
|
|
display: block;
|
|
padding: 5px;
|
|
}
|
|
transition: all linear .15s;
|
|
|
|
.user-results {
|
|
color: dark-light-choose($primary-high, $secondary-low);
|
|
}
|
|
}
|
|
|
|
&:hover a:not(.badge-notification) {
|
|
background-color: $highlight-medium;
|
|
}
|
|
|
|
button {margin-left: 5px;}
|
|
}
|
|
}
|
|
|
|
.user-menu {
|
|
|
|
.notifications {
|
|
h3 {
|
|
padding: 0 0.4em;
|
|
font-weight: bold;
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
.fa { color: dark-light-choose($primary-medium, $secondary-medium); }
|
|
.icon { color: dark-light-choose($primary-high, $secondary-low); }
|
|
li {
|
|
background-color: $tertiary-low;
|
|
|
|
// This is until other languages remove the HTML from within
|
|
// notifications. It can then be removed
|
|
div i.fa {
|
|
display: none;
|
|
}
|
|
|
|
span { color: $primary; }
|
|
&:hover { background-color: $highlight-medium; }
|
|
a { padding: 0; }
|
|
p {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
li:not(.show-all) {
|
|
padding: 0.25em 0.5em;
|
|
i {
|
|
float: left;
|
|
margin-right: 5px;
|
|
padding-top: 2px;
|
|
}
|
|
}
|
|
.is-warning {
|
|
.d-icon-envelope-o {
|
|
&:before {
|
|
content: "\f0e0";
|
|
}
|
|
color: $danger;
|
|
}
|
|
}
|
|
.read {
|
|
background-color: $secondary;
|
|
}
|
|
.none {
|
|
padding-top: 5px;
|
|
}
|
|
.spinner-container.visible {
|
|
min-height: 30px;
|
|
}
|
|
.spinner {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-width: 2px;
|
|
margin: 0 auto;
|
|
}
|
|
.show-all .btn {
|
|
width: 100%;
|
|
padding: 2px 0;
|
|
color: dark-light-choose($primary-medium, $secondary-high);
|
|
background: blend-primary-secondary(5%);
|
|
&:hover {
|
|
color: $primary;
|
|
background: dark-light-diff($primary, $secondary, 90%, -80%);
|
|
}
|
|
}
|
|
/* as a big ol' click target, don't let text inside be selected */
|
|
@include unselectable;
|
|
}
|
|
|
|
.logout-link, .dismiss-link {
|
|
display: inline-block;
|
|
}
|
|
.dismiss-link {
|
|
float: right;
|
|
}
|
|
}
|
|
|
|
.notifications .logout {
|
|
padding: 0.25em;
|
|
&:hover {
|
|
background-color: $highlight-medium;
|
|
}
|
|
}
|
|
|
|
div.menu-links-header {
|
|
width: 100%;
|
|
display: table;
|
|
border-collapse: separate;
|
|
border-spacing: 0 0.5em;
|
|
.menu-links-row {
|
|
display: table-row;
|
|
}
|
|
a:hover {
|
|
background-color: $highlight-medium;
|
|
}
|
|
a {
|
|
padding: 0.5em;
|
|
}
|
|
a.user-activity-link {
|
|
max-width: 150px;
|
|
display: block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin: -0.5em 0;
|
|
}
|
|
li {
|
|
display: table-cell;
|
|
width: auto;
|
|
text-align: center;
|
|
}
|
|
li:first-child {
|
|
text-align: left;
|
|
}
|
|
|
|
li:last-child {
|
|
text-align: right;
|
|
}
|
|
.fa, a {
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
}
|
|
|
|
.d-icon-user {
|
|
margin-right: 0.2em;
|
|
}
|
|
}
|