2 .webfx-menu, .webfx-menu * {
4 Set the box sizing to content box
5 in the future when IE6 supports box-sizing
6 there will be an issue to fix the sizes
8 There is probably an issue with IE5 mac now
9 because IE5 uses content-box but the script
10 assumes all versions of IE uses border-box.
12 At the time of this writing mozilla did not support
13 box-sizing for absolute positioned element.
15 Opera only supports content-box
17 box-sizing: content-box;
18 -moz-box-sizing: content-box;
25 border: 1px solid #7e0079;
26 -moz-border-radius: 4px;
27 -webkit-border-radius: 4px;
31 -moz-box-shadow: #000000 1px 1px 4px;
32 -webkit-box-shadow: #000000 1px 1px 4px;
33 box-shadow: #000000 1px 1px 4px;
38 border: 1px solid white;
39 padding: 2px 5px 2px 5px;
41 /* font-family: Tahoma, Verdan, Helvetica, Sans-Serif; */
47 /* width: expression(constExpression(ieBox ? "100%": "auto")); /* should be ignored by mz and op */
48 width: expression(constExpression(ie ? "98%": "auto")); /* should be ignored by mz and op */
50 /* padding: 2px 0px 2px 5px; */
51 padding: 1px 0px 1px 5px;
53 /* font-family: Verdana, Arial, Helvetica, sans-serif; */
55 text-decoration: none;
56 vertical-align: center;
58 border: 1px solid white;
61 .webfx-menu a:visited {
63 border: 1px solid white;
67 border: 1px solid #7e0079;
68 -moz-border-radius: 4px;
69 -webkit-border-radius: 4px;
74 .webfx-menu a[href]:hover {
76 text-decoration: none;
79 .webfx-menu a .arrow {
90 height: expression(constExpression(ieBox ? "2px" : "0"));
91 border-top: 1px solid #7e0079; /* rgb(120,172,255); */
92 border-bottom: 1px solid rgb(234,242,255);
94 margin: 2px 0px 2px 0px;
99 /* i want a vertical bar */
102 /* background: rgb(120,172,255);/*rgb(255,128,0);*/
103 /* background: #a097ed; */
105 /* border: 1px solid #7E0079; */
106 /* border: 1px solid #000000; */
112 /* IE5.0 has the wierdest box model for inline elements */
113 padding: expression(constExpression(ie50 ? "0px" : "2px"));
117 .webfx-menu-bar a:visited {
118 /* i want a vertical bar */
122 padding: 1px 5px 1px 5px;
128 text-decoration: none;
130 /* IE5.0 Does not paint borders and padding on inline elements without a height/width */
131 height: expression(constExpression(ie50 ? "17px" : "auto"));
134 .webfx-menu-bar a:link {
139 .webfx-menu-bar a:hover {
140 text-decoration: underline;
144 .webfx-menu-bar a .arrow {
147 /* vertical-align: top; */
153 .webfx-menu-bar a:active, .webfx-menu-bar a:focus {
157 ie does not support outline but ie55 can hide the outline using
158 a proprietary property on HTMLElement. Did I say that IE sucks at CSS?
160 ie-dummy: expression(this.hideFocus=true);
165 width: expression(constExpression(ie ? "98%": "auto")); /* should be ignored by mz and op */