dbgate-web-premium 5.5.7-alpha.45
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.
- package/README.md +1 -0
- package/package.json +69 -0
- package/public/admin-license.html +121 -0
- package/public/admin-login.html +121 -0
- package/public/admin.html +121 -0
- package/public/build/bundle.css +663 -0
- package/public/build/bundle.js +100 -0
- package/public/build/bundle.js.map +1 -0
- package/public/build/diff2html.min.css +1 -0
- package/public/build/fonts/materialdesignicons-webfont.eot +0 -0
- package/public/build/fonts/materialdesignicons-webfont.ttf +0 -0
- package/public/build/fonts/materialdesignicons-webfont.woff +0 -0
- package/public/build/fonts/materialdesignicons-webfont.woff2 +0 -0
- package/public/build/fonts/materialdesignicons.css +30062 -0
- package/public/build/query-parser-worker.js +2 -0
- package/public/build/query-parser-worker.js.map +1 -0
- package/public/bulma.css +419 -0
- package/public/dimensions.css +27 -0
- package/public/error.html +121 -0
- package/public/favicon.ico +0 -0
- package/public/global.css +197 -0
- package/public/icon-colors.css +32 -0
- package/public/index.html +121 -0
- package/public/license.html +121 -0
- package/public/login.html +121 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/not-logged.html +121 -0
- package/public/redirect.html +121 -0
- package/public/set-admin-password.html +121 -0
- package/public/unknown.svg +15 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
6
|
+
|
|
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 lang="javascript">
|
|
26
|
+
window.dbgate_page = 'error';
|
|
27
|
+
</script>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<script defer src="build/bundle.js"></script>
|
|
31
|
+
|
|
32
|
+
<style>
|
|
33
|
+
.lds-ellipsis {
|
|
34
|
+
display: inline-block;
|
|
35
|
+
position: relative;
|
|
36
|
+
width: 80px;
|
|
37
|
+
height: 80px;
|
|
38
|
+
}
|
|
39
|
+
.lds-ellipsis div {
|
|
40
|
+
position: absolute;
|
|
41
|
+
top: 33px;
|
|
42
|
+
width: 13px;
|
|
43
|
+
height: 13px;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
background: #000;
|
|
46
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
47
|
+
}
|
|
48
|
+
.lds-ellipsis div:nth-child(1) {
|
|
49
|
+
left: 8px;
|
|
50
|
+
animation: lds-ellipsis1 0.6s infinite;
|
|
51
|
+
}
|
|
52
|
+
.lds-ellipsis div:nth-child(2) {
|
|
53
|
+
left: 8px;
|
|
54
|
+
animation: lds-ellipsis2 0.6s infinite;
|
|
55
|
+
}
|
|
56
|
+
.lds-ellipsis div:nth-child(3) {
|
|
57
|
+
left: 32px;
|
|
58
|
+
animation: lds-ellipsis2 0.6s infinite;
|
|
59
|
+
}
|
|
60
|
+
.lds-ellipsis div:nth-child(4) {
|
|
61
|
+
left: 56px;
|
|
62
|
+
animation: lds-ellipsis3 0.6s infinite;
|
|
63
|
+
}
|
|
64
|
+
@keyframes lds-ellipsis1 {
|
|
65
|
+
0% {
|
|
66
|
+
transform: scale(0);
|
|
67
|
+
}
|
|
68
|
+
100% {
|
|
69
|
+
transform: scale(1);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
@keyframes lds-ellipsis3 {
|
|
73
|
+
0% {
|
|
74
|
+
transform: scale(1);
|
|
75
|
+
}
|
|
76
|
+
100% {
|
|
77
|
+
transform: scale(0);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
@keyframes lds-ellipsis2 {
|
|
81
|
+
0% {
|
|
82
|
+
transform: translate(0, 0);
|
|
83
|
+
}
|
|
84
|
+
100% {
|
|
85
|
+
transform: translate(24px, 0);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
#starting_dbgate_zero {
|
|
90
|
+
position: absolute;
|
|
91
|
+
left: 0;
|
|
92
|
+
top: 0;
|
|
93
|
+
right: 0;
|
|
94
|
+
bottom: 0;
|
|
95
|
+
display: flex;
|
|
96
|
+
align-items: center;
|
|
97
|
+
justify-content: space-around;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.inner-flex {
|
|
101
|
+
display: flex;
|
|
102
|
+
align-items: center;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
}
|
|
105
|
+
</style>
|
|
106
|
+
</head>
|
|
107
|
+
|
|
108
|
+
<body>
|
|
109
|
+
<div id="starting_dbgate_zero">
|
|
110
|
+
<div class="inner-flex">
|
|
111
|
+
<div class="lds-ellipsis">
|
|
112
|
+
<div></div>
|
|
113
|
+
<div></div>
|
|
114
|
+
<div></div>
|
|
115
|
+
<div></div>
|
|
116
|
+
</div>
|
|
117
|
+
<div>Loading DbGate App</div>
|
|
118
|
+
</div>
|
|
119
|
+
</div>
|
|
120
|
+
</body>
|
|
121
|
+
</html>
|
|
Binary file
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-family: -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, HelveticaNeue-Light, Ubuntu, Droid Sans,
|
|
3
|
+
sans-serif;
|
|
4
|
+
font-size: 14px;
|
|
5
|
+
/* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
6
|
+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
7
|
+
sans-serif;
|
|
8
|
+
*/
|
|
9
|
+
-webkit-font-smoothing: auto;
|
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.horizontal-split-handle {
|
|
15
|
+
background-color: var(--theme-border);
|
|
16
|
+
width: var(--dim-splitter-thickness);
|
|
17
|
+
cursor: col-resize;
|
|
18
|
+
}
|
|
19
|
+
.horizontal-split-handle:hover {
|
|
20
|
+
background-color: var(--theme-bg-2);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.vertical-split-handle {
|
|
24
|
+
background-color: var(--theme-border);
|
|
25
|
+
height: var(--dim-splitter-thickness);
|
|
26
|
+
cursor: row-resize;
|
|
27
|
+
}
|
|
28
|
+
.vertical-split-handle:hover {
|
|
29
|
+
background-color: var(--theme-bg-2);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-invisible {
|
|
33
|
+
visibility: hidden;
|
|
34
|
+
}
|
|
35
|
+
.space-between {
|
|
36
|
+
display: flex;
|
|
37
|
+
justify-content: space-between;
|
|
38
|
+
}
|
|
39
|
+
.flex {
|
|
40
|
+
display: flex;
|
|
41
|
+
}
|
|
42
|
+
.flexcol {
|
|
43
|
+
display: flex;
|
|
44
|
+
flex-direction: column;
|
|
45
|
+
}
|
|
46
|
+
.nowrap {
|
|
47
|
+
white-space: nowrap;
|
|
48
|
+
}
|
|
49
|
+
.noselect {
|
|
50
|
+
user-select: none;
|
|
51
|
+
}
|
|
52
|
+
.bold {
|
|
53
|
+
font-weight: bold;
|
|
54
|
+
}
|
|
55
|
+
.flex1 {
|
|
56
|
+
flex: 1;
|
|
57
|
+
}
|
|
58
|
+
.relative {
|
|
59
|
+
position: relative;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.col-10 {
|
|
63
|
+
flex-basis: 83.3333%;
|
|
64
|
+
max-width: 83.3333%;
|
|
65
|
+
}
|
|
66
|
+
.col-9 {
|
|
67
|
+
flex-basis: 75%;
|
|
68
|
+
max-width: 75%;
|
|
69
|
+
}
|
|
70
|
+
.col-8 {
|
|
71
|
+
flex-basis: 66.6667%;
|
|
72
|
+
max-width: 66.6667%;
|
|
73
|
+
}
|
|
74
|
+
.col-7 {
|
|
75
|
+
flex-basis: 58.3333%;
|
|
76
|
+
max-width: 58.3333%;
|
|
77
|
+
}
|
|
78
|
+
.col-6 {
|
|
79
|
+
flex-basis: 50%;
|
|
80
|
+
max-width: 50%;
|
|
81
|
+
}
|
|
82
|
+
.col-5 {
|
|
83
|
+
flex-basis: 41.6667%;
|
|
84
|
+
max-width: 41.6667%;
|
|
85
|
+
}
|
|
86
|
+
.col-4 {
|
|
87
|
+
flex-basis: 33.3333%;
|
|
88
|
+
max-width: 33.3333%;
|
|
89
|
+
}
|
|
90
|
+
.col-3 {
|
|
91
|
+
flex-basis: 25%;
|
|
92
|
+
max-width: 25%;
|
|
93
|
+
}
|
|
94
|
+
.col-2 {
|
|
95
|
+
flex-basis: 16.6666%;
|
|
96
|
+
max-width: 16.6666%;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.largeFormMarker input[type='text'], .largeFormMarker input[type='number'], .largeFormMarker input[type='password'], .largeFormMarker textarea {
|
|
100
|
+
width: 100%;
|
|
101
|
+
padding: 10px 10px;
|
|
102
|
+
font-size: 14px;
|
|
103
|
+
box-sizing: border-box;
|
|
104
|
+
border-radius: 4px;
|
|
105
|
+
border: 1px solid var(--theme-border);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
.largeFormMarker select {
|
|
110
|
+
width: 100%;
|
|
111
|
+
padding: 10px 10px;
|
|
112
|
+
font-size: 14px;
|
|
113
|
+
box-sizing: border-box;
|
|
114
|
+
border-radius: 4px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
body *::-webkit-scrollbar {
|
|
118
|
+
height: 0.8em;
|
|
119
|
+
width: 0.8em;
|
|
120
|
+
}
|
|
121
|
+
body *::-webkit-scrollbar-track {
|
|
122
|
+
border-radius: 1px;
|
|
123
|
+
background-color: var(--theme-bg-1);
|
|
124
|
+
}
|
|
125
|
+
body *::-webkit-scrollbar-corner {
|
|
126
|
+
border-radius: 1px;
|
|
127
|
+
background-color: var(--theme-bg-2);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
body *::-webkit-scrollbar-thumb {
|
|
131
|
+
border-radius: 1px;
|
|
132
|
+
background-color: var(--theme-bg-3);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
body *::-webkit-scrollbar-thumb:hover {
|
|
136
|
+
background-color: var(--theme-bg-4);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
input {
|
|
140
|
+
background-color: var(--theme-bg-0);
|
|
141
|
+
color: var(--theme-font-1);
|
|
142
|
+
border: 1px solid var(--theme-border);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
input[disabled] {
|
|
146
|
+
background-color: var(--theme-bg-1);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
select {
|
|
150
|
+
background-color: var(--theme-bg-0);
|
|
151
|
+
color: var(--theme-font-1);
|
|
152
|
+
border: 1px solid var(--theme-border);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
select[disabled] {
|
|
156
|
+
background-color: var(--theme-bg-1);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
textarea {
|
|
160
|
+
background-color: var(--theme-bg-0);
|
|
161
|
+
color: var(--theme-font-1);
|
|
162
|
+
border: 1px solid var(--theme-border);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
textarea[disabled] {
|
|
166
|
+
background-color: var(--theme-bg-1);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.ace_gutter-cell.ace-gutter-sql-run {
|
|
170
|
+
background-repeat: no-repeat;
|
|
171
|
+
background-position: 2px center;
|
|
172
|
+
|
|
173
|
+
/* content: '▶';
|
|
174
|
+
margin-right: 3px; */
|
|
175
|
+
|
|
176
|
+
/* border-radius: 20px 0px 0px 20px; */
|
|
177
|
+
/* Change the color of the breakpoint if you want
|
|
178
|
+
box-shadow: 0px 0px 1px 1px #248c46 inset; */
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.theme-type-light .ace_gutter-cell.ace-gutter-sql-run {
|
|
182
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMTcuODA0IDE3LjgwNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTcuODA0IDE3LjgwNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxnIGlkPSJjOThfcGxheSI+CgkJPHBhdGggZmlsbD0nIzQ0NCcgZD0iTTIuMDY3LDAuMDQzQzIuMjEtMC4wMjgsMi4zNzItMC4wMDgsMi40OTMsMC4wODVsMTMuMzEyLDguNTAzYzAuMDk0LDAuMDc4LDAuMTU0LDAuMTkxLDAuMTU0LDAuMzEzCgkJCWMwLDAuMTItMC4wNjEsMC4yMzctMC4xNTQsMC4zMTRMMi40OTIsMTcuNzE3Yy0wLjA3LDAuMDU3LTAuMTYyLDAuMDg3LTAuMjUsMC4wODdsLTAuMTc2LTAuMDQKCQkJYy0wLjEzNi0wLjA2NS0wLjIyMi0wLjIwNy0wLjIyMi0wLjM2MVYwLjQwMkMxLjg0NCwwLjI1LDEuOTMsMC4xMDcsMi4wNjcsMC4wNDN6Ii8+Cgk8L2c+Cgk8ZyBpZD0iQ2FwYV8xXzc4XyI+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.theme-type-dark .ace_gutter-cell.ace-gutter-sql-run {
|
|
186
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMTcuODA0IDE3LjgwNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTcuODA0IDE3LjgwNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxnIGlkPSJjOThfcGxheSI+CgkJPHBhdGggZmlsbD0nI2RkZCcgZD0iTTIuMDY3LDAuMDQzQzIuMjEtMC4wMjgsMi4zNzItMC4wMDgsMi40OTMsMC4wODVsMTMuMzEyLDguNTAzYzAuMDk0LDAuMDc4LDAuMTU0LDAuMTkxLDAuMTU0LDAuMzEzCgkJCWMwLDAuMTItMC4wNjEsMC4yMzctMC4xNTQsMC4zMTRMMi40OTIsMTcuNzE3Yy0wLjA3LDAuMDU3LTAuMTYyLDAuMDg3LTAuMjUsMC4wODdsLTAuMTc2LTAuMDQKCQkJYy0wLjEzNi0wLjA2NS0wLjIyMi0wLjIwNy0wLjIyMi0wLjM2MVYwLjQwMkMxLjg0NCwwLjI1LDEuOTMsMC4xMDcsMi4wNjcsMC4wNDN6Ii8+Cgk8L2c+Cgk8ZyBpZD0iQ2FwYV8xXzc4XyI+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.ace_gutter-cell.ace-gutter-sql-run:hover {
|
|
190
|
+
background-color: var(--theme-bg-2);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.ace_gutter-cell.ace-gutter-current-part {
|
|
194
|
+
/* background-color: var(--theme-bg-2); */
|
|
195
|
+
font-weight: bold;
|
|
196
|
+
color: var(--theme-font-hover);
|
|
197
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.color-icon-blue {
|
|
2
|
+
color: var(--theme-icon-blue);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.color-icon-green {
|
|
6
|
+
color: var(--theme-icon-green);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.color-icon-red {
|
|
10
|
+
color: var(--theme-icon-red);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.color-icon-gold {
|
|
14
|
+
color: var(--theme-icon-gold);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.color-icon-yellow {
|
|
18
|
+
color: var(--theme-icon-yellow);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.color-icon-magenta {
|
|
22
|
+
color: var(--theme-icon-magenta);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
.color-icon-inv-green {
|
|
27
|
+
color: var(--theme-icon-inv-green);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.color-icon-inv-red {
|
|
31
|
+
color: var(--theme-icon-inv-red);
|
|
32
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
6
|
+
|
|
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 lang="javascript">
|
|
26
|
+
window.dbgate_page = '';
|
|
27
|
+
</script>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<script defer src="build/bundle.js"></script>
|
|
31
|
+
|
|
32
|
+
<style>
|
|
33
|
+
.lds-ellipsis {
|
|
34
|
+
display: inline-block;
|
|
35
|
+
position: relative;
|
|
36
|
+
width: 80px;
|
|
37
|
+
height: 80px;
|
|
38
|
+
}
|
|
39
|
+
.lds-ellipsis div {
|
|
40
|
+
position: absolute;
|
|
41
|
+
top: 33px;
|
|
42
|
+
width: 13px;
|
|
43
|
+
height: 13px;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
background: #000;
|
|
46
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
47
|
+
}
|
|
48
|
+
.lds-ellipsis div:nth-child(1) {
|
|
49
|
+
left: 8px;
|
|
50
|
+
animation: lds-ellipsis1 0.6s infinite;
|
|
51
|
+
}
|
|
52
|
+
.lds-ellipsis div:nth-child(2) {
|
|
53
|
+
left: 8px;
|
|
54
|
+
animation: lds-ellipsis2 0.6s infinite;
|
|
55
|
+
}
|
|
56
|
+
.lds-ellipsis div:nth-child(3) {
|
|
57
|
+
left: 32px;
|
|
58
|
+
animation: lds-ellipsis2 0.6s infinite;
|
|
59
|
+
}
|
|
60
|
+
.lds-ellipsis div:nth-child(4) {
|
|
61
|
+
left: 56px;
|
|
62
|
+
animation: lds-ellipsis3 0.6s infinite;
|
|
63
|
+
}
|
|
64
|
+
@keyframes lds-ellipsis1 {
|
|
65
|
+
0% {
|
|
66
|
+
transform: scale(0);
|
|
67
|
+
}
|
|
68
|
+
100% {
|
|
69
|
+
transform: scale(1);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
@keyframes lds-ellipsis3 {
|
|
73
|
+
0% {
|
|
74
|
+
transform: scale(1);
|
|
75
|
+
}
|
|
76
|
+
100% {
|
|
77
|
+
transform: scale(0);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
@keyframes lds-ellipsis2 {
|
|
81
|
+
0% {
|
|
82
|
+
transform: translate(0, 0);
|
|
83
|
+
}
|
|
84
|
+
100% {
|
|
85
|
+
transform: translate(24px, 0);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
#starting_dbgate_zero {
|
|
90
|
+
position: absolute;
|
|
91
|
+
left: 0;
|
|
92
|
+
top: 0;
|
|
93
|
+
right: 0;
|
|
94
|
+
bottom: 0;
|
|
95
|
+
display: flex;
|
|
96
|
+
align-items: center;
|
|
97
|
+
justify-content: space-around;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.inner-flex {
|
|
101
|
+
display: flex;
|
|
102
|
+
align-items: center;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
}
|
|
105
|
+
</style>
|
|
106
|
+
</head>
|
|
107
|
+
|
|
108
|
+
<body>
|
|
109
|
+
<div id="starting_dbgate_zero">
|
|
110
|
+
<div class="inner-flex">
|
|
111
|
+
<div class="lds-ellipsis">
|
|
112
|
+
<div></div>
|
|
113
|
+
<div></div>
|
|
114
|
+
<div></div>
|
|
115
|
+
<div></div>
|
|
116
|
+
</div>
|
|
117
|
+
<div>Loading DbGate App</div>
|
|
118
|
+
</div>
|
|
119
|
+
</div>
|
|
120
|
+
</body>
|
|
121
|
+
</html>
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
6
|
+
|
|
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 lang="javascript">
|
|
26
|
+
window.dbgate_page = 'license';
|
|
27
|
+
</script>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<script defer src="build/bundle.js"></script>
|
|
31
|
+
|
|
32
|
+
<style>
|
|
33
|
+
.lds-ellipsis {
|
|
34
|
+
display: inline-block;
|
|
35
|
+
position: relative;
|
|
36
|
+
width: 80px;
|
|
37
|
+
height: 80px;
|
|
38
|
+
}
|
|
39
|
+
.lds-ellipsis div {
|
|
40
|
+
position: absolute;
|
|
41
|
+
top: 33px;
|
|
42
|
+
width: 13px;
|
|
43
|
+
height: 13px;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
background: #000;
|
|
46
|
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
47
|
+
}
|
|
48
|
+
.lds-ellipsis div:nth-child(1) {
|
|
49
|
+
left: 8px;
|
|
50
|
+
animation: lds-ellipsis1 0.6s infinite;
|
|
51
|
+
}
|
|
52
|
+
.lds-ellipsis div:nth-child(2) {
|
|
53
|
+
left: 8px;
|
|
54
|
+
animation: lds-ellipsis2 0.6s infinite;
|
|
55
|
+
}
|
|
56
|
+
.lds-ellipsis div:nth-child(3) {
|
|
57
|
+
left: 32px;
|
|
58
|
+
animation: lds-ellipsis2 0.6s infinite;
|
|
59
|
+
}
|
|
60
|
+
.lds-ellipsis div:nth-child(4) {
|
|
61
|
+
left: 56px;
|
|
62
|
+
animation: lds-ellipsis3 0.6s infinite;
|
|
63
|
+
}
|
|
64
|
+
@keyframes lds-ellipsis1 {
|
|
65
|
+
0% {
|
|
66
|
+
transform: scale(0);
|
|
67
|
+
}
|
|
68
|
+
100% {
|
|
69
|
+
transform: scale(1);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
@keyframes lds-ellipsis3 {
|
|
73
|
+
0% {
|
|
74
|
+
transform: scale(1);
|
|
75
|
+
}
|
|
76
|
+
100% {
|
|
77
|
+
transform: scale(0);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
@keyframes lds-ellipsis2 {
|
|
81
|
+
0% {
|
|
82
|
+
transform: translate(0, 0);
|
|
83
|
+
}
|
|
84
|
+
100% {
|
|
85
|
+
transform: translate(24px, 0);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
#starting_dbgate_zero {
|
|
90
|
+
position: absolute;
|
|
91
|
+
left: 0;
|
|
92
|
+
top: 0;
|
|
93
|
+
right: 0;
|
|
94
|
+
bottom: 0;
|
|
95
|
+
display: flex;
|
|
96
|
+
align-items: center;
|
|
97
|
+
justify-content: space-around;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.inner-flex {
|
|
101
|
+
display: flex;
|
|
102
|
+
align-items: center;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
}
|
|
105
|
+
</style>
|
|
106
|
+
</head>
|
|
107
|
+
|
|
108
|
+
<body>
|
|
109
|
+
<div id="starting_dbgate_zero">
|
|
110
|
+
<div class="inner-flex">
|
|
111
|
+
<div class="lds-ellipsis">
|
|
112
|
+
<div></div>
|
|
113
|
+
<div></div>
|
|
114
|
+
<div></div>
|
|
115
|
+
<div></div>
|
|
116
|
+
</div>
|
|
117
|
+
<div>Loading DbGate App</div>
|
|
118
|
+
</div>
|
|
119
|
+
</div>
|
|
120
|
+
</body>
|
|
121
|
+
</html>
|