[Glitch] Fix media editing modal and profile directory in light theme

Port f51f99c3c2 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
Eugen Rochko
2019-10-03 03:17:29 +02:00
committed by Thibaut Girka
parent cd2fce0318
commit 7ca6153c0c
6 changed files with 50 additions and 6 deletions

View File

@@ -736,6 +736,7 @@
&:focus,
&:active {
color: darken($lighter-text-color, 4%);
background-color: transparent;
}
}
@@ -804,6 +805,7 @@
}
.embed-modal {
width: auto;
max-width: 80vw;
max-height: 80vh;
@@ -834,6 +836,7 @@
font-size: 14px;
margin: 0;
margin-bottom: 15px;
border-radius: 4px;
&::-moz-focus-inner {
border: 0;
@@ -859,6 +862,7 @@
max-width: 100%;
overflow: hidden;
border: 0;
border-radius: 4px;
}
}
}

View File

@@ -640,6 +640,10 @@ a.status__display-name,
color: inherit;
}
.detailed-status .button.logo-button {
margin-bottom: 15px;
}
.detailed-status__display-name {
color: $secondary-text-color;
display: block;

View File

@@ -414,6 +414,20 @@
}
}
.directory__card {
border-radius: 4px;
@media screen and (max-width: $no-gap-breakpoint) {
border-radius: 0;
}
}
.page-header {
@media screen and (max-width: $no-gap-breakpoint) {
border-bottom: 0;
}
}
.public-account-header {
overflow: hidden;
margin-bottom: 10px;

View File

@@ -230,8 +230,19 @@
.report-modal,
.embed-modal,
.error-modal,
.onboarding-modal {
background: $ui-base-color;
.onboarding-modal,
.report-modal__comment .setting-text__wrapper,
.report-modal__comment .setting-text {
background: $white;
border: 1px solid lighten($ui-base-color, 8%);
}
.report-modal__comment {
border-right-color: lighten($ui-base-color, 8%);
}
.report-modal__container {
border-top-color: lighten($ui-base-color, 8%);
}
.boost-modal__action-bar,

View File

@@ -18,6 +18,8 @@ $darker-text-color: $classic-base-color !default;
$dark-text-color: #444b5d;
$action-button-color: #606984;
$success-green: lighten(#3c754d, 8%);
$base-overlay-background: $white !default;
$inverted-text-color: $black !default;