Design Patch 2022-04-19 (#1360)

* Fix report page on mobile

* Fix mature tag colors in light theme

* Adjust spacing for badges in navigation

* Fix reply input background for notification on mobile
This commit is contained in:
Rave | 図書館猫 2022-04-19 21:01:28 +02:00 committed by GitHub
parent 07463312f0
commit 764e21c801
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 47 additions and 3 deletions

View file

@ -1021,6 +1021,38 @@ body {
padding-right: 0; padding-right: 0;
} }
} }
@media (max-width: $breakpoint-small) {
.card__main-actions {
margin-top: var(--spacing-s);
}
.section__actions {
margin-top: var(--spacing-m);
}
.MuiAutocomplete-root {
background-color: var(--color-input-bg);
border-radius: var(--border-radius);
.MuiOutlinedInput-input {
font-size: var(--font-body);
padding-left: var(--spacing-s);
padding-right: var(--spacing-s);
height: 22px !important;
&::placeholder {
color: #ffffff !important;
font-size: var(--font-body);
}
&:focus-visible {
box-shadow: unset;
}
}
.Mui-focused {
outline: 2px solid var(--color-primary);
}
.MuiOutlinedInput-notchedOutline {
border: none;
}
}
}
} }
.main--empty { .main--empty {

View file

@ -235,6 +235,10 @@
margin-left: 0; margin-left: 0;
} }
} }
.comment__badge {
margin-left: var(--spacing-xxs);
}
} }
&:hover:not(.navigation-link--active) { &:hover:not(.navigation-link--active) {

View file

@ -86,6 +86,11 @@ $contentMaxWidth: 60rem;
opacity: 1; opacity: 1;
} }
} }
.MuiAutocomplete-root {
background-color: var(--color-background);
border-radius: var(--border-radius);
}
} }
} }

View file

@ -76,9 +76,11 @@
.tag--mature { .tag--mature {
@extend .badge--tag-mature; @extend .badge--tag-mature;
background-color: #2a0000 !important; background-color: #710000 !important;
color: #ffffff !important;
&:hover { &:hover {
background-color: #ff0000 !important; background-color: #b00000 !important;
color: #ffffff !important;
} }
} }

View file

@ -23,7 +23,8 @@
fieldset-section.radio, fieldset-section.radio,
div.checkbox, div.checkbox,
div.section { div.section {
margin-top: var(--spacing-s); margin-top: var(--spacing-m);
margin-bottom: var(--spacing-s);
} }
.channel__selector { .channel__selector {