| 1 |
/*Latest and update*/ |
| 2 |
|
| 3 |
.wpcomment-popup-wrapper { |
| 4 |
position: fixed; |
| 5 |
top: 0; |
| 6 |
right: 0; |
| 7 |
bottom: 0; |
| 8 |
left: 0; |
| 9 |
z-index: 10000; |
| 10 |
display: none; |
| 11 |
-webkit-overflow-scrolling: touch; |
| 12 |
outline: 0; |
| 13 |
} |
| 14 |
|
| 15 |
.wpcomment-popup-open { |
| 16 |
overflow: hidden; |
| 17 |
} |
| 18 |
|
| 19 |
.wpcomment-popup-open .wpcomment-popup-wrapper { |
| 20 |
overflow-x: hidden; |
| 21 |
overflow-y: auto; |
| 22 |
} |
| 23 |
|
| 24 |
.wpcomment-popup-handle { |
| 25 |
opacity: 0; |
| 26 |
-webkit-transition: opacity .15s linear; |
| 27 |
-o-transition: opacity .15s linear; |
| 28 |
transition: opacity .15s linear; |
| 29 |
} |
| 30 |
|
| 31 |
.wpcomment-popup-inner-section { |
| 32 |
position: relative; |
| 33 |
width: auto; |
| 34 |
margin: 10px; |
| 35 |
background-color: #fff; |
| 36 |
background-clip: padding-box; |
| 37 |
border: 1px solid #999; |
| 38 |
box-shadow: 0 3px 9px rgba(0, 0, 0, .5); |
| 39 |
} |
| 40 |
|
| 41 |
@media (min-width: 768px) { |
| 42 |
.wpcomment-popup-inner-section { |
| 43 |
width: 50% !important; |
| 44 |
margin: 30px auto !important; |
| 45 |
} |
| 46 |
} |
| 47 |
|
| 48 |
.wpcomment-popup-header { |
| 49 |
padding: 3px 15px; |
| 50 |
border-bottom: 1px solid #e5e5e5; |
| 51 |
} |
| 52 |
|
| 53 |
.wpcomment-popup-footer { |
| 54 |
padding: 15px; |
| 55 |
text-align: right; |
| 56 |
border-top: 1px solid #e5e5e5; |
| 57 |
} |
| 58 |
|
| 59 |
.wpcomment-popup-body { |
| 60 |
position: relative; |
| 61 |
padding: 15px; |
| 62 |
} |
| 63 |
|
| 64 |
.wpcomment-popup-button { |
| 65 |
font-size: 11px; |
| 66 |
padding: 0.75em 1.5em; |
| 67 |
background-color: #767976; |
| 68 |
border: 1px solid #bbb; |
| 69 |
color: #fff; |
| 70 |
text-decoration: none; |
| 71 |
display: inline; |
| 72 |
border-radius: 4px; |
| 73 |
-webkit-transition: background-color 1s ease; |
| 74 |
-moz-transition: background-color 1s ease; |
| 75 |
transition: background-color 1s ease; |
| 76 |
} |
| 77 |
|
| 78 |
.wpcomment-popup-bg-controler { |
| 79 |
position: fixed; |
| 80 |
height: 100%; |
| 81 |
width: 100%; |
| 82 |
background: rgba(0, 0, 0, .8); |
| 83 |
z-index: 100; |
| 84 |
display: none; |
| 85 |
top: 0; |
| 86 |
left: 0; |
| 87 |
} |
| 88 |
|