_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-balloon.scss
89 lines
| 1 | .vk_admin_page .adminMain_main .balloonIconList { |
| 2 | margin-left:0; |
| 3 | } |
| 4 | .vk_admin_page .adminMain_main .balloonIconList li { |
| 5 | list-style:none; |
| 6 | } |
| 7 | .balloonIconList { |
| 8 | width:100%; |
| 9 | display:flex; |
| 10 | flex-wrap: wrap; |
| 11 | } |
| 12 | .balloonIconList li { |
| 13 | box-sizing:border-box; |
| 14 | width:29.5%; |
| 15 | padding:20px 15px 15px; |
| 16 | margin:10px; |
| 17 | border:1px solid #ccc; |
| 18 | border-radius:5px; |
| 19 | background-color:rgba(255,255,255,0.9); |
| 20 | box-shadow:inset 0px 0px 0px 1px rgba(255,255,255,1); |
| 21 | } |
| 22 | |
| 23 | .balloonIconList_iconFrame { |
| 24 | width:100px; |
| 25 | margin:0 auto 0.5rem; |
| 26 | position: relative; |
| 27 | |
| 28 | .balloonIconList_iconFrame_src { |
| 29 | width:100px; |
| 30 | height:100px; |
| 31 | object-fit:cover; |
| 32 | border-radius:50%; |
| 33 | border:1px solid #e5e5e5; |
| 34 | } |
| 35 | |
| 36 | .button { |
| 37 | width:49%; |
| 38 | box-shadow:inset 0px 0px 0px 1px rgba(255,255,255,0.7); |
| 39 | position: absolute; |
| 40 | top: 50%; |
| 41 | left: 50%; |
| 42 | transform: translateY(-50%) translateX(-50%); |
| 43 | } |
| 44 | |
| 45 | .button-delete { |
| 46 | $color-danger: #b52727; |
| 47 | opacity: 0; |
| 48 | border: 1px solid $color-danger; |
| 49 | color: $color-danger; |
| 50 | transition: all 1s; |
| 51 | &:hover { |
| 52 | background-color: $color-danger; |
| 53 | border: 1px solid #b72a2a; |
| 54 | color: #fff; |
| 55 | } |
| 56 | } |
| 57 | &:hover .button-delete { |
| 58 | transition: all 1s; |
| 59 | opacity: 1; |
| 60 | } |
| 61 | |
| 62 | .button-select { |
| 63 | transition: all 1s; |
| 64 | color:#464646; |
| 65 | border-color:#999; |
| 66 | margin-top: 0; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | .balloonIconList_name_input { |
| 71 | input[type=text]=text] { |
| 72 | display:block; |
| 73 | width:100%; |
| 74 | text-align:center; |
| 75 | border-color:#ccc; |
| 76 | box-shadow:inset 1px 1px 2px 0 rgba(0,0,0,0.1); |
| 77 | } |
| 78 | } |
| 79 | .balloonIconList_nameLabel { |
| 80 | clear:both; |
| 81 | display:block; overflow:hidden; |
| 82 | padding-top:0.5rem; |
| 83 | padding-bottom:0.3rem; |
| 84 | } |
| 85 | |
| 86 | .balloon_image_delete_modal { |
| 87 | min-width: 380px; |
| 88 | } |
| 89 |