source: Dev/trunk/client/qed/css/dijit/ContentPane.less @ 437

Last change on this file since 437 was 432, checked in by hendrikvanantwerpen, 12 years ago

Split up and re-organized LESS. Not sure how it all works yet though.

File size: 1.4 KB
Line 
1#rft.claro {
2
3    .dijitBorderContainer, .dijitContentPane, .dijitTabContainer, .dijitTabPaneWrapper {
4            background: transparent;
5            border: none;
6    }           
7
8    .dijitContentPane.page {
9            .noOffset;
10    }
11
12    .dijitContentPane.content {
13            .noOffset;
14            display: block;
15            clear: both;
16            background-color: @base2;
17            background-image: -webkit-gradient(
18                    50% 50%,
19                    circle,
20                    #666666 1%,
21                    #444444 100%
22                    );
23            -moz-background-image: gradient(
24                    50% 50%,
25                    circle,
26                    #666666 1%,
27                    #444444 100%
28                    );
29            -o-background-image: gradient(
30                    50% 50%,
31                    circle,
32                    #666666 1%,
33                    #444444 100%
34                    );
35            -ms-background-image: gradient(
36                    50% 50%,
37                    circle,
38                    #666666 1%,
39                    #444444 100%
40                    );
41            background-image: gradient(
42                    50% 50%,
43                    circle,
44                    #666666 1%,
45                    #444444 100%
46                    );
47
48            .dijitBorderContainer {
49                    padding: @std_offset;
50            }
51    }
52}
Note: See TracBrowser for help on using the repository browser.