-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebSQLAdmin.css
More file actions
94 lines (93 loc) · 1.64 KB
/
Copy pathWebSQLAdmin.css
File metadata and controls
94 lines (93 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#wsalayer {
position: fixed;
top: 0%;
width:100%;
background-color: white;
}
.headerlogo{
margin: 0;
width: 100%;
padding: 5px 0;
text-align: center;
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#0000A7),color-stop(1,#000046));
background-image: -moz-gradient(linear,left top,left bottom,color-stop(0,#0000A7),color-stop(1,#000046));
background-image: gradient(linear,left top,left bottom,color-stop(0,#0000A7),color-stop(1,#000046));
color: white;
font-style: italic;
font-weight: bold;
text-shadow: 1px 1px 5px #fff;
box-shadow: 0 2px 7px #A6A7E4;
}
#container {
margin: 10px;
}
div#errMsg{
display: none;
margin: 5px;
padding: 5px 10px;
width: auto;
border-radius: 6px;
font-size: 90%;
background-color: #FEA;
}
#dbnamediv{
display: block;
font-size: 80%;
}
h3{
margin: 0;
}
h3 > span{
font-size: 70%;
display: inline-block;
padding: 5px;
}
table.data{
width:100%;
border-collapse: collapse;
font-size: 90%;
}
table.data th{
background-color: #def;
border: 1px solid #ccc;
}
table.data td{
max-width: 400px;
border: 1px solid #ccc;
vertical-align: top;
font-size: 11px;
text-overflow: ellipsis;
overflow: hidden;
}
ul.jsondata{
margin: 2px auto;
padding-left: 2em;
list-style-type: none;
}
.jsondata span, .jsonspan{
font-size: 11px;
font-family: Menlo, monospace;
}
.jsondata span.label{
color: #881391;
}
.jsondata span.string{
color: #C41A16;
white-space: pre;
}
.jsondata span.number{
color: #1C00CF;
}
p.sqlarea{
margin: 5px;
padding: 5px 10px;
width: auto;
border-radius: 6px;
font-size: 90%;
background-color: #FEA;
}
textarea#sql{
width: 90%;
max-width: 400px;
height: 100px;
}