mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:26:29 +08:00
c937afc75e
A first step to adding automatic dark mode color scheme switching. Adds a new SCSS file at `color_definitions.scss` that serves to output all SCSS color variables as CSS custom properties. And replaces all SCSS color variables with the new CSS custom properties throughout the stylesheets. This is an alpha feature at this point, can only be enabled via console using the `default_dark_mode_color_scheme_id` site setting.
440 lines
7.4 KiB
SCSS
440 lines
7.4 KiB
SCSS
// Styles for /admin/logs
|
|
|
|
.web-hook-events {
|
|
border-bottom: dotted 1px var(--primary-low-mid);
|
|
.heading-container {
|
|
width: 100%;
|
|
background-color: var(--primary-low);
|
|
}
|
|
.col.heading {
|
|
font-weight: bold;
|
|
padding: 4px 0;
|
|
}
|
|
.col {
|
|
display: inline-block;
|
|
padding-top: 6px;
|
|
vertical-align: top;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
.ember-list-item-view {
|
|
width: 100%;
|
|
border-top: solid 1px var(--primary-low);
|
|
}
|
|
}
|
|
|
|
.log-details-modal {
|
|
pre {
|
|
white-space: pre-wrap;
|
|
max-height: 250px;
|
|
}
|
|
.modal-tab {
|
|
width: 95%;
|
|
}
|
|
}
|
|
|
|
.staff-actions {
|
|
width: 100%;
|
|
word-wrap: break-word;
|
|
@media screen and (min-width: 550px) and (max-width: 767px) {
|
|
table.staff-logs tr {
|
|
display: grid;
|
|
grid-template-rows: auto auto;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
td {
|
|
align-self: start;
|
|
padding: 2px 4px;
|
|
}
|
|
}
|
|
|
|
td.created-at {
|
|
grid-column-start: -1;
|
|
}
|
|
td.subject {
|
|
grid-row: 2;
|
|
grid-column-start: 2;
|
|
div.subject {
|
|
display: flex;
|
|
a {
|
|
word-wrap: break-word;
|
|
min-width: 25px;
|
|
}
|
|
}
|
|
}
|
|
|
|
td.details {
|
|
grid-row: 1;
|
|
grid-row-start: 1;
|
|
grid-row-end: 3;
|
|
grid-column-start: 3;
|
|
}
|
|
|
|
td.context {
|
|
grid-row-start: 1;
|
|
grid-row-end: 3;
|
|
grid-column-start: 4;
|
|
}
|
|
}
|
|
|
|
@include breakpoint(mobile-extra-large) {
|
|
table.staff-logs tr {
|
|
grid-template-columns: 1fr 1fr 0.5fr;
|
|
td.staff-users {
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
}
|
|
td.created-at {
|
|
grid-row: 1;
|
|
grid-column-start: -1;
|
|
text-align: right;
|
|
}
|
|
td.action {
|
|
grid-row: 2;
|
|
grid-column-start: 1;
|
|
}
|
|
td.subject {
|
|
grid-row: 2;
|
|
grid-column-start: 2;
|
|
grid-column-end: 5;
|
|
max-width: 60vw;
|
|
}
|
|
td.details,
|
|
td.context {
|
|
max-width: unset;
|
|
}
|
|
td.details {
|
|
grid-row: 3;
|
|
grid-column-start: 1;
|
|
grid-column-end: 5;
|
|
padding: 0.25em 0;
|
|
max-width: 90vw;
|
|
}
|
|
td.context {
|
|
grid-row: 4;
|
|
grid-column-start: 1;
|
|
grid-column-end: 5;
|
|
}
|
|
}
|
|
}
|
|
|
|
.staff-user {
|
|
font-weight: bold;
|
|
display: flex;
|
|
a:first-of-type {
|
|
margin-right: 0.25em;
|
|
}
|
|
.deleted-user {
|
|
font-size: $font-up-2;
|
|
}
|
|
}
|
|
.created_at {
|
|
text-align: center;
|
|
}
|
|
td.subject,
|
|
td.details {
|
|
max-width: 20vw;
|
|
> div {
|
|
max-height: 100px;
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.staff-action-logs-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
.select-kit {
|
|
margin: 0 0.5em;
|
|
}
|
|
button {
|
|
margin-left: auto;
|
|
display: flex;
|
|
}
|
|
margin: 0 0 1em 0;
|
|
a.filter {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin-bottom: 0.25em;
|
|
background-color: var(--primary-low);
|
|
padding: 3px 10px;
|
|
color: var(--primary);
|
|
&:hover {
|
|
color: var(--primary);
|
|
background-color: var(--primary-low);
|
|
}
|
|
.label {
|
|
font-weight: bold;
|
|
}
|
|
.d-icon {
|
|
margin-left: 6px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-logs-table {
|
|
input.ember-text-field {
|
|
padding: 1px 4px;
|
|
}
|
|
.btn {
|
|
padding: 2px 8px;
|
|
.fa {
|
|
margin-right: 2px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.screened-email-export {
|
|
display: block;
|
|
}
|
|
|
|
.screened-ip-address-form {
|
|
margin-left: 6px;
|
|
.combobox {
|
|
width: 130px;
|
|
}
|
|
}
|
|
|
|
.screened-ip-controls {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
input {
|
|
flex: 1 1 auto;
|
|
margin: 0 0.25em 0.25em;
|
|
}
|
|
b {
|
|
margin: 0 0.25em;
|
|
}
|
|
.select-kit {
|
|
margin: 0 0.25em 0.25em 0.25em;
|
|
flex: 1 1 auto;
|
|
}
|
|
.filter-screened-ip-address,
|
|
.screened-ip-address-form {
|
|
margin: 0 -0.25em 1em;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
}
|
|
@media screen and (min-width: 800px) {
|
|
.screened-ip-address-form {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
button {
|
|
display: flex;
|
|
white-space: nowrap;
|
|
margin: 0 0.25em 0.25em;
|
|
}
|
|
}
|
|
|
|
table.screened-ip-addresses {
|
|
td.ip_address {
|
|
min-width: 150px;
|
|
word-wrap: break-word;
|
|
input {
|
|
width: 80%;
|
|
}
|
|
}
|
|
td.action {
|
|
display: flex;
|
|
align-items: baseline;
|
|
.d-icon-check {
|
|
color: var(--success);
|
|
}
|
|
.d-icon-ban {
|
|
color: var(--danger);
|
|
}
|
|
.d-icon {
|
|
margin-right: 0.25em;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 550px) {
|
|
table.screened-ip-addresses tr {
|
|
grid-template-columns: repeat(5, 1fr) auto;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 549px) {
|
|
table.screened-ip-addresses tr {
|
|
td.actions {
|
|
grid-row: 3;
|
|
grid-column-start: -1;
|
|
grid-column-end: -4;
|
|
text-align: right;
|
|
margin-top: 0.5em;
|
|
}
|
|
td.created_at {
|
|
grid-row: 1;
|
|
grid-column-start: 3;
|
|
text-align: right;
|
|
}
|
|
td.last_match_at {
|
|
grid-row: 2;
|
|
grid-column-start: 3;
|
|
text-align: right;
|
|
}
|
|
td.match_count {
|
|
grid-row: 2;
|
|
grid-column-start: 2;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Screened URLs
|
|
|
|
@include breakpoint(tablet) {
|
|
.screened-urls {
|
|
td.domain {
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
word-wrap: break-word;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Screened emails
|
|
.screened-emails {
|
|
td.ip_address {
|
|
word-wrap: break-word;
|
|
@include breakpoint(tablet, min-width) {
|
|
max-width: 20vw;
|
|
}
|
|
}
|
|
|
|
@include breakpoint(tablet) {
|
|
td.email {
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
word-wrap: break-word;
|
|
}
|
|
td.ip_address {
|
|
grid-row: 2;
|
|
grid-column-start: 1;
|
|
grid-column-end: -1;
|
|
}
|
|
td.action {
|
|
margin-top: 0.25em;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Watched words
|
|
|
|
.watched-word-box {
|
|
display: inline-block;
|
|
width: 250px;
|
|
margin-bottom: 1em;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.admin-watched-words {
|
|
.clear-all-row {
|
|
display: flex;
|
|
margin-top: 10px;
|
|
justify-content: flex-end;
|
|
.clear-all {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.watched-word-controls {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 1em;
|
|
justify-content: space-between;
|
|
.download-upload-controls {
|
|
display: flex;
|
|
}
|
|
.download {
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
|
|
.watched-words-list {
|
|
margin-top: 20px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.watched-word {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
.d-icon {
|
|
margin-right: 0.25em;
|
|
color: var(--primary-medium);
|
|
}
|
|
&:hover .d-icon {
|
|
color: var(--danger);
|
|
}
|
|
}
|
|
|
|
.watched-word-form {
|
|
display: inline-block;
|
|
.success-message {
|
|
margin-left: 1em;
|
|
}
|
|
}
|
|
|
|
.watched-words-uploader {
|
|
margin-left: 5px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
@media screen and (max-width: 500px) {
|
|
flex: 1 1 100%;
|
|
margin-top: 0.5em;
|
|
}
|
|
.instructions {
|
|
font-size: $font-down-1;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
|
|
.watched-words-detail {
|
|
.about {
|
|
margin: 0.5em 0 1em 0;
|
|
}
|
|
}
|
|
|
|
.watched-words-test-modal p {
|
|
margin-top: 0;
|
|
}
|
|
|
|
// Search logs
|
|
|
|
table.search-logs-list {
|
|
td.term {
|
|
width: 60%;
|
|
word-wrap: break-word;
|
|
@media screen and (max-width: 767px) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
th:not(.term),
|
|
td:not(.term) {
|
|
text-align: center;
|
|
}
|
|
@media screen and (min-width: 550px) {
|
|
tr {
|
|
td.term {
|
|
grid-column-start: 1;
|
|
grid-column: span 3;
|
|
}
|
|
}
|
|
}
|
|
@include breakpoint(mobile-extra-large) {
|
|
tr {
|
|
td.term {
|
|
grid-column-start: 1;
|
|
grid-column-end: 4;
|
|
}
|
|
th:not(.term),
|
|
td:not(.term) {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
}
|