source: Dev/trunk/src/qed-client/css/widgets/LineWithActions.less @ 443

Last change on this file since 443 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.7 KB
Line 
1@dndBorderSize: 6px;
2
3#rft.claro {
4
5    .rftLineWithActions {
6        .flatShading();
7        position: relative;
8        height: @std_height;
9        white-space: nowrap;
10        margin: @std_offset 0;
11        color: @text;
12        .bgColor("blue");
13
14        &.dojoDndItem {
15            .transition;
16
17            &.dojoDndItemBefore {
18                margin-top: @dndBorderSize;
19                border-top: @dndBorderSize solid @text;
20            }
21            &.dojoDndItemAfter {
22                margin-bottom: @dndBorderSize;
23                border-bottom: @dndBorderSize solid @text;
24            }
25            &.dojoDndItemover, &.dojoDndItemAnchor {
26                background-image: none;
27                border: none;
28                padding: 2px;
29                background-color: fade(#fff, 10%);    // Not sure if this will work.
30                // This is an attempt to lighten the rftLWA's colour by overlaying with transparent white.
31            }
32        }
33
34        .rftLineWithActionsTitle {
35            float: left;
36            margin: 0 8px;
37            overflow: hidden;
38            white-space: nowrap;
39            word-wrap: break-word;
40            line-height: 24px;
41        }
42
43        .rftLineWithActionsButtons {
44            .noOffset();
45            line-height: @std_height;
46            height: @std_height;
47            position: absolute;
48            right: 0;
49            float: left;
50        }
51    }
52
53    // Make the currently lineWithActions draggable "wipe out" when dragging, so only the Avatar is visible!
54    .dojoDndSourceMoved {
55        .rftLineWithActions.dojoDndItemAnchor {
56            height: 0;
57        }
58    }   
59}
Note: See TracBrowser for help on using the repository browser.