source: Dev/trunk/client/qed/css/LESS/questionEditor.less @ 424

Last change on this file since 424 was 403, checked in by tjcschipper, 13 years ago
  • Switched to LESS for stylesheets. Most of the conversion is done, it's only (predictably) the color system that is giving trouble. Plan for next week: get rid of the inherit stuff, just use proper color classes.

-> Use only a minimal .*colorName* .bg/.text class combination that doesn't inherit. Do anything more complicated than that in a page-specific stylesheet.

File size: 687 bytes
Line 
1#rft {
2        &.claro {
3
4                .dojoxTitleGroup {
5                        .dijitTitlePane {
6                                .noMargin;
7
8                                .dijitTitlePaneTitle {
9                                        .flatShading;
10                                        .noMargin;
11                                        background-color: @orange;
12                                        border: none;
13                                        padding: 0 @std_offset;
14                                        height: @std_height;
15
16                                        &.dijitTitlePaneTitleHover,
17                                        &.dijitTitlePaneTitleFocused {
18                                                background-color: @orange_light;
19                                        }
20
21                                }
22
23                                .dijitTitlePaneTextNode {
24                                        color: @text;
25                                        font-size: @font_size;
26                                        line-height: @std_height;
27                                }
28
29                                .dijitTitlePaneContentOuter {
30                                        background-color: @base1;
31                                        border: none;
32                                }
33
34                                .dijitTitlePaneTitleFocus {
35                                        .noMargin;
36                                }
37                        }
38
39
40                }
41
42        }
43}
Note: See TracBrowser for help on using the repository browser.