mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 07:59:52 +08:00
This resolves a number of cases where we were highlighting content on hover that isn't clickable. Common table example Before: <img width="1726" height="548" alt="image" src="https://github.com/user-attachments/assets/24635052-0efd-4c02-b75b-dc3901acd799" /> After: <img width="1744" height="550" alt="image" src="https://github.com/user-attachments/assets/73837bff-532b-48ec-99de-2e579221eccb" /> Reports are a case where the box *should* be clickable, so I kept the hover effect and made the box clickable via changes to `admin-section-landing-item`... Before: <img width="1710" height="838" alt="image" src="https://github.com/user-attachments/assets/a8bc8f67-5f1f-44c1-8de7-e64c1a60fd49" /> After (removed the blue because the headings aren't actually links anymore, the whole box is): <img width="1732" height="922" alt="image" src="https://github.com/user-attachments/assets/2fb5b63a-1cdc-4fc9-906a-c343c26cd025" /> In cases where these boxes have buttons, the inner title (if linked) and buttons are clickable, not the box... <img width="400" alt="image" src="https://github.com/user-attachments/assets/3bf04522-179b-49e6-ae0a-f5d3714b94ec" />
281 lines
4.5 KiB
SCSS
Vendored
281 lines
4.5 KiB
SCSS
Vendored
@use "lib/viewport";
|
|
|
|
.admin-report {
|
|
.conditional-loading-section {
|
|
&.is-loading {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1px solid var(--content-border-color);
|
|
margin-bottom: 0.5em;
|
|
padding-bottom: 0.5em;
|
|
}
|
|
|
|
.header .breadcrumb {
|
|
margin: 0;
|
|
list-style: none;
|
|
|
|
.item {
|
|
display: inline;
|
|
font-size: var(--font-up-1);
|
|
}
|
|
|
|
.all-reports .report-url {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.report {
|
|
font-weight: 700;
|
|
|
|
.report-url {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.info {
|
|
cursor: pointer;
|
|
margin-left: 0.25em;
|
|
color: var(--primary-low-mid);
|
|
|
|
&:hover {
|
|
color: var(--primary-medium);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.header .trend {
|
|
margin-left: auto;
|
|
margin-right: 8px;
|
|
|
|
&.trending-down,
|
|
&.high-trending-down {
|
|
color: var(--danger);
|
|
}
|
|
|
|
&.trending-up,
|
|
&.high-trending-up {
|
|
color: var(--success);
|
|
}
|
|
|
|
&.no-change {
|
|
color: var(--primary-medium);
|
|
|
|
.d-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.value {
|
|
font-size: var(--font-up-1);
|
|
}
|
|
|
|
.icon {
|
|
font-size: var(--font-up-1);
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
.body {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.main {
|
|
flex: 1;
|
|
}
|
|
|
|
.main .report-alert {
|
|
margin: 0;
|
|
text-align: center;
|
|
padding: 3em;
|
|
border: 1px solid transparent;
|
|
|
|
a {
|
|
color: var(--primary-medium);
|
|
}
|
|
|
|
.d-icon {
|
|
color: currentcolor;
|
|
font-size: var(--font-up-5);
|
|
display: block;
|
|
margin: 0.25em auto;
|
|
}
|
|
|
|
&.no-data,
|
|
&.rate-limited {
|
|
background: var(--secondary);
|
|
border-color: var(--primary-low);
|
|
color: var(--primary-low-mid);
|
|
}
|
|
|
|
&.rate-limited .d-icon {
|
|
color: var(--danger);
|
|
}
|
|
|
|
&.timeout,
|
|
&.exception {
|
|
border-color: var(--danger-low);
|
|
color: var(--danger);
|
|
}
|
|
}
|
|
|
|
.average-chart {
|
|
padding: 0.5em;
|
|
border: 1px solid var(--highlight);
|
|
color: var(--highlight);
|
|
margin-bottom: 1em;
|
|
text-align: center;
|
|
background: var(--highlight-bg);
|
|
}
|
|
|
|
.filters {
|
|
display: flex;
|
|
margin-left: 1em;
|
|
flex-direction: column;
|
|
width: 220px;
|
|
|
|
.modes {
|
|
margin: 0 0 1em 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
|
|
.mode {
|
|
display: inline-flex;
|
|
flex: 1 0 0px;
|
|
|
|
.mode-btn.is-current {
|
|
color: var(--tertiary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.chart-groupings {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, 1fr);
|
|
grid-gap: 0.5em;
|
|
margin-bottom: 1em;
|
|
|
|
.chart-grouping.active {
|
|
background: var(--tertiary);
|
|
color: var(--secondary);
|
|
}
|
|
}
|
|
|
|
.control {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.control .label {
|
|
font-weight: 700;
|
|
width: 100%;
|
|
}
|
|
|
|
.control .input,
|
|
.control .select-kit {
|
|
width: 100%;
|
|
|
|
.export-csv-btn {
|
|
width: 100%;
|
|
}
|
|
|
|
.refresh-report-btn {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.d-page-subheader__title a {
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
|
|
.rtl .admin-report {
|
|
.filters {
|
|
margin-left: 0;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.trend {
|
|
margin-left: unset;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
.admin-report.storage-stats {
|
|
.main {
|
|
flex: 1 1 auto;
|
|
}
|
|
}
|
|
|
|
.admin-reports-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid var(--content-border-color);
|
|
padding-bottom: 0.5em;
|
|
|
|
@media screen and (width <= 400px) {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0 0.5em 0 0;
|
|
|
|
a {
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-reports-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
list-style-type: none;
|
|
|
|
&.admin-section-landing-wrapper {
|
|
gap: 1em;
|
|
padding-top: 0;
|
|
|
|
.admin-section-landing-item {
|
|
border-radius: var(--d-border-radius);
|
|
border: 1px solid var(--content-border-color);
|
|
margin-bottom: 0;
|
|
|
|
@include viewport.from(sm) {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&:hover {
|
|
border: 1px solid var(--primary-low-mid);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.mobile-view {
|
|
.admin-report.post-edits {
|
|
.admin-report-table {
|
|
.report-table {
|
|
thead tr th.edit_reason,
|
|
tbody tr td.edit_reason {
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-report.trending-search {
|
|
.admin-report-table {
|
|
.report-table {
|
|
thead tr th.term,
|
|
tbody tr td.term {
|
|
width: 50%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|