_admin-balloon.scss
3 years ago
_admin-block-manager.scss
11 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-block-style.scss
128 lines
| 1 | .custom_block_style_item { |
| 2 | box-sizing: border-box; |
| 3 | margin: 20px 0; |
| 4 | border-radius: 5px; |
| 5 | background-color: rgba(255,255,255,0.9); |
| 6 | box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,1); |
| 7 | border: 1px solid #ccc; |
| 8 | .custom_block_style_title-area{ |
| 9 | padding: 20px; |
| 10 | .custom_block_style_title-area-label{ |
| 11 | font-weight: bold; |
| 12 | font-size: 14px; |
| 13 | } |
| 14 | } |
| 15 | .custom_block_style_title-area-label { |
| 16 | flex-shrink: 50; |
| 17 | } |
| 18 | |
| 19 | .custom_block_style_title-area-button { |
| 20 | flex-shrink: 0; |
| 21 | } |
| 22 | .custom_block_style_body-area{ |
| 23 | padding: 20px; |
| 24 | border-top: 1px solid #ccc; |
| 25 | } |
| 26 | .custom_block_style_item_block_name { |
| 27 | display: flex; |
| 28 | align-items: center; |
| 29 | margin-bottom: 1em; |
| 30 | gap: 3px; |
| 31 | } |
| 32 | .move-button-container { |
| 33 | display: flex; |
| 34 | flex-direction: column; |
| 35 | .components-button.has-icon { |
| 36 | height: 24px; |
| 37 | padding: 6px; |
| 38 | } |
| 39 | } |
| 40 | .vk-codemirror-options { |
| 41 | width: 100%; |
| 42 | } |
| 43 | .custom_block_style_item_property_label { |
| 44 | margin-bottom: 1em; |
| 45 | .components-base-control__field { |
| 46 | margin-bottom: 0; |
| 47 | } |
| 48 | .components-base-control__label { |
| 49 | margin-bottom: 0; |
| 50 | padding-right: 8px; |
| 51 | font-size: 12px; |
| 52 | } |
| 53 | } |
| 54 | .custom_block_style_item_name_warning { |
| 55 | margin-top: 0; |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | .custom_block_style_add_modal { |
| 60 | .custom_block_style_block-manager__results { |
| 61 | height: 30vh; |
| 62 | overflow-y: scroll; |
| 63 | border: 1px solid #ccc; |
| 64 | padding: 30px; |
| 65 | margin-bottom: 1em; |
| 66 | .custom_block_style_block-manager__category { |
| 67 | margin-bottom: 2em; |
| 68 | &:last-of-type { |
| 69 | margin-bottom: 0; |
| 70 | } |
| 71 | } |
| 72 | .block-manager__checklist { |
| 73 | display: grid; |
| 74 | grid-template-columns: repeat(3, 1fr); |
| 75 | grid-gap: 0 40px; |
| 76 | @media screen and (max-width: 991.98px) { |
| 77 | grid-template-columns: repeat(1, 1fr); |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | .custom_block_style_item_active_block_type_area { |
| 82 | display: flex; |
| 83 | align-items: center; |
| 84 | margin-bottom: 1em; |
| 85 | } |
| 86 | .custom_block_style_item_name_error { |
| 87 | margin-top: 0; |
| 88 | color: #c00; |
| 89 | } |
| 90 | |
| 91 | .block-manager__search { |
| 92 | .components-base-control__field { |
| 93 | margin-bottom: 1em; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | .block_name_radio_control { |
| 98 | border-bottom:1px solid #ddd; |
| 99 | .components-radio-control__input { |
| 100 | flex-shrink: 0; |
| 101 | } |
| 102 | |
| 103 | label { |
| 104 | display: flex; |
| 105 | align-items: center; |
| 106 | justify-content: space-between; |
| 107 | flex-grow: 1; |
| 108 | } |
| 109 | .components-radio-control__option { |
| 110 | display: flex; |
| 111 | align-items: center; |
| 112 | } |
| 113 | } |
| 114 | .block_name_radio_label { |
| 115 | display: flex; |
| 116 | align-items: center; |
| 117 | justify-content: space-between; |
| 118 | flex-grow: 1; |
| 119 | padding: 8px 0; |
| 120 | } |
| 121 | .components-base-control__help { |
| 122 | margin-bottom: 0.2em; |
| 123 | } |
| 124 | .components-base-control__label { |
| 125 | font-size: 13px; |
| 126 | } |
| 127 | } |
| 128 |