~vanvugt/ubuntu/oneiric/mediatomb/fix-770964-784431

« back to all changes in this revision

Viewing changes to webnew/css/tree.css

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2009-04-22 21:39:19 UTC
  • mto: (4.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090422213919-52m015y6gcpv1m1g
Tags: upstream-0.12.0~svn2018
ImportĀ upstreamĀ versionĀ 0.12.0~svn2018

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*MT_J*
 
2
    
 
3
    MediaTomb - http://www.mediatomb.cc/
 
4
    
 
5
    tree.css - this file is part of MediaTomb.
 
6
    
 
7
    Copyright (C) 2007-2008 Jan Habermann <jan.habermann@gmail.com>
 
8
    
 
9
    MediaTomb is free software; you can redistribute it and/or modify
 
10
    it under the terms of the GNU General Public License version 2
 
11
    as published by the Free Software Foundation.
 
12
    
 
13
    MediaTomb is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
    GNU General Public License for more details.
 
17
    
 
18
    You should have received a copy of the GNU General Public License
 
19
    version 2 along with MediaTomb; if not, write to the Free Software
 
20
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
21
    
 
22
    $Id: tree.css 1698 2008-02-23 20:48:30Z lww $
 
23
*/
 
24
 
 
25
/* Custom Ext Tree */
 
26
 
 
27
.x-tree-node-collapsed .x-tree-node-icon {
 
28
        background-image: url(../icons/tree/folder.gif);
 
29
}
 
30
.x-tree-node-expanded .x-tree-node-icon {
 
31
        background-image: url(../icons/tree/folder-open.gif);
 
32
}
 
33
.x-tree-node-leaf .x-tree-node-icon {
 
34
        background-image: url(../icons/tree/folder.gif);
 
35
}
 
36
.x-tree-lines .x-tree-elbow {
 
37
        background-image: url(../icons/tree/elbow.gif);
 
38
}
 
39
.x-tree-lines .x-tree-elbow-plus {
 
40
        background-image: url(../icons/tree/elbow-plus.gif);
 
41
}
 
42
.x-tree-lines .x-tree-elbow-minus {
 
43
        background-image: url(../icons/tree/elbow-minus.gif);
 
44
}
 
45
.x-tree-lines .x-tree-elbow-end {
 
46
        background-image: url(../icons/tree/elbow-end.gif);
 
47
}
 
48
.x-tree-lines .x-tree-elbow-end-plus {
 
49
        background-image: url(../icons/tree/elbow-end-plus.gif);
 
50
}
 
51
.x-tree-lines .x-tree-elbow-end-minus {
 
52
        background-image: url(../icons/tree/elbow-end-minus.gif);
 
53
}
 
54
.x-tree-lines .x-tree-elbow-line {
 
55
        background-image: url(../icons/tree/elbow-line.gif);
 
56
}
 
57
.x-tree-no-lines .x-tree-elbow-plus {
 
58
        background-image: url(../icons/tree/elbow-plus-nl.gif);
 
59
}
 
60
.x-tree-no-lines .x-tree-elbow-minus {
 
61
        background-image: url(../icons/tree/elbow-minus-nl.gif);
 
62
 
63
.x-tree-no-lines .x-tree-elbow-end {
 
64
        background: transparent;
 
65
}
 
66
.x-tree-no-lines .x-tree-elbow-end-plus {
 
67
        background-image: url(../icons/tree/elbow-end-plus-nl.gif);
 
68
}
 
69
.x-tree-no-lines .x-tree-elbow-end-minus {
 
70
        background-image: url(../icons/tree/elbow-end-minus-nl.gif);
 
71
}
 
72
.x-tree-node div.x-tree-drag-insert-below {
 
73
        border-bottom: 1px dotted #82D773;
 
74
}
 
75
.x-tree-node div.x-tree-drag-insert-above {
 
76
        border-top: 1px dotted #82D773;
 
77
}
 
78
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a {
 
79
        border-bottom: 2px solid #82D773;
 
80
}
 
81
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a {
 
82
        border-top: 2px solid #82D773;
 
83
}
 
84
.x-tree-node .x-tree-selected a span {
 
85
        background: #666666;
 
86
        color: white;
 
87
}
 
88
 
 
89
/* Invisible folders / leafs */ 
 
90
.x-tree-node-leaf img.invisibleLeaf { 
 
91
        background-image:url(../icons/tree/invisible_leaf.gif); 
 
92
 
93
.x-tree-node-collapsed img.invisibleFolder { 
 
94
        background-image:url(../icons/tree/invisible_folder.gif); 
 
95
 
96
.x-tree-node-expanded img.invisibleFolder { 
 
97
        background-image:url(../images/tree/invisible_folder-open.gif); 
 
98