Skip to content
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

Allow clicking the block's input fields #6844

Merged
merged 1 commit into from May 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions editor/components/block-list/style.scss
Expand Up @@ -189,7 +189,7 @@
left: 0;

// use opacity to work in various editor styles
border-left: 1px solid $dark-opacity-light-500;
border-left: 1px solid $dark-opacity-light-500;

.is-dark-theme & {
border-left-color: $light-opacity-light-500;
Expand Down Expand Up @@ -223,6 +223,7 @@
bottom: -$block-padding;
left: -$block-padding;
outline: 1px solid transparent;
pointer-events: none;
}

}
Expand All @@ -231,7 +232,7 @@
&.is-selected > .editor-block-list__block-edit:before {
// use opacity to work in various editor styles
outline: 1px solid $dark-opacity-light-500;

.is-dark-theme & {
outline-color: $light-opacity-light-500;
}
Expand Down Expand Up @@ -259,7 +260,7 @@

// use opacity to work in various editor styles
mix-blend-mode: multiply;

.is-dark-theme & {
mix-blend-mode: soft-light;
}
Expand Down Expand Up @@ -697,10 +698,10 @@
// use opacity to work in various editor styles
background-clip: padding-box;
box-sizing: padding-box;
border: 1px solid $dark-opacity-light-500;
border: 1px solid $dark-opacity-light-500;

.is-dark-theme & {
border-color: $light-opacity-light-500;
border-color: $light-opacity-light-500;
}

// this prevents floats from messing up the position
Expand Down