_editor_after.scss
1 year ago
_editor_after_admin_sidebar.scss
5 months ago
_editor_before.scss
2 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
2 years ago
_editor_before_icons.scss
3 years ago
_editor_before_navigation.scss
2 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
9 months ago
_editor_common_core.scss
3 months ago
_variables.scss
1 year ago
editor-block-build-marge.scss
2 weeks ago
_editor_after.scss
97 lines
| 1 | .wp-block.vk_prBlocks, |
| 2 | .wp-block.vk_posts { |
| 3 | margin-left: auto; |
| 4 | margin-right: auto; |
| 5 | } |
| 6 | |
| 7 | .vk_tableOfContents_openCloseBtn { |
| 8 | display: block; |
| 9 | } |
| 10 | |
| 11 | /* 固定ページブロック調整用 */ |
| 12 | .vk_pageContent { |
| 13 | .vk_buttons > .vk_buttons_col, |
| 14 | .vk_icons > .vk_icons_col { |
| 15 | display: flex; |
| 16 | margin-left: -8px; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | /* .vk_hidden.vk_hidden は2つじゃないと上書きできない */ |
| 21 | .vk_hidden { |
| 22 | display: block !important; |
| 23 | color: var(--blue); |
| 24 | |
| 25 | &.vk_balloon, |
| 26 | &.vk_posts{ |
| 27 | // display block だとカラムがすべて落ちるため posts と balloon は flexで上書き |
| 28 | display: flex !important; |
| 29 | } |
| 30 | @media (max-width: $xs-max) { |
| 31 | &-xs { |
| 32 | display: block !important; |
| 33 | |
| 34 | &.vk_balloon, |
| 35 | &.vk_posts{ |
| 36 | // display block だとカラムがすべて落ちるため posts と balloon は flexで上書き |
| 37 | display: flex !important; |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | @media (min-width: $sm-min) and (max-width: $sm-max) { |
| 42 | &-sm { |
| 43 | display: block !important; |
| 44 | |
| 45 | &.vk_balloon, |
| 46 | &.vk_posts{ |
| 47 | // display block だとカラムがすべて落ちるため posts と balloon は flexで上書き |
| 48 | display: flex !important; |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 | @media (min-width: $md-min) and (max-width: $md-max) { |
| 53 | &-md { |
| 54 | display: block !important; |
| 55 | |
| 56 | &.vk_balloon, |
| 57 | &.vk_posts{ |
| 58 | // display block だとカラムがすべて落ちるため posts と balloon は flexで上書き |
| 59 | display: flex !important; |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | @media (min-width: $lg-min) and (max-width: $lg-max) { |
| 64 | &-lg { |
| 65 | display: block !important; |
| 66 | |
| 67 | &.vk_balloon, |
| 68 | &.vk_posts{ |
| 69 | // display block だとカラムがすべて落ちるため posts と balloon は flexで上書き |
| 70 | display: flex !important; |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | @media (min-width: $xl-min) { |
| 75 | &-xl { |
| 76 | display: block !important; |
| 77 | &.vk_posts{ |
| 78 | // display block だとカラムがすべて落ちるため posts と balloon は flexで上書き |
| 79 | display: flex !important; |
| 80 | } |
| 81 | } |
| 82 | } |
| 83 | @media (min-width: $xxl-min) { |
| 84 | &-xxl { |
| 85 | display: block !important; |
| 86 | |
| 87 | &.vk_balloon, |
| 88 | &.vk_posts{ |
| 89 | // display block だとカラムがすべて落ちるため posts と balloon は flexで上書き |
| 90 | display: flex !important; |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | @import "./editor_after_admin_sidebar.scss"; |