deprecated
2 months ago
block.json
1 week ago
edit.js
2 months ago
heading-level-dropdown.js
2 months ago
heading-level-icon.js
2 months ago
icon.svg
2 months ago
index.js
2 months ago
index.php
2 months ago
save.js
2 months ago
style.scss
2 months ago
transforms.js
2 months ago
style.scss
46 lines
| 1 | /*-------------------------------------------*/ |
| 2 | /* CSS |
| 3 | /*-------------------------------------------*/ |
| 4 | @mixin reset() { |
| 5 | background: none; |
| 6 | border: none; |
| 7 | border-radius: 0; |
| 8 | padding: 0; |
| 9 | outline: unset; |
| 10 | outline-offset: unset; |
| 11 | box-shadow: none; |
| 12 | display: block; /* display:block をつけておかないと左右線デザインでflex指定されて左寄りになる */ |
| 13 | &:after { |
| 14 | content: none; |
| 15 | border: none; |
| 16 | } |
| 17 | &:before { |
| 18 | content: none; |
| 19 | } |
| 20 | } |
| 21 | .vk_heading { |
| 22 | i:first-child { |
| 23 | margin-right: 0.2em; |
| 24 | } |
| 25 | i:last-child { |
| 26 | margin-left: 0.2em; |
| 27 | } |
| 28 | } |
| 29 | // .vk_heading は指定が強い要素( Charm )も消すために� |
| 30 | 要 |
| 31 | .vk_heading.vk_heading-style-plain { |
| 32 | .vk_heading_title { |
| 33 | @include reset; |
| 34 | &:not(.has-text-color) { |
| 35 | color: unset; |
| 36 | } |
| 37 | &:after { |
| 38 | @include reset; |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | .vk_heading_subtext { |
| 44 | margin-bottom: 0; |
| 45 | } |
| 46 |