• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* Styles borrowed from GWT standard theme CSS */
2
3/*
4 * PopupPanel
5 */
6
7.gwt-PopupPanel {
8  border: 3px solid #C3D9FF;
9  padding: 3px;
10  background: white;
11}
12
13.gwt-PopupPanelGlass {
14  background-color: #000;
15  opacity: 0.3;
16  filter: alpha(opacity=30);
17}
18
19/* MenuBar */
20
21.gwt-MenuBar {
22  cursor: default;
23}
24.gwt-MenuBar .gwt-MenuItem {
25  cursor: default;
26}
27.gwt-MenuBar .gwt-MenuItem-selected {
28  background: #E0EDFE;
29}
30.gwt-MenuBar-horizontal {
31  background: #e3e8f3 url(images/hborder.png) repeat-x 0px -2003px;
32  border: 1px solid #BBBBBB;
33}
34.gwt-MenuBar-horizontal .gwt-MenuItem {
35  padding: 0px 10px;
36  vertical-align: bottom;
37  color: #666666;
38  font-weight: bold;
39}
40.gwt-MenuBar-horizontal .gwt-MenuItemSeparator {
41  width: 1px;
42  padding: 0px;
43  margin: 0px;
44  border: 0px;
45  border-left: 1px solid #888888;
46  background: white;
47}
48.gwt-MenuBar-horizontal .gwt-MenuItemSeparator .menuSeparatorInner {
49  width: 1px;
50  background: white;
51}
52.gwt-MenuBar-vertical {
53  margin-top: 0px;
54  margin-left: 0px;
55  background: white;
56}
57.gwt-MenuBar-vertical table {
58  border-collapse: collapse;
59}
60.gwt-MenuBar-vertical .gwt-MenuItem {
61  padding: 4px 14px 4px 1px;
62}
63.gwt-MenuBar-vertical .gwt-MenuItemSeparator {
64  padding: 2px 0px;
65}
66.gwt-MenuBar-vertical .gwt-MenuItemSeparator .menuSeparatorInner {
67  height: 1px;
68  padding: 0px;
69  border: 0px;
70  border-top: 1px solid #777777;
71  background: #ddddee;
72  overflow: hidden;
73}
74.gwt-MenuBar-vertical .subMenuIcon {
75  padding-right: 4px;
76}
77.gwt-MenuBar-vertical .subMenuIcon-selected {
78  background: #E0EDFE;
79}
80
81/*
82 * ToggleButton
83 */
84
85.gwt-ToggleButton-up,
86.gwt-ToggleButton-up-hovering,
87.gwt-ToggleButton-up-disabled,
88.gwt-ToggleButton-down,
89.gwt-ToggleButton-down-hovering,
90.gwt-ToggleButton-down-disabled {
91  margin: 0;
92  padding: 3px 5px;
93  text-decoration: none;
94  background-color: #f4f4f4;
95}
96.gwt-ToggleButton-up {
97  border: 1px outset #ccc;
98  cursor: pointer;
99  cursor: hand;
100}
101.gwt-ToggleButton-up-hovering {
102  border: 1px outset;
103  border-color: #9cf #69e #69e #7af;
104  cursor: pointer;
105  cursor: hand;
106}
107.gwt-ToggleButton-up-disabled {
108  border: 1px outset #ccc;
109  cursor: default;
110  opacity: .5;
111  zoom: 1;
112  filter: alpha(opacity=40);
113}
114.gwt-ToggleButton-down {
115  border: 1px inset #ccc;
116  cursor: pointer;
117  cursor: hand;
118}
119.gwt-ToggleButton-down-hovering {
120  border: 1px inset;
121  border-color: #9cf #69e #69e #7af;
122  cursor: pointer;
123  cursor: hand;
124}
125.gwt-ToggleButton-down-disabled {
126  border: 1px inset #ccc;
127  cursor: default;
128  opacity: .5;
129  zoom: 1;
130  filter: alpha(opacity=40);
131}
132.gwt-SuggestBox {
133  padding: 2px;
134}
135.gwt-SuggestBoxPopup {
136  margin-left: 3px;
137}
138.gwt-SuggestBoxPopup .item {
139  padding: 2px 6px;
140  color: #424242;
141  cursor: default;
142}
143.gwt-SuggestBoxPopup .item-selected {
144  background: #b7d6f6;
145}
146.gwt-SuggestBoxPopup .suggestPopupContent {
147  background: white;
148}
149.gwt-SuggestBoxPopup .suggestPopupTopLeftInner {
150  width: 5px;
151  height: 5px;
152  zoom: 1;
153}
154.gwt-SuggestBoxPopup .suggestPopupTopRightInner {
155  width: 8px;
156  height: 5px;
157  zoom: 1;
158}
159.gwt-SuggestBoxPopup .suggestPopupBottomLeftInner {
160  width: 5px;
161  height: 8px;
162  zoom: 1;
163}
164.gwt-SuggestBoxPopup .suggestPopupBottomRightInner {
165  width: 8px;
166  height: 8px;
167  zoom: 1;
168}
169
170