Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.6 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

    
55
            &.with-icon {
56
                margin: 0 !important;
57
                padding: 0 !important;
58
                width: 35px;
59
                height: 35px;
60
            }
61

    
62
            font-size: 13px !important;
63
            font-weight: bold;
64
            color: #ccc;
65

    
66
            &.active {
67
                font-size: 13px !important;    
68
                color: @white !important;
69
            }
70
            &:hover {
71
                background-color: #444;
72
            }
73
        }
74
    }    
75

    
76
    position: relative;
77

    
78
    .profile {
79
        margin-top: -35px;
80
        .clearfix();
81
        text-align: right;
82
        min-width: 200px;
83
        width: 200px;
84

    
85
        .user {
86
            &> a {
87
                font-weight: bold !important;
88
                font-size: 12px !important;
89
            }    
90

    
91
            &.active {
92
                background-color: #333;
93
            }
94
        }
95
        a {
96
                    float: none;
97
        }
98
        ul {
99
            display: none;    
100
            li {
101
                width: 100%;
102
                border-bottom: 1px solid #444;
103
                background-color: #333;
104
                a {
105
                    float: none;
106
                    display: block;
107
                }
108
            }
109
        }
110
        &:hover, &.hover {
111
            background-color: #222;
112
            ul {
113
                display: block;    
114
            }
115
        }
116
        background-color: @black;
117
        .clearfix();
118
        position: absolute;
119
        right: 0;
120
        float: right;    
121
    }
122
}