mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
69 lines
1.6 KiB
CSS
69 lines
1.6 KiB
CSS
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
* March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*/
|
|
|
|
#subscribe-window {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
tree {
|
|
background-color:white;
|
|
border: none;
|
|
border-spacing: 0px;
|
|
//border-collapse: collapse;
|
|
width: 100%
|
|
}
|
|
|
|
|
|
|
|
treecell {
|
|
color: black;
|
|
font-family: Verdana;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
treecell[selectedcell] {
|
|
background-color: #666699;
|
|
color: white;
|
|
}
|
|
|
|
treerow > treecell > titledbutton {
|
|
list-style-image: url("chrome://messenger/skin/dot.gif");
|
|
color: inherit;
|
|
border: none;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
|
|
treeitem[subscribed="true"] > treerow > treecell > titledbutton {
|
|
list-style-image: url("chrome://messenger/skin/check.gif");
|
|
}
|
|
|
|
treehead treerow treecell {
|
|
font-size: 9pt;
|
|
background-color: #666699;
|
|
border: thin darkgray solid;
|
|
color: white;
|
|
}
|
|
|