_editor_after.scss
5 days ago
_editor_after_admin_sidebar.scss
6 months ago
_editor_before.scss
5 days ago
_editor_before_animation.scss
11 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
11 months ago
_editor_before_grid-column.scss
5 days 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
5 days ago
_editor_before_icons.scss
3 years ago
_editor_before_navigation.scss
2 months ago
_editor_before_outer.scss
9 months ago
_editor_before_select-post.scss
5 days 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
5 days ago
_editor_common_core.scss
5 days ago
_variables.scss
2 years ago
editor-block-build-marge.scss
5 days ago
_editor_before_animation.scss
114 lines
| 1 | .vk_animation { |
| 2 | border: 1px dashed #ccc; |
| 3 | min-height:3em; |
| 4 | padding: 1.2em 0 0; |
| 5 | // そのままだと編集画面でも消えてしまうので上書き(.wp-block-vk-blocks-animation)がないと負けてしまう |
| 6 | &.wp-block-vk-blocks-animation{ |
| 7 | opacity: 1; |
| 8 | } |
| 9 | &:before { |
| 10 | position:absolute; |
| 11 | right:0; |
| 12 | top:0; |
| 13 | font-size:10px; |
| 14 | background: #eeeeee; |
| 15 | padding: .2em .6em; |
| 16 | z-index:1000; |
| 17 | } |
| 18 | &.vk_animation-fade-in{ |
| 19 | left:0; |
| 20 | &:before { |
| 21 | content:'Fade in'; |
| 22 | } |
| 23 | } |
| 24 | &.vk_animation-up-down{ |
| 25 | right:0; |
| 26 | left: 0; |
| 27 | &:before { |
| 28 | content:'Up Down'; |
| 29 | } |
| 30 | } |
| 31 | &.vk_animation-left-right{ |
| 32 | right:0; |
| 33 | left: 0; |
| 34 | &:before { |
| 35 | content:'Left Right'; |
| 36 | } |
| 37 | } |
| 38 | &.vk_animation-trembling-x{ |
| 39 | right:0; |
| 40 | left: 0; |
| 41 | &:before { |
| 42 | content:'Trembring X'; |
| 43 | } |
| 44 | } |
| 45 | &.vk_animation-trembling-y{ |
| 46 | right:0; |
| 47 | left: 0; |
| 48 | &:before { |
| 49 | content:'Trembring Y'; |
| 50 | } |
| 51 | } |
| 52 | &.vk_animation-pounding{ |
| 53 | right:0; |
| 54 | left: 0; |
| 55 | &:before { |
| 56 | content:'Pounding'; |
| 57 | } |
| 58 | } |
| 59 | &.vk_animation-shaking{ |
| 60 | right:0; |
| 61 | left: 0; |
| 62 | &:before { |
| 63 | content:'Shaking'; |
| 64 | } |
| 65 | } |
| 66 | &.vk_animation-slow-shaking{ |
| 67 | right:0; |
| 68 | left: 0; |
| 69 | &:before { |
| 70 | content:'Slow Shaking'; |
| 71 | } |
| 72 | } |
| 73 | &.vk_animation-slide-left{ |
| 74 | &.vk_animation-range-short, |
| 75 | &.vk_animation-range-normal, |
| 76 | &.vk_animation-range-long { |
| 77 | right:0; |
| 78 | &:before { |
| 79 | content:'Slide left'; |
| 80 | } |
| 81 | } |
| 82 | } |
| 83 | &.vk_animation-slide-right{ |
| 84 | &.vk_animation-range-short, |
| 85 | &.vk_animation-range-normal, |
| 86 | &.vk_animation-range-long { |
| 87 | right:0; |
| 88 | left:0; |
| 89 | &:before { |
| 90 | content:'Slide right'; |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 | &.vk_animation-slide-up{ |
| 95 | &.vk_animation-range-short, |
| 96 | &.vk_animation-range-normal, |
| 97 | &.vk_animation-range-long { |
| 98 | top:0; |
| 99 | &:before { |
| 100 | content:'Slide up'; |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | &.vk_animation-slide-down{ |
| 105 | &.vk_animation-range-short, |
| 106 | &.vk_animation-range-normal, |
| 107 | &.vk_animation-range-long { |
| 108 | bottom:0; |
| 109 | &:before { |
| 110 | content:'Slide down'; |
| 111 | } |
| 112 | } |
| 113 | } |
| 114 | } |