#4308 closed task (fixed)
tundra and soria css reference no.gif, causes 404s
Reported by: | James Burke | Owned by: | dante |
---|---|---|---|
Priority: | high | Milestone: | 1.0 |
Component: | Dijit | Version: | 0.9 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Both tundra.css and soria.css reference a url("no.gif") in them. This is not a correct path and results in multiple 404s.
This can be tested by running this page through a proxy and watch for 404s:
http://archive.dojotoolkit.org/nightly/dojotoolkit/dijit/tests/form/test_Button.html
Change History (6)
comment:1 Changed 15 years ago by
Owner: | set to dante |
---|
comment:2 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 Changed 15 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
Type: | defect → task |
it seems in ie6, the url:(images/no.gif) is being read as "currentpath"/images.no.gif, rather than relative to the css link that defines the statement.
ie6 seems to still fire a 404 because of this, though it seems ff and safari win32/beta do not. reopening...
comment:4 Changed 15 years ago by
Try adding this: .dj_ie6 .tundra .dijitSliderDisabled *, .dj_ie6 .tundra .dijitDisabledClickableRegion, /* a region the user would be able to click on, but it's disabled */ .dj_ie6 .tundra .dijitSpinnerDisabled *, .dj_ie6 .tundra .dijitButtonDisabled *, .dj_ie6 .tundra .dijitDropDownButtonDisabled *, .dj_ie6 .tundra .dijitComboButtonDisabled *, .dj_ie6 .tundra .dijitComboBoxDisabled * {
cursor: expression(vuit.moduleUrl("vijit.themes.tundra").toString() + "images/no.gif" , not-allowed, default");
}
comment:5 Changed 15 years ago by
Perhaps moot now, but for posterity that should be: cursor: expression(dojo.moduleUrl("dijit.themes.tundra").toString() + "images/no.gif" , not-allowed, default");
comment:6 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
In tundra.css we just have to change "no.gif" to "images/no.gif", but for soria... no.gif isn't checked in. Pete, is this just an oversite, or something intentional?