PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / trunk
JetBackup – Backup, Restore & Migrate vtrunk
3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / css / restore.css
backup / public / css Last commit date
checkbox.min.css 1 year ago common.css 1 year ago common.rtl.css 1 year ago media.css 1 year ago mobile.css 1 year ago mobile.rtl.css 1 year ago restore.css 1 year ago style.css 1 day ago vars.css 1 year ago vars.rtl.css 1 year ago
restore.css
114 lines
1 body {
2 background-color: #e9ecef;
3 font-family: Arial, sans-serif;
4 }
5
6 .status-header {
7 height: 60px;
8 font-size: 24px;
9 color: #fff;
10 background-color: #343a40;
11 padding: 15px 20px;
12 border-radius: 5px 5px 0 0;
13 max-width: 900px;
14 margin-left: auto;
15 margin-right: auto;
16 display: flex;
17 align-items: center;
18 }
19
20 .status-container {
21 padding: 20px;
22 border: 1px solid #ced4da;
23 border-radius: 0 0 5px 5px;
24 background-color: #fff;
25 max-width: 900px;
26 margin-left: auto;
27 margin-right: auto;
28 }
29
30 .progress-container {
31 margin-top: 10px;
32 display: flex;
33 align-items: center;
34 }
35
36 .progress {
37 height: 30px;
38 flex: 1;
39 }
40
41 .progress-bar {
42 font-size: 16px;
43 line-height: 30px;
44 }
45
46 .status-item {
47 margin-bottom: 15px;
48 }
49
50 .logo {
51 margin-left: auto;
52 margin-right: auto;
53 display: block;
54 }
55
56 .footer {
57 margin-top: 30px;
58 padding: 10px;
59 background-color: #343a40;
60 color: #fff;
61 text-align: center;
62 border-radius: 5px;
63 max-width: 900px;
64 margin-left: auto;
65 margin-right: auto;
66 }
67
68 .form-control {
69 background-color: #f8f9fa;
70 border-color: #ced4da;
71 }
72
73 h5 {
74 color: #343a40;
75 font-size: 20px;
76 margin-bottom: 20px;
77 }
78
79 label {
80 font-size: 16px;
81 color: #495057;
82 margin-right: 15px;
83 width: 210px;
84 }
85
86 .btn {
87 width: 150px;
88 }
89
90 .log-container {
91 background-color: #1e1e1e;
92 color: #00a67d;
93 font-family: 'Courier New', Courier, monospace;
94 padding: 10px;
95 border-radius: 5px;
96 height: 200px;
97 overflow-y: auto;
98 margin-top: 10px;
99 white-space: nowrap;
100 scroll-behavior: smooth
101 }
102
103 .log-entry {
104 margin: 0;
105 line-height: 1.2;
106 text-align: left;
107 }
108
109 .details {
110 display: flex;
111 justify-content: space-between;
112 margin-bottom: 20px;
113 }
114