source: Dev/trunk/client/qed/css/widgets/Selector.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.2 KB
Line 
1//Variables
2
3#rft.claro .rftSelector {
4
5    @indicatorWidth: 8px;
6    @colorConflict: #ff0000;
7    @colorPending: #ff8000;
8    @colorSuccess: #00ff00;
9
10    .noOffset;
11    margin: @std_offset;
12
13    .rftLineWithActions {
14        .noOffset;
15    }
16
17    .rftSelectorSelected {
18        // Operation indicator styling
19        .rftSelectorIndicator {
20            .noOffset;
21            float: left;
22            width: @indicatorWidth;
23            height: @std_height;
24            background-color: #bedead;
25
26            &.conflict {
27                background-color: @colorConflict;
28            }
29            &.pending {
30                background-color: @colorPending;
31            }
32            &.success {
33                background-color: @colorSuccess;
34            }
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}
Note: See TracBrowser for help on using the repository browser.