Path: blob/trunk/third_party/closure/goog/css/tree.css
2868 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/* Author: [email protected] (Erik Arvidsson) */8/* Author: [email protected] (Emil A Eklund) */9/* Author: [email protected] (Jon Perlow) */1011/*12TODO(arv): Currently the sprite image has the height 16px. We should make the13image taller which would allow better flexibility when it comes to the height14of a tree row.15*/1617.goog-tree-root:focus {18outline: none;19}2021.goog-tree-row {22white-space: nowrap;23font: icon;24line-height: 16px;25height: 16px;26}2728.goog-tree-row span {29overflow: hidden;30text-overflow: ellipsis;31}3233.goog-tree-children {34background-repeat: repeat-y;35background-image: url(//ssl.gstatic.com/closure/tree/I.png) !important;36background-position-y: 1px !important; /* IE only */37font: icon;38}3940.goog-tree-children-nolines {41font: icon;42}4344.goog-tree-icon {45background-image: url(//ssl.gstatic.com/closure/tree/tree.png);46}4748.goog-tree-expand-icon {49vertical-align: middle;50height: 16px;51width: 16px;52cursor: default;53}5455.goog-tree-expand-icon-plus {56width: 19px;57background-position: 0 0;58}5960.goog-tree-expand-icon-minus {61width: 19px;62background-position: -24px 0;63}6465.goog-tree-expand-icon-tplus {66width: 19px;67background-position: -48px 0;68}6970.goog-tree-expand-icon-tminus {71width: 19px;72background-position: -72px 0;73}7475.goog-tree-expand-icon-lplus {76width: 19px;77background-position: -96px 0;78}7980.goog-tree-expand-icon-lminus {81width: 19px;82background-position: -120px 0;83}8485.goog-tree-expand-icon-t {86width: 19px;87background-position: -144px 0;88}8990.goog-tree-expand-icon-l {91width: 19px;92background-position: -168px 0;93}9495.goog-tree-expand-icon-blank {96width: 19px;97background-position: -168px -24px;98}99100.goog-tree-collapsed-folder-icon {101vertical-align: middle;102height: 16px;103width: 16px;104background-position: -0px -24px;105}106107.goog-tree-expanded-folder-icon {108vertical-align: middle;109height: 16px;110width: 16px;111background-position: -24px -24px;112}113114.goog-tree-file-icon {115vertical-align: middle;116height: 16px;117width: 16px;118background-position: -48px -24px;119}120121.goog-tree-item-label {122margin-left: 3px;123padding: 1px 2px 1px 2px;124text-decoration: none;125color: WindowText;126cursor: default;127}128129.goog-tree-item-label:hover {130text-decoration: underline;131}132133.selected .goog-tree-item-label {134background-color: ButtonFace;135color: ButtonText;136}137138.focused .selected .goog-tree-item-label {139background-color: Highlight;140color: HighlightText;141}142143.goog-tree-hide-root {144display: none;145}146147148