-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend.css
164 lines (158 loc) · 2.43 KB
/
backend.css
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
* imageTweak
*
* @author Ralf Hertsch <[email protected]>
* @link http://phpmanufaktur.de
* @copyright 2008-2013
* @license MIT License (MIT) http://www.opensource.org/licenses/MIT
*/
td
{
font-size: 8pt;
vertical-align: top;
}
td.label {
font-weight: bold;
}
tr.flip {
background-color: #FFFFCC;
}
tr.flop {
background-color: transparent;
}
input
{
width: 98%;
background-color: transparent;
}
input[type=submit],
input[type=button]
{
width: 150px;
}
input[type=radio],
input[type=checkbox]
{
width: auto;
}
input[type=text].disabled {
color: #999999;
background-color: transparent;
border: none;
}
select
{
width: 98%;
font-size:8pt;
}
textarea
{
width: 98%;
font-size:8pt;
}
.nav_tab
{
padding: 3px 0 3px 10px;
margin: 15px 0;
border-bottom: 1px solid #dddddd;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}
.nav_tab li
{
display: inline;
margin: 0;
}
.nav_tab li a
{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #dddddd;
border-bottom: none;
background-color: #E8E8E8;
}
.nav_tab li a:link,
.nav_tab li a:visited
{
color: #AFAFAF;
background-color: #e8e8e8;
}
.nav_tab li.extra_tab a {
color:#003366;
background-color: #e8e8e8;
}
.nav_tab li a:hover,
.nav_tab li a:active
{
background-color: #FFFFCC;
color: #000;
}
.nav_tab li.selected a
{ /*selected tab effect*/
position: relative;
top: 1px;
padding-top: 4px;
color: #000;
background-color: #fff;
font-weight: bold;
}
.tweak_backend {
width: 100%;
clear: both;
background-image: none;
color: #000000;
background-color: transparent;
font-size: 9pt;
margin: 0;
padding: 5px;
}
.small
{
font-size: 7pt;
}
.intro {
border: 1px solid #000000;
color: #000000;
background-color: #ffffdd;
margin: 20px 0 10px 0;
padding: 10px;
font-size: 8pt;
}
.message
{
border: 1px solid #0000CC;
color: #000;
background-color: #FFFFCC;
margin: 20px 0 10px 0;
padding: 10px;
font-size: 8pt;
}
.error
{
border: 1px solid #ff0000;
color: #ff0000;
background-color: #ffdddd;
margin: 20px 0 10px 0;
padding: 10px;
font-size: 8pt;
}
.small-input
{
margin: 0;
padding: 0;
text-align: left;
font-size: 8pt;
}
.info_dlg table {
width: 800px;
border-collapse: collapse;
margin: 0 auto;
}
td.copyright_hint {
vertical-align: bottom;
}
td.tweak_page_id {
text-align: right;
color: maroon;
}