#7674 closed defect (fixed)
DataGrid: selection difficult to see in test_edit_dijit.html
Reported by: | Adam Peller | Owned by: | nonken |
---|---|---|---|
Priority: | high | Milestone: | 1.2 |
Component: | DojoX Grid | Version: | 1.2beta |
Keywords: | a11y keyboard | Cc: | Joseph Scheuhammer, nonken, Becky Gibson |
Blocked By: | Blocking: |
Description
Unlike the other tests, the current selection is just a dotted line, not a heavy dash line, and it's very hard to see.
Change History (11)
comment:1 Changed 12 years ago by
Cc: | Becky Gibson added |
---|
comment:2 Changed 12 years ago by
comment:3 Changed 12 years ago by
Keywords: | a11y keyboard added |
---|
comment:4 Changed 12 years ago by
the border is visible in test_grid.html - it is a blue dash for selected and a dotted green for mouse over. BUT, in test_grid.html there is no class="tundra" on the body tag. Thus, we need to updated the grid mouseover and selection styles for tundra. Not sure what to use to make visible, though. We could use different background colors in tundra and borders in dijit_a11y.
comment:5 Changed 12 years ago by
comment:6 Changed 12 years ago by
Milestone: | tbd → 1.3 |
---|
marking these TBD tickets for 1.3 for now, although Bryan may recategorize
comment:7 Changed 12 years ago by
Milestone: | 1.3 → tbd |
---|---|
Owner: | changed from Bryan Forbes to nonken |
Priority: | normal → high |
comment:8 Changed 12 years ago by
The issue isn't so much dotted vs. dashed as the color. If you change tundraGrid.css like this it works well:
.tundra .dojoxGridCellFocus { border: 1px dashed darkblue; }
and
.tundra .dojoxGridCellFocus.dojoxGridCellOver { border: 1px dashed darkblue; }
then it's pretty visible.
comment:9 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:10 Changed 12 years ago by
Milestone: | tbd → 1.2 |
---|
note, in the other tests, when you mouse over the selected cell, it uses a different style to show the selection which I think is also hard to see. Perhaps that's a different issue.