-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display block anchor in List View when set. #31992
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -243,6 +243,18 @@ | |
color: $white; | ||
} | ||
} | ||
|
||
.block-editor-block-navigation-block-select-button__anchor { | ||
background: rgba(30, 30, 30, 0.1); | ||
border-radius: 2px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This can be $radius-block-ui |
||
display: inline-block; | ||
padding: 2px 6px; | ||
margin: 0 8px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 8px can be $grid-unit-10 |
||
} | ||
|
||
&.is-selected .block-editor-block-navigation-block-select-button__anchor { | ||
background: rgba(30, 30, 30, 0.3); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This can be |
||
} | ||
} | ||
|
||
.block-editor-block-navigation-block-slot__description, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I hate to bug you again, but this could also be rgba( $black, 0.1 ) 🙈
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I went ahead and pushed a fix.