sqlui 0.1.54 → 0.1.55
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.
- checksums.yaml +4 -4
- data/.release-version +1 -1
- data/app/sqlui.rb +1 -1
- data/app/views/sqlui.erb +7 -3
- data/client/resources/sqlui.css +37 -8
- data/client/resources/sqlui.js +489 -326
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ac5672ec8d9668ee10c58ccf407a63f297b411ff055cadfc89ce9090369bb2d
|
4
|
+
data.tar.gz: 146c7af99506528b86b8721db25dfffec71dbb5af32f9ed711a7b7b781ae0dbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31d766b04ba02bf3f0bc4d369614b87bc5c527e6f96634d3019875f71cb84d6906aba812d54175ca65782cadee47355df87018c8c190a8cf33fce2a306a32def
|
7
|
+
data.tar.gz: c05a7fff480f3fe42925a7a07cddebddbff979f74e3bdac898a585439d251c180d682da66a7e6b98d4f0e175def931f03dff23d3d5406fd9c273f1953dcc0d6a
|
data/.release-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.55
|
data/app/sqlui.rb
CHANGED
data/app/views/sqlui.erb
CHANGED
@@ -96,9 +96,13 @@
|
|
96
96
|
</div>
|
97
97
|
|
98
98
|
<div id="status-box" class="status-box">
|
99
|
-
<div id="
|
100
|
-
<div
|
101
|
-
<div id="
|
99
|
+
<div id="status-message"></div>
|
100
|
+
<div style="flex: 1;"></div>
|
101
|
+
<div id="pagination-box" class="tab-content-element">
|
102
|
+
<div id="page-count-box"></div>
|
103
|
+
<input id="prev-button" class="pagination-button" type="button" value="Prev" />
|
104
|
+
<input id="next-button" class="pagination-button" type="button" value="Next" />
|
105
|
+
</div>
|
102
106
|
</div>
|
103
107
|
</div>
|
104
108
|
</body>
|
data/client/resources/sqlui.css
CHANGED
@@ -103,10 +103,6 @@ p {
|
|
103
103
|
font-weight: bold;
|
104
104
|
}
|
105
105
|
|
106
|
-
.tab-content-element {
|
107
|
-
display: none;
|
108
|
-
}
|
109
|
-
|
110
106
|
.query-box {
|
111
107
|
display: flex;
|
112
108
|
flex-direction: column;
|
@@ -232,11 +228,11 @@ p {
|
|
232
228
|
background: none !important;
|
233
229
|
}
|
234
230
|
|
235
|
-
.status {
|
231
|
+
.status-message {
|
236
232
|
display: flex;
|
237
233
|
justify-content: center;
|
238
234
|
align-content: center;
|
239
|
-
flex-direction:
|
235
|
+
flex-direction: row;
|
240
236
|
font-family: Helvetica, sans-serif;
|
241
237
|
white-space: nowrap;
|
242
238
|
overflow: hidden;
|
@@ -355,12 +351,13 @@ thead {
|
|
355
351
|
}
|
356
352
|
|
357
353
|
.status-box {
|
358
|
-
padding: 5px;
|
354
|
+
padding: 5px 15px;
|
359
355
|
display: flex;
|
360
356
|
flex-direction: row;
|
361
|
-
justify-content: space-between;
|
362
357
|
border-top: 1px solid #ddd;
|
363
358
|
height: 30px;
|
359
|
+
align-items: center;
|
360
|
+
font-family: Helvetica, sans-serif;
|
364
361
|
}
|
365
362
|
|
366
363
|
.CodeMirror pre.CodeMirror-placeholder {
|
@@ -483,3 +480,35 @@ select {
|
|
483
480
|
color: #333;
|
484
481
|
font-size: 14px;
|
485
482
|
}
|
483
|
+
|
484
|
+
#pagination-box {
|
485
|
+
display: flex;
|
486
|
+
flex-direction: row;
|
487
|
+
}
|
488
|
+
|
489
|
+
#page-count-box {
|
490
|
+
align-self: center;
|
491
|
+
font-size: 16px;
|
492
|
+
}
|
493
|
+
|
494
|
+
#next-button {
|
495
|
+
|
496
|
+
}
|
497
|
+
|
498
|
+
#prev-button {
|
499
|
+
margin: 0 10px;
|
500
|
+
}
|
501
|
+
|
502
|
+
.pagination-button {
|
503
|
+
cursor: pointer;
|
504
|
+
background: none;
|
505
|
+
color: #333;
|
506
|
+
border: 1px solid #888;
|
507
|
+
font-size: 16px;
|
508
|
+
padding: 2px 10px;
|
509
|
+
}
|
510
|
+
|
511
|
+
.pagination-button:disabled {
|
512
|
+
color: #888;
|
513
|
+
border: 1px solid #ddd;
|
514
|
+
}
|