editor.scss in Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News 4.0.2, at src/admin/editor.scss
| 1 | .sp-pcp-pro-modal { |
| 2 | &-wrapper { |
| 3 | width: 400px; |
| 4 | background-color: #fff; |
| 5 | border-radius: 10px; |
| 6 | text-align: center; |
| 7 | } |
| 8 | |
| 9 | &-cross { |
| 10 | position: absolute; |
| 11 | width: 42px; |
| 12 | height: 42px; |
| 13 | text-align: center; |
| 14 | color: #000; |
| 15 | background-color: #fff; |
| 16 | border-radius: 50%; |
| 17 | top: 15px; |
| 18 | right: 15px; |
| 19 | display: flex; |
| 20 | justify-content: center; |
| 21 | align-items: center; |
| 22 | cursor: pointer; |
| 23 | border: 1px solid #ccc; |
| 24 | transition: all .3s linear; |
| 25 | |
| 26 | &:hover { |
| 27 | border-color: #000; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | &-info { |
| 32 | h5 { |
| 33 | font-size: 24px; |
| 34 | font-weight: 700; |
| 35 | line-height: 1.3; |
| 36 | margin: 16px 0; |
| 37 | } |
| 38 | p { |
| 39 | font-size: 15.5px; |
| 40 | line-height: 1.6; |
| 41 | color: #6E6A69; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | .sp-pcp-pro-modal-btn { |
| 46 | font-size: 16px; |
| 47 | line-height: 1.4; |
| 48 | text-decoration: none; |
| 49 | font-weight: 600; |
| 50 | background-color: #0DA812; |
| 51 | padding: 14px 20px; |
| 52 | color: #fff; |
| 53 | border-radius: 8px; |
| 54 | margin-top: 12px; |
| 55 | display: inline-flex; |
| 56 | transition: all .3s ease-in-out; |
| 57 | align-items: center; |
| 58 | gap: 8px; |
| 59 | |
| 60 | &:hover { |
| 61 | background-color: #06830a; |
| 62 | } |
| 63 | |
| 64 | &:focus{ |
| 65 | outline: none; |
| 66 | box-shadow: none; |
| 67 | } |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | .sp-pcp-pro-modal-components { |
| 72 | overflow: visible; |
| 73 | .components-modal__content { |
| 74 | margin-top: 0; |
| 75 | padding: 40px; |
| 76 | } |
| 77 | .components-modal__header { |
| 78 | display: none; |
| 79 | } |
| 80 | } |