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
|
/* body tag created by servlet */
.i-generated-body {
background: #e9eced;
width:100%;
height:100%;
border:0;
margin:0;
overflow:auto;
}
.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 */
margin-top:-1px;
border-top:1px solid transparent;
}
.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);
}
/**
* 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);
}
|