dbgate-web 4.8.7 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/public/index.html CHANGED
@@ -1,46 +1,116 @@
1
1
  <!DOCTYPE html>
2
2
  <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
3
6
 
4
- <head>
5
- <meta charset='utf-8'>
6
- <meta name='viewport' content='width=device-width,initial-scale=1'>
7
-
8
- <title>DbGate</title>
9
- <meta name="theme-color" content="#000000" />
10
- <meta name="description"
11
- content="DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL" />
12
-
13
- <link rel='icon' type='image/png' href='favicon.ico'>
14
- <link rel="manifest" href="manifest.json" />
15
-
16
- <link rel='stylesheet' href='global.css'>
17
- <link rel='stylesheet' href='dimensions.css'>
18
- <link rel='stylesheet' href='bulma.css'>
19
- <link rel='stylesheet' href='icon-colors.css'>
20
- <link rel='stylesheet' href='build/bundle.css'>
21
- <link rel='stylesheet' href='build/fonts/materialdesignicons.css'>
22
- <link rel='stylesheet' href='build/diff2html.min.css'>
23
-
24
- <script defer src='build/bundle.js'></script>
25
-
26
- <style>
27
- #starting_dbgate_zero {
28
- position: absolute;
29
- left: 0;
30
- top: 0;
31
- right: 0;
32
- bottom: 0;
33
- display: flex;
34
- align-items: center;
35
- justify-content: space-around;
36
- }
37
- </style>
38
- </head>
39
-
40
- <body>
41
- <div id='starting_dbgate_zero'>
42
- Loading DbGate App ...
43
- </div>
44
- </body>
45
-
46
- </html>
7
+ <title>DbGate</title>
8
+ <meta name="theme-color" content="#000000" />
9
+ <meta
10
+ name="description"
11
+ content="DbGate - web based opensource database administration tool for MS SQL, MySQL, Postgre SQL"
12
+ />
13
+
14
+ <link rel="icon" type="image/png" href="favicon.ico" />
15
+ <link rel="manifest" href="manifest.json" />
16
+
17
+ <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="dimensions.css" />
19
+ <link rel="stylesheet" href="bulma.css" />
20
+ <link rel="stylesheet" href="icon-colors.css" />
21
+ <link rel="stylesheet" href="build/bundle.css" />
22
+ <link rel="stylesheet" href="build/fonts/materialdesignicons.css" />
23
+ <link rel="stylesheet" href="build/diff2html.min.css" />
24
+
25
+ <script defer src="build/bundle.js"></script>
26
+
27
+ <style>
28
+ .lds-ellipsis {
29
+ display: inline-block;
30
+ position: relative;
31
+ width: 80px;
32
+ height: 80px;
33
+ }
34
+ .lds-ellipsis div {
35
+ position: absolute;
36
+ top: 33px;
37
+ width: 13px;
38
+ height: 13px;
39
+ border-radius: 50%;
40
+ background: #000;
41
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
42
+ }
43
+ .lds-ellipsis div:nth-child(1) {
44
+ left: 8px;
45
+ animation: lds-ellipsis1 0.6s infinite;
46
+ }
47
+ .lds-ellipsis div:nth-child(2) {
48
+ left: 8px;
49
+ animation: lds-ellipsis2 0.6s infinite;
50
+ }
51
+ .lds-ellipsis div:nth-child(3) {
52
+ left: 32px;
53
+ animation: lds-ellipsis2 0.6s infinite;
54
+ }
55
+ .lds-ellipsis div:nth-child(4) {
56
+ left: 56px;
57
+ animation: lds-ellipsis3 0.6s infinite;
58
+ }
59
+ @keyframes lds-ellipsis1 {
60
+ 0% {
61
+ transform: scale(0);
62
+ }
63
+ 100% {
64
+ transform: scale(1);
65
+ }
66
+ }
67
+ @keyframes lds-ellipsis3 {
68
+ 0% {
69
+ transform: scale(1);
70
+ }
71
+ 100% {
72
+ transform: scale(0);
73
+ }
74
+ }
75
+ @keyframes lds-ellipsis2 {
76
+ 0% {
77
+ transform: translate(0, 0);
78
+ }
79
+ 100% {
80
+ transform: translate(24px, 0);
81
+ }
82
+ }
83
+
84
+ #starting_dbgate_zero {
85
+ position: absolute;
86
+ left: 0;
87
+ top: 0;
88
+ right: 0;
89
+ bottom: 0;
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: space-around;
93
+ }
94
+
95
+ .inner-flex {
96
+ display: flex;
97
+ align-items: center;
98
+ flex-direction: column;
99
+ }
100
+ </style>
101
+ </head>
102
+
103
+ <body>
104
+ <div id="starting_dbgate_zero">
105
+ <div class="inner-flex">
106
+ <div class="lds-ellipsis">
107
+ <div></div>
108
+ <div></div>
109
+ <div></div>
110
+ <div></div>
111
+ </div>
112
+ <div>Loading DbGate App</div>
113
+ </div>
114
+ </div>
115
+ </body>
116
+ </html>
Binary file
Binary file