PluginProbe
WP Database Backup – Unlimited Database & Files Backup by Backup for WP / 6.11
WP Database Backup – Unlimited Database & Files Backup by Backup for WP v6.11
7.13 7.12 trunk 1.1 2.1.1 5.9 6.0 6.1 6.10 6.11 6.12 6.12.1 6.2 6.3 6.4 6.5 6.5.1 6.6 6.7 6.8 6.9 7.0 7.0.1 7.1 7.10 All 34 releases
wp-database-backup / assets / css / make-better-admin.css

make-better-admin.css in WP Database Backup – Unlimited Database & Files Backup by Backup for WP 6.11, at assets/css/make-better-admin.css

47 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }