bbpc.css in Forumax – AI Powered Advanced Community Forum Plugin 1.2.3, at assets/css/bbpc.css
| 1 | /** |
| 2 | * BBP Core plugin main css file |
| 3 | */ |
| 4 | |
| 5 | .bbpc-attachment-lightbox { |
| 6 | position: fixed; |
| 7 | top: 0; |
| 8 | left: 0; |
| 9 | right: 0; |
| 10 | bottom: 0; |
| 11 | background: rgba(0, 0, 0, 0.8); |
| 12 | z-index: 9999; |
| 13 | width: 100%; |
| 14 | margin: auto; |
| 15 | padding: 100px 0; |
| 16 | display: flex; |
| 17 | justify-content: center; |
| 18 | align-items: center; |
| 19 | box-sizing: border-box; |
| 20 | } |
| 21 | |
| 22 | .bbpc-attachment-lightbox-inner { |
| 23 | position: relative; |
| 24 | max-width: 85%; |
| 25 | display: flex; |
| 26 | align-items: center; |
| 27 | } |
| 28 | |
| 29 | .bbpc-attachment-lightbox > .bbpc-attachment-lightbox-inner > span { |
| 30 | color: white; |
| 31 | font-size: 23px; |
| 32 | line-height: 22px; |
| 33 | background: red; |
| 34 | display: block; |
| 35 | height: 28px; |
| 36 | border-radius: 19px; |
| 37 | width: 28px; |
| 38 | text-align: center; |
| 39 | top: -15px; |
| 40 | right: -15px; |
| 41 | bottom: 100%; |
| 42 | z-index: 9999999999; |
| 43 | position: absolute; |
| 44 | cursor: pointer; |
| 45 | } |