source: Dev/trunk/src/qed-client/css/widgets/Selector.less @ 447

Last change on this file since 447 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: 1.3 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        &.dojoDndItem.dojoDndItemAnchor {
16            background-color: @text;
17        }
18    }
19
20    .rftSelectorSelected {
21        // Operation indicator styling
22        .rftSelectorIndicator {
23            .noOffset;
24            float: left;
25            width: @indicatorWidth;
26            height: @std_height;
27            background-color: #bedead;
28
29            &.conflict {
30                background-color: @colorConflict;
31            }
32            &.pending {
33                background-color: @colorPending;
34            }
35            &.success {
36                background-color: @colorSuccess;
37            }
38        }
39    }
40
41    // Set dropdown background and text color to black on white
42    .rftSelectorOptions, .rftSelectorSelected {
43
44        .rftLineWithActions {
45            background-color: @text;
46            color: @darkest;
47        }
48    }
49
50    .rftSelectorOptions {
51        .rftLineWithActions {
52            .rftInlineButton {
53                .rftIcon {
54                    .setIcon (16px, black);
55                }
56            }
57        }
58    }
59}
Note: See TracBrowser for help on using the repository browser.