deprecated
3 weeks ago
block.json
1 month ago
edit.js
2 months ago
icon-info.svg
2 months ago
icon-success.svg
2 months ago
icon-warning.svg
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
variations.js
2 months ago
style.scss
135 lines
| 1 | /*-------------------------------------------*/ |
| 2 | /* カラーバリエーション |
| 3 | /*-------------------------------------------*/ |
| 4 | @each $var in ( |
| 5 | (success, #dff0d8, #3c763d, #d6e9c6), |
| 6 | (info, #d9edf7, #31708f, #bce8f1), |
| 7 | (warning, #fcf8e3, #8a6d3b, #faebcc), |
| 8 | (danger, #f2dede, #a94442, #ebccd1) |
| 9 | ) { |
| 10 | $class-name: nth($var, 1); |
| 11 | $color-bg: nth($var, 2); |
| 12 | $color: nth($var, 3); |
| 13 | $color-border: nth($var, 4); |
| 14 | .alert-#{$class-name} { |
| 15 | background-color: $color-bg; |
| 16 | color: $color; |
| 17 | border-color: $color-border; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | /*-------------------------------------------*/ |
| 22 | /* CSS |
| 23 | /*-------------------------------------------*/ |
| 24 | .vk_alert{ |
| 25 | &_icon{ |
| 26 | display: flex !important; |
| 27 | flex-wrap: wrap; |
| 28 | flex-direction: column; |
| 29 | justify-content: center; |
| 30 | align-content: center; |
| 31 | height: 100%; |
| 32 | width: 75px; |
| 33 | gap: .375rem; |
| 34 | background-color: initial !important; |
| 35 | line-height: 1; |
| 36 | &_text:has(span:not(:empty)){ |
| 37 | margin-left: 0; |
| 38 | text-align: center; |
| 39 | font-size: 12px; |
| 40 | font-weight: bold; |
| 41 | word-break: break-word; |
| 42 | line-height: 1; |
| 43 | } |
| 44 | &_icon{ |
| 45 | place-self: center; |
| 46 | > i{ |
| 47 | margin-right: 0; |
| 48 | font-size: 24px; |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 | &.has-alert-icon { |
| 53 | display: flex; |
| 54 | align-items: center; |
| 55 | justify-content: center; |
| 56 | place-items: center; |
| 57 | padding: 1.25rem; |
| 58 | gap: .75rem; |
| 59 | > .vk_alert_content{ |
| 60 | justify-content: center; |
| 61 | min-width: 0; |
| 62 | width: 100%; |
| 63 | padding-left: .75rem; |
| 64 | border-left: 1.5px solid currentColor; |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | .alert{ |
| 70 | padding: 1em; |
| 71 | margin: 1em auto; |
| 72 | border-radius: 3px; |
| 73 | p { |
| 74 | margin:0; |
| 75 | } |
| 76 | |
| 77 | & + &{ |
| 78 | margin-top: 2em; |
| 79 | } |
| 80 | |
| 81 | a{ |
| 82 | transition: color .3s linear, opacity .3s linear; |
| 83 | &:link, &:visited{ |
| 84 | opacity: .8; |
| 85 | text-decoration: underline; |
| 86 | } |
| 87 | &:hover, &:visited{ |
| 88 | opacity: 1; |
| 89 | text-decoration: none; |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | @media (max-width: 575px) { |
| 95 | .vk_alert.has-alert-icon.mobile-icon-top { |
| 96 | flex-wrap: wrap; |
| 97 | .vk_alert_icon { |
| 98 | width: 100%; |
| 99 | } |
| 100 | .vk_alert_content { |
| 101 | border-left: none; |
| 102 | border-top: 1.5px solid currentColor; |
| 103 | width: 100%; |
| 104 | padding: .75rem 0 0 0; |
| 105 | } |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /*-------------------------------------------*/ |
| 110 | /* 編集画面用 |
| 111 | /*-------------------------------------------*/ |
| 112 | .editor-styles-wrapper { |
| 113 | .vk_alert{ |
| 114 | &.has-alert-icon{ |
| 115 | .vk_alert_content{ |
| 116 | width: calc(100% - 1rem); |
| 117 | } |
| 118 | } |
| 119 | .vk_alert_icon{ |
| 120 | &_icon > i{ |
| 121 | margin-right: 0; |
| 122 | } |
| 123 | } |
| 124 | } |
| 125 | .alert { |
| 126 | &.has-alert-icon { |
| 127 | margin: 1em auto; |
| 128 | border-radius: 3px; |
| 129 | } |
| 130 | p { |
| 131 | margin-block-end: 0; |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 |