123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /* BorderContainer */
- .tundra .dijitBorderContainer {
- background-color: #fcfcfc;
- padding: 5px;
- }
- .tundra .dijitSplitContainer-child,
- .tundra .dijitBorderContainer-child {
- /* By default put borders on all children of BorderContainer,
- * to give illusion of borders on the splitters themselves.
- */
- border: 1px #ccc solid;
- }
- .tundra .dijitBorderContainer-dijitTabContainerTop,
- .tundra .dijitBorderContainer-dijitTabContainerBottom,
- .tundra .dijitBorderContainer-dijitTabContainerLeft,
- .tundra .dijitBorderContainer-dijitTabContainerRight {
- /* except that TabContainer defines borders on it's sub-nodes (tablist and dijitTabPaneWrapper),
- * so override rule setting border on domNode
- */
- border: none;
- }
- .tundra .dijitBorderContainer-dijitBorderContainer {
- /* also, make nested BorderContainers look like a single big widget with lots of splitters */
- border: none;
- padding: 0;
- }
- .tundra .dijitSplitterH,
- .tundra .dijitGutterH {
- background:#fcfcfc;
- border:0;
- height:5px;
- }
- .tundra .dijitSplitterH .dijitSplitterThumb {
- background:#B0B0B0 none;
- height:1px;
- top:2px;
- width:19px;
- }
- .tundra .dijitSplitterV,
- .tundra .dijitGutterV {
- background:#fcfcfc;
- border:0;
- width:5px;
- }
- .tundra .dijitSplitterV .dijitSplitterThumb {
- background:#B0B0B0 none;
- height:19px;
- left:2px;
- width:1px;
- }
- /* active splitter */
- .tundra .dijitSplitterActive {
- font-size: 1px;
- background-image: none;
- background-color: #aaa;
- -moz-opacity: 0.6;
- opacity: 0.6;
- filter: Alpha(Opacity=60);
- margin: 0;
- }
|