Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Theme Panel
3
***/
4
 
5
.theme-panel {
6
    width: 420px;
7
    margin-top: -13px;
8
    margin-right: 0px;
9
    z-index: 100;
10
    float: right;
11
    position:relative;
12
 
13
    > .toggler {
14
        top:4px;
15
        right:0;
16
        padding:20px;
17
        cursor:pointer;
18
        position:absolute;
19
        background:#d5dade url(../img/icon-color.png) center no-repeat;
20
 
21
        @include border-radius($general-border-radius);
22
 
23
        &:hover {
24
            background-color: #3d3d3d !important;
25
        }
26
    }
27
 
28
    > .toggler-close {
29
        display: none;
30
        top:4px;
31
        right:0;
32
        padding:20px;
33
        z-index: 101;
34
        cursor:pointer;
35
        position:absolute;
36
        background: #3d3d3d url(../img/icon-color-close.png) center no-repeat !important;
37
 
38
        @include border-radius($general-border-radius);
39
 
40
        &:hover {
41
            background-color:#222 !important;
42
        }
43
    }
44
 
45
    > .theme-options {
46
        top:4px;
47
        right:0;
48
        display:none;
49
        position:absolute;
50
        z-index: 100;
51
        background:#3d3d3d;
52
        box-shadow: 5px 5px rgba(#3d3d3d, 0.1);
53
 
54
        @include border-radius($general-border-radius);
55
 
56
        > .theme-option {
57
            color:#cfcfcf;
58
            padding: 10px;
59
            border-top:1px solid #444;
60
            margin-top: 0px;
61
            margin-bottom: 0px;
62
 
63
            > span {
64
              text-transform:uppercase;
65
              display: inline-block;
66
              width: 145px;
67
              font-size: 13px;
68
              font-weight: 300;
69
            }
70
 
71
            > select.form-control {
72
              display: inline;
73
              width: 135px;
74
              padding: 2px;
75
              text-transform: lowercase;
76
            }
77
 
78
            &.theme-colors {
79
                border-top: 0;
80
 
81
                > span {
82
                  display: block;
83
                  width: auto;
84
                }
85
 
86
                > ul {
87
                  list-style:none;
88
                  padding: 0;
89
                  display: block;
90
                  margin-bottom: 10px !important;
91
                  margin-top: 15px;
92
 
93
                  > li {
94
                        width:40px;
95
                        height:40px;
96
                        margin:0 4px;
97
                        cursor:pointer;
98
                        list-style:none;
99
                        float: left;
100
                        border:solid 1px #707070;
101
 
102
                        &:first-child {
103
                            margin-left: 0;
104
                        }
105
 
106
                        &:hover,
107
                        &.current {
108
                            border:solid 2px #d64635;
109
                        }
110
 
111
                        /* theme colors */
112
                        &.color-default {
113
                            background: #333438;
114
                        }
115
 
116
                        &.color-darkblue {
117
                            background: #2b3643;
118
                        }
119
 
120
                        &.color-blue {
121
                            background: #2D5F8B;
122
                        }
123
 
124
                        &.color-grey {
125
                            background: #697380;
126
                        }
127
 
128
                        &.color-light {
129
                            background: #F9FAFD;
130
                        }
131
 
132
                        &.color-light2 {
133
                            background: #F1F1F1;
134
                        }
135
                    }
136
                }
137
            }
138
        }
139
    }
140
 
141
    /* content solid bg color */
142
 
143
    .page-container-bg-solid & {
144
        position: absolute;
145
        margin-top: 30px;
146
        margin-right: 20px;
147
        right: 0;
148
 
149
        > .toggler {
150
            background:#BFCAD1 url(../img/icon-color.png) center no-repeat;
151
        }
152
    }
153
 
154
    .page-container-bg-solid.page-sidebar-reversed & {
155
        margin-right: 20px + $sidebar-width;
156
    }
157
}