-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
176 lines (176 loc) · 3.52 KB
/
app.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
165
166
167
168
169
170
171
172
173
174
175
176
.character-editor-form .ui-block-a table {
width: auto
}
.character-editor-form input.mod {
width: 3em;
display: inline;
}
.character-editor-form .ui-grid-b .ui-block-a {
width: 23.5%
}
.character-editor-form .ui-grid-b .ui-block-b {
margin-left: 6%;
margin-right: 6%;
width: 39.5%;
}
.character-editor-form .ui-grid-b .ui-block-b label.ui-input-text {
margin-bottom: 0
}
.character-editor-form .ui-grid-b .ui-block-c {
width: 25%
}
.character-editor-form .ui-grid-b .ui-block-c .ui-field-contain label.ui-input-text {
width: 100%;
display: block;
margin-right: 0;
}
.character-editor-form .ui-grid-b .ui-block-c .ui-field-contain input.ui-input-text,
.character-editor-form .ui-grid-b .ui-block-c .ui-field-contain textarea.ui-input-text,
.character-editor-form .ui-grid-b .ui-block-c .ui-field-contain .ui-input-search {
width: 94%;
display: block;
}
.character-editor-form input[disabled],
.character-editor-form input.ui-disabled {
opacity: 1;
border: none;
padding: 0;
margin: -2px 0 0 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
background-color: transparent;
font-size: 18px;
}
input[disabled],
.ui-disabled {
opacity: 0.5
}
input.positive {
color: #63B500;
font-weight: bold;
}
input.negative {
color: #B50000;
font-weight: bold;
}
label:after {
content: ": "
}
.ui-radio label:after,
.ui-checkbox label:after {
content: ""
}
table {
width: 100%;
border-collapse: collapse;
}
table th,
table td {
padding: 6px
}
table th,
table th label,
table th label.ui-slider,
table th label.ui-input-text {
font-weight: bold;
color: rgb(80,80,80);
}
table thead th {
text-align: center
}
table tbody th {
text-align: right
}
table td.nowrap {
white-space: nowrap
}
table td input.ui-input-text {
width: 95%;
margin-bottom: 0;
}
table td input.ui-input-text.ui-slider-input {
width: 50px
}
tr.nowrap td,
tr.nowrap th {
white-space: nowrap
}
tr.small td,
tr.small th,
tr.small input.ui-input-text,
tr.small textarea.ui-input-text {
font-size: 12px
}
tr.small td {
padding: 3px
}
tr.small th {
padding: 0 3px
}
tr.right td,
tr.right th {
text-align: right
}
tr.center td,
tr.center th {
text-align: center
}
tr.even td,
tr.even th {
background-color: transparent
}
tr.odd td,
tr.odd th {
background-color: #eaeaea
}
tr.header td,
tr.header th,
table tr.header th label,
table tr.header th label.ui-slider,
table tr.header th label.ui-input-text,
.character-editor-form table tr.header input[disabled],
.character-editor-form table tr.header input.ui-disabled {
color: #46570B;
text-shadow: 0 1px 1px #A1BF36;
}
.character-editor-form table tr.header input[disabled],
.character-editor-form table tr.header input.ui-disabled {
color: #0A3A4A;
}
tr.header td,
tr.header th {
background-color: #D4E693;
}
tr.even + tr.odd th,
tr.even + tr.odd td,
tr.odd + tr.even th,
tr.odd + tr.even td {
border-top: 1px solid #c0c0c0;
}
tr + tr.header td,tr + tr.header th,
tr.even + tr.odd.header th,
tr.even + tr.odd.header td,
tr.odd + tr.even.header th,
tr.odd + tr.even.header td {
border-top: 1px solid #B4C76E;
}
tbody th,
tr.header td,
tr.header th {
vertical-align: middle;
}
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
* html .clearfix {
height: 1%
}