1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
* Copyright 2007 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by the Apache License, Version 2.0.
* See the COPYING file for details.
*/
/* Author: arv@google.com (Erik Arvidsson) */
/* Author: eae@google.com (Emil A Eklund) */
/* Author: jonp@google.com (Jon Perlow) */
/*
TODO(arv): Currently the sprite image has the height 16px. We should make the
image taller which would allow better flexibility when it comes to the height
of a tree row.
*/
.goog-tree-root:focus {
outline: none;
}
.goog-tree-row {
white-space: nowrap;
font: icon;
line-height: 16px;
height: 16px;
}
.goog-tree-row span {
overflow: hidden;
text-overflow: ellipsis;
}
.goog-tree-children {
background-repeat: repeat-y;
background-image: url(//ssl.gstatic.com/closure/tree/I.png) !important;
background-position-y: 1px !important; /* IE only */
font: icon;
}
.goog-tree-children-nolines {
font: icon;
}
.goog-tree-icon {
background-image: url(//ssl.gstatic.com/closure/tree/tree.png);
}
.goog-tree-expand-icon {
vertical-align: middle;
height: 16px;
width: 16px;
cursor: default;
}
.goog-tree-expand-icon-plus {
width: 19px;
background-position: 0 0;
}
.goog-tree-expand-icon-minus {
width: 19px;
background-position: -24px 0;
}
.goog-tree-expand-icon-tplus {
width: 19px;
background-position: -48px 0;
}
.goog-tree-expand-icon-tminus {
width: 19px;
background-position: -72px 0;
}
.goog-tree-expand-icon-lplus {
width: 19px;
background-position: -96px 0;
}
.goog-tree-expand-icon-lminus {
width: 19px;
background-position: -120px 0;
}
.goog-tree-expand-icon-t {
width: 19px;
background-position: -144px 0;
}
.goog-tree-expand-icon-l {
width: 19px;
background-position: -168px 0;
}
.goog-tree-expand-icon-blank {
width: 19px;
background-position: -168px -24px;
}
.goog-tree-collapsed-folder-icon {
vertical-align: middle;
height: 16px;
width: 16px;
background-position: -0px -24px;
}
.goog-tree-expanded-folder-icon {
vertical-align: middle;
height: 16px;
width: 16px;
background-position: -24px -24px;
}
.goog-tree-file-icon {
vertical-align: middle;
height: 16px;
width: 16px;
background-position: -48px -24px;
}
.goog-tree-item-label {
margin-left: 3px;
padding: 1px 2px 1px 2px;
text-decoration: none;
color: WindowText;
cursor: default;
}
.goog-tree-item-label:hover {
text-decoration: underline;
}
.selected .goog-tree-item-label {
background-color: ButtonFace;
color: ButtonText;
}
.focused .selected .goog-tree-item-label {
background-color: Highlight;
color: HighlightText;
}
.goog-tree-hide-root {
display: none;
}
|