annotate inkscape/firefox/content/themes/checkbox/style.css @ 1417:7c89a4f648bd
Fix issue of removing components.
Ref: ticket #35 on Assembla
- It caused by misunderstanding (pygtk change it?) of APIs of PyGTK.
- Fix it by calling iter_next() of data model.
author |
Thinker K.F. Li <thinker@codemud.net> |
date |
Thu, 07 Apr 2011 11:44:49 +0800 |
parents |
4350aa369149 |
children |
|
rev |
line source |
352
|
1 .tree .tree-checkbox li a,
|
|
2 .tree .tree-checkbox li a.unchecked {
|
|
3 background-image:url("check_0.png");
|
|
4 }
|
|
5 .tree .tree-checkbox li a.undetermined {
|
|
6 background-image:url("check_1.png");
|
|
7 }
|
|
8 .tree .tree-checkbox li a.checked {
|
|
9 background-image:url("check_2.png");
|
|
10 }
|
|
11 .tree .tree-checkbox li a.clicked,
|
|
12 .tree .tree-checkbox li span.clicked {
|
|
13 background-color:transparent;
|
|
14 border-color:transparent;
|
|
15 color:black;
|
|
16 } |