mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-10 05:47:04 +00:00
76449744ad
68985, various hangs, crashes, glitches etc. 68545, 68985, 68395 r=jag; Implement new bookmarks sidebar panel. a=hyatt. Bookmarks CSS file organization, a=hewitt
28 lines
726 B
CSS
28 lines
726 B
CSS
|
|
|
|
/**
|
|
* All the properties in this rule are important to avoid having to create
|
|
* a special type of tree. This stylesheet can be loaded into a document with
|
|
* a single tree that is a link tree. Hardly elegant but it's efficient.
|
|
*/
|
|
treeitem[selected="true"] > treerow
|
|
{
|
|
background : transparent !important;
|
|
border : none !important;
|
|
color : WindowText !important;
|
|
}
|
|
|
|
treecell:hover
|
|
{
|
|
text-decoration : underline !important;
|
|
color : #000080 !important;
|
|
cursor : pointer;
|
|
}
|
|
|
|
treecell:hover:active
|
|
{
|
|
text-decoration : underline !important;
|
|
color : red !important;
|
|
}
|
|
|
|
|