Path: blob/trunk/third_party/closure/goog/css/tree.css
4505 views
/*1* Copyright 2007 The Closure Library Authors. All Rights Reserved.2*3* Use of this source code is governed by the Apache License, Version 2.0.4* See the COPYING file for details.5*/67@provide 'goog.css.tree';89/*10TODO(arv): Currently the sprite image has the height 16px. We should make the11image taller which would allow better flexibility when it comes to the height12of a tree row.13*/1415.goog-tree-root:focus {16outline: none;17}1819.goog-tree-row {20white-space: nowrap;21font: icon;22line-height: 16px;23height: 16px;24}2526.goog-tree-row span {27overflow: hidden;28text-overflow: ellipsis;29}3031.goog-tree-children {32background-repeat: repeat-y;33background-image: url(//ssl.gstatic.com/closure/tree/I.png) !important;34background-position-y: 1px !important; /* IE only */35font: icon;36}3738.goog-tree-children-nolines {39font: icon;40}4142.goog-tree-icon {43background-image: url(//ssl.gstatic.com/closure/tree/tree.png);44}4546.goog-tree-expand-icon {47vertical-align: middle;48height: 16px;49width: 16px;50cursor: default;51}5253.goog-tree-expand-icon-plus {54width: 19px;55background-position: 0 0;56}5758.goog-tree-expand-icon-minus {59width: 19px;60background-position: -24px 0;61}6263.goog-tree-expand-icon-tplus {64width: 19px;65background-position: -48px 0;66}6768.goog-tree-expand-icon-tminus {69width: 19px;70background-position: -72px 0;71}7273.goog-tree-expand-icon-lplus {74width: 19px;75background-position: -96px 0;76}7778.goog-tree-expand-icon-lminus {79width: 19px;80background-position: -120px 0;81}8283.goog-tree-expand-icon-t {84width: 19px;85background-position: -144px 0;86}8788.goog-tree-expand-icon-l {89width: 19px;90background-position: -168px 0;91}9293.goog-tree-expand-icon-blank {94width: 19px;95background-position: -168px -24px;96}9798.goog-tree-collapsed-folder-icon {99vertical-align: middle;100height: 16px;101width: 16px;102background-position: -0px -24px;103}104105.goog-tree-expanded-folder-icon {106vertical-align: middle;107height: 16px;108width: 16px;109background-position: -24px -24px;110}111112.goog-tree-file-icon {113vertical-align: middle;114height: 16px;115width: 16px;116background-position: -48px -24px;117}118119.goog-tree-item-label {120margin-left: 3px;121padding: 1px 2px 1px 2px;122text-decoration: none;123color: WindowText;124cursor: default;125}126127.goog-tree-item-label:hover {128text-decoration: underline;129}130131.selected .goog-tree-item-label {132background-color: ButtonFace;133color: ButtonText;134}135136.focused .selected .goog-tree-item-label {137background-color: Highlight;138color: HighlightText;139}140141.goog-tree-hide-root {142display: none;143}144145146