mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Fixed power select trigger styles in post preview (#21997)
No issue - The css specificity had changed due to adding `:not(gh-input-x)`, which led to an unintended border around the free/paid dropdown in the email preview - The description field on the tag page had an unintended `max-width`.
This commit is contained in:
parent
9f13ad0716
commit
40073d916a
2 changed files with 3 additions and 2 deletions
|
@ -220,8 +220,8 @@
|
|||
grid-template-columns: 65px 1fr;
|
||||
}
|
||||
|
||||
.gh-preview-newsletter-trigger,
|
||||
.gh-preview-newsletter-trigger:focus {
|
||||
.ember-power-select-trigger.gh-preview-newsletter-trigger,
|
||||
.ember-power-select-trigger.gh-preview-newsletter-trigger:focus {
|
||||
padding: 0;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
|
|
|
@ -301,6 +301,7 @@ textarea {
|
|||
|
||||
textarea.gh-input-x {
|
||||
padding-block: 8px;
|
||||
max-width: unset;
|
||||
}
|
||||
|
||||
.ember-power-select-multiple-trigger {
|
||||
|
|
Loading…
Add table
Reference in a new issue