Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / static / im / cloudbar / cloudbar.less @ 02717631

History | View | Annotate | Download (2.5 kB)

1
@import "less/variables.less";
2
@import "less/mixins.less";
3

    
4
@toolbarBg: #222;
5
@toolbarColor: darken(@white, 10%);
6
@toolbarHeight: 30px;
7

    
8
.servicesbar {
9

    
10
    // mini reset
11
    ol, ul { list-style:none; margin:0; padding:0;}
12
    li {margin:0; padding:0;}
13
    font-family: arial, sans-serif !important;
14
    font-size: 13px !important;
15
    line-height: 13px;
16
    letter-spacing: 0px;
17
    .clearfix();
18
    color: #ccc;
19
    z-index: 1000;
20
    border-bottom: 1px solid #444;
21

    
22
    background-color: darken(@toolbarBg, 40%);
23

    
24
    a {
25
        border: none !important;
26
        font-family: arial, sans-serif !important;
27
        font-size: 13px !important;
28
        color: @toolbarColor;    
29
        text-decoration: none;
30
        display: block;
31
        float: left;
32
        padding: 11px;
33
        height: 13px;
34
        &:hover {
35
            background-color: #444;
36
        }
37
        &.active {
38
            font-weight: bold;
39
            font-size: 13px !important;
40
            background-color: #333;
41
        }
42

    
43
        img {
44
            border: none;
45
            margin: 1px;
46
            margin-bottom: 2px;
47
        }
48
    }
49

    
50
    .services {
51
        .clearfix();
52

    
53
        a {
54
            font-size: 13px !important;
55
            font-weight: bold;
56
            color: #ccc;
57

    
58
            &.active {
59
                font-size: 13px !important;    
60
                color: @white !important;
61
            }
62
            &:hover {
63
                background-color: #444;
64
            }
65
        }
66
    }    
67

    
68
    position: relative;
69

    
70
    .profile {
71
        margin-top: -35px;
72
        .clearfix();
73
        text-align: right;
74
        min-width: 200px;
75
        width: 200px;
76

    
77
        .user {
78
            &> a {
79
                font-weight: bold !important;
80
                font-size: 12px !important;
81
            }    
82

    
83
            &.active {
84
                background-color: #333;
85
            }
86
        }
87
        a {
88
                    float: none;
89
        }
90
        ul {
91
            display: none;    
92
            li {
93
                width: 100%;
94
                border-bottom: 1px solid #444;
95
                background-color: #333;
96
                a {
97
                    float: none;
98
                    display: block;
99
                }
100
            }
101
        }
102
        &:hover, &.hover {
103
            background-color: #222;
104
            ul {
105
                display: block;    
106
            }
107
        }
108
        background-color: @black;
109
        .clearfix();
110
        position: absolute;
111
        right: 0;
112
        float: right;    
113
    }
114
}