| 1 |
/* makebetter admin css*/ |
| 2 |
|
| 3 |
/** |
| 4 |
PLUGINS ADMIN PAGE |
| 5 |
*/ |
| 6 |
#wpdbbkp-feedback-overlay { |
| 7 |
/* Height & width depends on how you want to reveal the overlay (see JS below) */ |
| 8 |
height: 100%; |
| 9 |
width: 100%; |
| 10 |
position: fixed; /* Stay in place */ |
| 11 |
z-index: 10000; /* Sit on top */ |
| 12 |
left: 0; |
| 13 |
top: 0; |
| 14 |
background-color: rgb(120,120,120); /* Black fallback color */ |
| 15 |
background-color: rgba(0,0,0, 0.5); /* Black w/opacity */ |
| 16 |
} |
| 17 |
#wpdbbkp-feedback-content { |
| 18 |
position: relative; |
| 19 |
top: 25%; /* 25% from the top */ |
| 20 |
width: 500px; |
| 21 |
max-width: 100%; |
| 22 |
margin: auto; |
| 23 |
margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */ |
| 24 |
max-height: 50%; |
| 25 |
padding: 20px; |
| 26 |
background-color: #fff; |
| 27 |
overflow-y: auto; |
| 28 |
} |
| 29 |
#wpdbbkp-feedback-content label{ |
| 30 |
padding:2px; |
| 31 |
box-shadow:none; |
| 32 |
-webkit-box-shadow:none; |
| 33 |
} |
| 34 |
.mb-box{display: none;width:100%;} |
| 35 |
.wpdbbkp-feedback-not-deactivate { display: block; text-align: right; } |
| 36 |
|
| 37 |
#wpdbbkp-feedback-content h3{ |
| 38 |
margin:5px; |
| 39 |
font-size: 1em; |
| 40 |
} |
| 41 |
|
| 42 |
@media screen and (max-width:400px){ |
| 43 |
#wpdbbkp-feedback-content { |
| 44 |
padding:0px; |
| 45 |
padding-bottom:50px; |
| 46 |
} |
| 47 |
} |