forked from silverstripe/silverstripe-elemental
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request silverstripe#316 from creative-commoners/pulls/4.0…
…/loading-indicator FIX ElementList shows loading indicator while GraphQL query fetches list of blocks
- Loading branch information
Showing
5 changed files
with
32 additions
and
11 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
.element-editor__element { | ||
display: block; | ||
border-bottom: 1px solid $border-color-light; | ||
color: inherit; | ||
cursor: pointer; | ||
display: block; | ||
padding: $panel-padding-x; | ||
|
||
&:hover { | ||
text-decoration: inherit; | ||
color: inherit; | ||
background-color: $table-hover-bg; | ||
} | ||
|
||
&:last-child { | ||
border-bottom: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
.elemental-editor__list { | ||
background-color: $white; | ||
|
||
border-bottom: 1px solid $border-color-light; | ||
border-top: 1px solid $border-color-light; | ||
margin-left: -$panel-padding-x; | ||
margin-right: -$panel-padding-x; | ||
border-top: 1px solid $border-color-light; | ||
|
||
> .element-editor__element { | ||
border-bottom: 1px solid $border-color-light; | ||
} | ||
min-height: 6rem; | ||
position: relative; | ||
} |