_admin-balloon.scss
3 years ago
_admin-block-manager.scss
9 months ago
_admin-breadcrumb.scss
2 years ago
_admin-common.scss
3 years ago
_admin-custom-block-style.scss
3 years ago
_admin-custom-format.scss
3 years ago
_admin-import-export.scss
3 years ago
_admin-margin.scss
3 years ago
admin-merge.scss
2 years ago
_admin-custom-format.scss
67 lines
| 1 | .custom_format_item { |
| 2 | display: flex; |
| 3 | flex-wrap: wrap; |
| 4 | box-sizing: border-box; |
| 5 | padding: 20px; |
| 6 | margin: 20px 0; |
| 7 | border-radius: 5px; |
| 8 | background-color: rgba(255,255,255,0.9); |
| 9 | box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,1); |
| 10 | justify-content: space-between; |
| 11 | border: 1px solid #ccc; |
| 12 | |
| 13 | .custom_format_item_control, |
| 14 | .custom_format_item_preview { |
| 15 | width: 49%; |
| 16 | |
| 17 | @media screen and (max-width: 991.98px) { |
| 18 | width: 100%; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | .custom_format_item_control { |
| 23 | max-height: 70vh; |
| 24 | overflow: auto; |
| 25 | |
| 26 | .components-circular-option-picker { |
| 27 | min-width: auto; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | .custom_format_item_preview { |
| 32 | text-align: center; |
| 33 | |
| 34 | > p{ |
| 35 | margin-top: 0; |
| 36 | border: 1px solid #e0e0e0; |
| 37 | padding: 50px 20px; |
| 38 | } |
| 39 | } |
| 40 | .components-base-control__label{ |
| 41 | margin-right: 8px; |
| 42 | } |
| 43 | input[type=text]=text].components-text-control__input{ |
| 44 | border: 1px solid #ccc; |
| 45 | } |
| 46 | |
| 47 | } |
| 48 | //ボタン |
| 49 | #vk-blocks-admin{ |
| 50 | .components-button{ |
| 51 | &.delete-item-button, |
| 52 | &.add-item-button{ |
| 53 | background: #f6f7f7; |
| 54 | width: 100%; |
| 55 | justify-content: center; |
| 56 | border-radius: 3px; |
| 57 | } |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | .custom_format_add_modal { |
| 62 | .custom_format_item_name_error { |
| 63 | margin-top: 0; |
| 64 | color: #c00; |
| 65 | } |
| 66 | } |
| 67 |