Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (2.4 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
        a {
84
                    float: none;
85
        }
86
        ul {
87
            display: none;    
88
            li {
89
                width: 100%;
90
                border-bottom: 1px solid #444;
91
                background-color: #333;
92
                a {
93
                    float: none;
94
                    display: block;
95
                }
96
            }
97
        }
98
        &:hover, &.hover {
99
            background-color: #222;
100
            ul {
101
                display: block;    
102
            }
103
        }
104
        background-color: @black;
105
        .clearfix();
106
        position: absolute;
107
        right: 0;
108
        float: right;    
109
    }
110
}