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
177
178
179
180
181
182
183
|
/* body tag created by servlet */
.i-generated-body {
background: #e9eced;
width:100%;
height:100%;
border:0;
margin:0;
overflow:hidden;
}
.i-app {
background: #e9eced;
font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
color: #464f52;
font-size: 13px;
line-height: 18px;
height: 100%;
}
.i-view {
height: 100%;
width: 100%;
overflow: auto;
/* avoid scrollbars with margins in root layout */
outline: none;
margin-top:-1px;
border-top:1px solid transparent;
}
.i-view:active, .i-view:focus {
outline: none;
}
.i-app input,
.i-window input,
.i-app select,
.i-window select,
.i-app textarea,
.i-window textarea,
.i-app button,
.i-window button {
font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
color: #464f52;
}
.i-app select,
.i-window select {
padding: 0;
margin: 0;
}
.i-disabled {
opacity: 0.3;
filter: Alpha(opacity=30);
}
.i-required-field-indicator {
padding-left:2px;
color: red;
}
/* Field modified & error */
input.i-modified,
.i-richtextarea.i-modified iframe.gwt-RichTextArea,
.i-checkbox.i-modified,
.i-modified .i-select-option,
.i-modified .i-textfield,
.i-modified .i-datefield-calendarpanel,
.i-modified .i-select-select,
.i-modified .i-select-twincol-selections,
.i-modified .i-select-twincol-options,
.i-modified .i-slider-base {
background:transparent;
background-color: #FFFFE0;
}
.i-checkbox-error,
.i-select-error .i-select-option,
.i-select-error .i-select-select,
.i-select-error .i-select-twincol-selections,
.i-select-error .i-select-twincol-options,
.i-slider-error .i-slider-base {
background:transparent;
background-color: #FFE0E0;
}
/**
* Custom toolktip
*/
.i-tooltip {
background-color: #ffffcc;
border: 1px solid #464f52;
font-size: 12px;
font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
color: #464f52;
}
.i-tooltip-text {
margin: 4px;
}
.i-tooltip .i-errormessage {
padding: 4px;
border-width: 0 0 1px 0;
}
/**
* Context menu styles
*/
.i-contextmenu {
background: #e9eced url(../tabsheet/img/tab-bg.png);
font-family: "Trebuchet MS", geneva, helvetica, arial, tahoma, verdana, sans-serif;
background-color: #f6f7f7;
color: #464f52;
font-size: 12px;
line-height: 14px;
}
.i-contextmenu .gwt-MenuBar {
border-right: 2px solid #c6cbcc;
border-bottom: 2px solid #c6cbcc;
border-top: 1px solid #d0d4d5;
border-left: 1px solid #d0d4d5;
}
.i-contextmenu .gwt-MenuItem {
padding: 2px 0;
cursor: pointer;
vertical-align: middle;
}
.i-contextmenu .gwt-MenuItem div {
/*border: 1px solid #f6f7f7;*/
padding: 1px 20px 1px 8px;
cursor: pointer;
vertical-align: middle;
white-space: nowrap;
}
.i-contextmenu .gwt-MenuItem-selected div {
color: #fff;
background: #5daee8;
}
.i-contextmenu table {
border-collapse:collapse;
margin:0;
padding:0;
}
.i-contextmenu .gwt-MenuItem img {
margin-right: 10px;
vertical-align: middle;
}
/**
* Link component styles
* (useless to move into a separate file)
*/
.i-link span {
text-decoration: underline;
cursor:pointer;
}
.i-label {
overflow: hidden;
}
/* Loading indicator states */
.i-loading-indicator,
.i-loading-indicator-delay,
.i-loading-indicator-wait {
width: 31px;
height: 31px;
background: transparent url(img/loading-indicator.gif);
}
.i-loading-indicator-delay {
background: transparent url(img/loading-indicator-delay.gif);
}
.i-loading-indicator-wait {
background: transparent url(img/loading-indicator-wait.gif);
}
|