source: Dev/trunk/src/client/qed-client/css/dijit/TabContainer.less @ 529

Last change on this file since 529 was 443, checked in by hendrikvanantwerpen, 12 years ago

Reorganized for Node --- the SVN gods hate us all!

Lost all historical info on moved files, because SVN is a f *.

Also we have Node now, serving both the static content and forwarding
database requests.

File size: 2.1 KB
Line 
1#rft.claro {
2
3    .verticalTabList {
4            width: 190px;
5    }
6
7    .dijitTab {
8            .transition(0.2s);
9            background-color: transparent;
10            padding: @std_offset @std_offset_big;
11            color: @headers;
12            overflow: hidden;
13
14
15
16
17    }
18
19    .dijitTabContainerLeft-tabs {
20            border: none;
21            padding: @std_offset;
22
23            .dijitTab {
24                    margin: @std_offset;
25                    width: 200px;
26                    min-height: @tab_height;
27                    border: 1px solid @headers;
28
29                    .dijitTabContent {
30                            min-height: @tab_height;
31                            line-height: @tab_height;
32                            width: 190px;
33                    }
34
35                    &.dijitTabChecked {
36                            .transition (0.1s);
37                            color: @text;
38                            border: 1px solid transparent;
39
40                            &.dijitTabHover {
41                                    border: 1px solid transparent;
42                            }
43                    }
44
45                    &.dijitTabHover {
46                            .transition (0.1s);
47                            color: @text;
48                            border-color: @text;
49                    }
50
51                    &.dijitTabActive {
52                            .transition (0.1s);
53                            color: @headers;
54                    }
55            }
56
57    }
58    //Tab colour settings
59    &.blue .dijitTabChecked,
60    .blue .dijitTabChecked,
61    div.blue.dijitTabChecked {
62            .bgColor ("blue");
63    }
64    &.green .dijitTabChecked,
65    .green .dijitTabChecked,
66    div.green.dijitTabChecked {
67            .bgColor ("green");
68    }
69    &.red .dijitTabChecked,
70    .red .dijitTabChecked,
71    div.red.dijitTabChecked {
72            .bgColor ("red");
73    }
74    &.orange .dijitTabChecked,
75    .orange .dijitTabChecked,
76    div.orange.dijitTabChecked {
77            .bgColor ("orange");
78    }
79    &.purple .dijitTabChecked,
80    .purple .dijitTabChecked,
81    div.purple.dijitTabChecked {
82            .bgColor ("purple");
83    }
84
85}
Note: See TracBrowser for help on using the repository browser.