Skip to content

Commit

Permalink
Fix post filter & report styling (mastodon#31349)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmstan authored Aug 9, 2024
1 parent 6ca731e commit 9538d9c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 21 deletions.
4 changes: 4 additions & 0 deletions app/javascript/styles/mastodon-light/diff.scss
Original file line number Diff line number Diff line change
Expand Up @@ -555,3 +555,7 @@ a.sparkline {
.setting-text {
background: darken($ui-base-color, 10%);
}

.report-dialog-modal__textarea {
background: darken($ui-base-color, 10%);
}
38 changes: 18 additions & 20 deletions app/javascript/styles/mastodon/components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6244,17 +6244,18 @@ a.status-card {
max-width: 90vw;
width: 480px;
height: 80vh;
background: lighten($ui-secondary-color, 8%);
color: $inverted-text-color;
border-radius: 8px;
background: var(--background-color);
color: $primary-text-color;
border-radius: 4px;
border: 1px solid var(--background-border-color);
overflow: hidden;
position: relative;
flex-direction: column;
display: flex;

&__container {
box-sizing: border-box;
border-top: 1px solid $ui-secondary-color;
border-top: 1px solid var(--background-border-color);
padding: 20px;
flex-grow: 1;
display: flex;
Expand Down Expand Up @@ -6284,7 +6285,7 @@ a.status-card {
&__lead {
font-size: 17px;
line-height: 22px;
color: lighten($inverted-text-color, 16%);
color: $secondary-text-color;
margin-bottom: 30px;

a {
Expand Down Expand Up @@ -6319,7 +6320,7 @@ a.status-card {

.status__content,
.status__content p {
color: $inverted-text-color;
color: $primary-text-color;
}

.status__content__spoiler-link {
Expand Down Expand Up @@ -6364,21 +6365,21 @@ a.status-card {
.poll__option.dialog-option {
padding: 15px 0;
flex: 0 0 auto;
border-bottom: 1px solid $ui-secondary-color;
border-bottom: 1px solid var(--background-border-color);

&:last-child {
border-bottom: 0;
}

& > .poll__option__text {
font-size: 13px;
color: lighten($inverted-text-color, 16%);
color: $secondary-text-color;

strong {
font-size: 17px;
font-weight: 500;
line-height: 22px;
color: $inverted-text-color;
color: $primary-text-color;
display: block;
margin-bottom: 4px;

Expand All @@ -6397,22 +6398,19 @@ a.status-card {
display: block;
box-sizing: border-box;
width: 100%;
color: $inverted-text-color;
background: $simple-background-color;
color: $primary-text-color;
background: $ui-base-color;
padding: 10px;
font-family: inherit;
font-size: 17px;
line-height: 22px;
resize: vertical;
border: 0;
border: 1px solid var(--background-border-color);
outline: 0;
border-radius: 4px;
margin: 20px 0;

&::placeholder {
color: $dark-text-color;
}

&:focus {
outline: 0;
}
Expand All @@ -6433,16 +6431,16 @@ a.status-card {
}

.button.button-secondary {
border-color: $inverted-text-color;
color: $inverted-text-color;
border-color: $ui-button-destructive-background-color;
color: $ui-button-destructive-background-color;
flex: 0 0 auto;

&:hover,
&:focus,
&:active {
background: transparent;
border-color: $ui-button-background-color;
color: $ui-button-background-color;
background: $ui-button-destructive-background-color;
border-color: $ui-button-destructive-background-color;
color: $white;
}
}

Expand Down
1 change: 0 additions & 1 deletion app/javascript/styles/mastodon/emoji_picker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@
&:focus {
outline: none !important;
border-width: 1px !important;
border-color: $ui-button-background-color;
}

&::-webkit-search-cancel-button {
Expand Down

0 comments on commit 9538d9c

Please sign in to comment.