123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /*
- * 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;
- }
|