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

Last change on this file since 424 was 412, checked in by tjcschipper, 13 years ago
  • Most visual bugs are gone now.
File size: 1.0 KB
Line 
1//Variables
2@indicatorWidth: 8px;
3@colorConflict: #ff0000;
4@colorPending: #ff8000;
5@colorSuccess: #00ff00;
6
7#rft {
8        &.claro {
9               
10                .rftSelector {
11                        .noOffset;
12                        margin: @std_offset;
13
14                        .rftLineWithActions {
15                                .noOffset;
16                        }
17
18                        .rftSelectorSelected {
19                                // Operation indicator styling
20                                .rftSelectorIndicator {
21                                        .noOffset;
22                                        float: left;
23                                        width: @indicatorWidth;
24                                        height: @std_height;
25                                        background-color: #bedead;
26
27                                        &.conflict {
28                                                background-color: @colorConflict;
29                                        }
30                                        &.pending {
31                                                background-color: @colorPending;
32                                        }
33                                        &.success {
34                                                background-color: @colorSuccess;
35                                        }
36                                }
37                        }
38                        // Set dropdown background and text color to black on white
39                        .rftSelectorOptions, .rftSelectorSelected {
40
41                                .rftLineWithActions {
42                                        background-color: @text;
43                                        color: @darkest;
44                                }
45                        }
46
47                        .rftSelectorOptions {
48                                .rftLineWithActions {
49                                        .rftInlineButton {
50                                                .rftIcon {
51                                                        .setIcon (16px, black);
52                                                }
53                                        }
54                                }
55                        }
56                }
57        }
58}
Note: See TracBrowser for help on using the repository browser.