source: Dev/trunk/src/qed-client/css/widgets/BlockButton.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.2 KB
Line 
1#rft.claro .rftBlockButton {
2       
3    .flatShading;
4    .noMargin;
5    height: @button_block_height;
6    vertical-align: top;
7
8    .dijitButtonContents {
9        height: 24px;
10    }
11
12    .dijitButtonNode {
13        .flatShading;
14        .transition (0.3s);
15        line-height: @button_block_height;
16        vertical-align: top;
17        height: @button_block_height;
18        padding: 0 @std_offset;
19        border: none;
20        color: @text;
21        font-size: @button_block_font_size;
22
23        .dijitButtonText {
24            line-height: @button_block_height;
25        }
26
27        .rftIcon {
28            .setIcon(16px);
29        }
30    }
31
32    &.rftBlockButtonHover,
33    &.rftBlockButtonActive {
34        .transition (0.1s);
35        .rftIcon {
36            vertical-align: top;
37            .setIcon(16px, black);
38        }
39    }
40
41    //Disabled because this is presumably useless
42    // &.blue {
43    //     .blockButtonColorMixin ("blue");
44    // }
45    // &.green {
46    //     .blockButtonColorMixin ("green");
47    // }
48    // &.orange {
49    //     .blockButtonColorMixin ("orange");
50    // }
51    // &.red {
52    //     .blockButtonColorMixin ("red");
53    // }
54    // &.purple {
55    //     .blockButtonColorMixin ("purple");
56    // }
57
58}
Note: See TracBrowser for help on using the repository browser.