_editor_after.scss
1 year ago
_editor_after_admin_sidebar.scss
5 months ago
_editor_before.scss
3 weeks ago
_editor_before_animation.scss
9 months ago
_editor_before_appender.scss
3 years ago
_editor_before_archive-list.scss
3 years ago
_editor_before_balloon.scss
2 years ago
_editor_before_border-box.scss
3 years ago
_editor_before_breadcrumb.scss
3 years ago
_editor_before_button-outer.scss
3 years ago
_editor_before_button.scss
1 year ago
_editor_before_custom-block-variation.scss
2 years ago
_editor_before_custom-css-extension.scss
2 years ago
_editor_before_faq.scss
3 years ago
_editor_before_fixed-display.scss
9 months ago
_editor_before_grid-column.scss
1 year ago
_editor_before_gridcolcard.scss
1 year ago
_editor_before_icon-card.scss
3 years ago
_editor_before_icon.scss
3 years ago
_editor_before_icon_list.scss
3 years ago
_editor_before_icons.scss
3 years ago
_editor_before_navigation.scss
3 weeks ago
_editor_before_outer.scss
7 months ago
_editor_before_select-post.scss
3 years ago
_editor_before_slider.scss
1 year ago
_editor_before_tab.scss
1 year ago
_editor_before_table.scss
3 years ago
_editor_before_template_inserter.scss
3 years ago
_editor_before_vk-heading.scss
3 years ago
_editor_before_vk-posts.scss
10 months ago
_editor_common_core.scss
3 months ago
_variables.scss
1 year ago
editor-block-build-marge.scss
3 weeks ago
_editor_before_fixed-display.scss
48 lines
| 1 | .vk_fixed-display { |
| 2 | transform: unset; |
| 3 | z-index: unset; |
| 4 | border: 1px dashed #ccc; |
| 5 | min-height:3em; |
| 6 | padding: 1.2em 0 0; |
| 7 | // そのままだと編集画面でも消えてしまうので上書き(.wp-block-vk-blocks-fixed-display)がないと負けてしまう |
| 8 | &.wp-block-vk-blocks-fixed-display{ |
| 9 | opacity: 1; |
| 10 | } |
| 11 | &:before { |
| 12 | position:absolute; |
| 13 | right:0; |
| 14 | top:0; |
| 15 | font-size:10px; |
| 16 | background: #eeeeee; |
| 17 | padding: .2em .6em; |
| 18 | z-index:1000; |
| 19 | } |
| 20 | &.vk_fixed-display-position-top{ |
| 21 | left:0; |
| 22 | &:before { |
| 23 | content:'Top'; |
| 24 | } |
| 25 | } |
| 26 | &.vk_fixed-display-position-right{ |
| 27 | right:0; |
| 28 | left: 0; |
| 29 | &:before { |
| 30 | content:'Right'; |
| 31 | } |
| 32 | } |
| 33 | &.vk_fixed-display-position-bottom{ |
| 34 | right:0; |
| 35 | left: 0; |
| 36 | &:before { |
| 37 | content:'Bottom'; |
| 38 | } |
| 39 | } |
| 40 | &.vk_fixed-display-position-left{ |
| 41 | right:0; |
| 42 | left: 0; |
| 43 | &:before { |
| 44 | content:'Left'; |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 |