]> git.wh0rd.org Git - tt-rss.git/blob - lib/dijit/themes/tundra/layout/BorderContainer.css
add language dropdown to prefs
[tt-rss.git] / lib / dijit / themes / tundra / layout / BorderContainer.css
1 /* BorderContainer */
2
3 .tundra .dijitBorderContainer {
4         background-color: #fcfcfc;
5         padding: 5px;
6 }
7
8 .tundra .dijitSplitContainer-child,
9 .tundra .dijitBorderContainer-child {
10         /* By default put borders on all children of BorderContainer,
11          *  to give illusion of borders on the splitters themselves.
12          */
13         border: 1px #ccc solid;
14 }
15
16 .tundra .dijitBorderContainer-dijitTabContainerTop,
17 .tundra .dijitBorderContainer-dijitTabContainerBottom,
18 .tundra .dijitBorderContainer-dijitTabContainerLeft,
19 .tundra .dijitBorderContainer-dijitTabContainerRight {
20         /* except that TabContainer defines borders on it's sub-nodes (tablist and dijitTabPaneWrapper),
21          * so override rule setting border on domNode
22          */
23          border: none;
24 }
25
26 .tundra .dijitBorderContainer-dijitBorderContainer {
27         /* also, make nested BorderContainers look like a single big widget with lots of splitters */
28         border: none;
29         padding: 0;
30 }
31
32 .tundra .dijitSplitterH,
33 .tundra .dijitGutterH {
34         background:#fcfcfc;
35         border:0;
36         height:5px;
37 }
38
39 .tundra .dijitSplitterH .dijitSplitterThumb {
40         background:#B0B0B0 none;
41         height:1px;
42         top:2px;
43         width:19px;
44 }
45
46 .tundra .dijitSplitterV,
47 .tundra .dijitGutterV {
48         background:#fcfcfc;
49         border:0;
50         width:5px;
51 }
52
53 .tundra .dijitSplitterV .dijitSplitterThumb {
54         background:#B0B0B0 none;
55         height:19px;
56         left:2px;
57         width:1px;
58 }
59
60 /* active splitter */
61 .tundra .dijitSplitterActive {
62         font-size: 1px;
63         background-image: none;
64         background-color: #aaa;
65         -moz-opacity: 0.6;
66         opacity: 0.6;
67         filter: Alpha(Opacity=60);
68         margin: 0;
69 }