Welcome to mirror list, hosted at ThFree Co, Russian Federation.

forms.less « stylesheets « Morpheus « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35cd15b1a3f34b3ec1a8f551acccfe10be6d14f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
input, select, textarea {
    color: @brand-black;
    .border-radius(0px);
    margin-left: 0;
    padding: 8px 10px;  
    min-height: 30px;  
    .box-sizing(border-box);
    background: #fff;
}
button,
.add-trusted-host,
input[type="submit"],
button[type="button"],
.submit {
    .border-radius(3px) !important;
    background: none !important;
    background-color: #d3291f !important;
    .box-shadow(~"0 1px 1px rgba(13,13,13,.3), inset 0 -1px 0 rgba(13,13,13,.1)");
    #gradient > .vertical(rgba(255,255,255,.15), rgba(255,255,255,0)) !important;
    .font-default(12px, 16px) !important;
    color: #fff !important;;
    font-weight: normal;
    padding: 5px 15px !important;
    text-align: center;
    cursor: pointer;
    border: 0px !important;
    &:hover {
        background-color: #ff9600 !important;
    }

    em {
        font-style: normal;
    }
}

.sites_autocomplete {
    .custom_select {
        .border-radius(0px);
        background: #fff;
        .box-shadow(~"inset 1px 1px 3px #d8d8d8");
        padding: 9px 5px 7px;
        color: @silver-20;
        text-transform: uppercase;
        .font-default(10px, 12px);
        min-height: 30px;
        .box-sizing(border-box);
        a {
            color: @silver-20;
        }
        .custom_select_block {
            .custom_select_container{
                .custom_select_ul_list {
                    margin-top: 20px;
                }
            }
        }
    }
}

.ajaxError {
    background: @brand-red;
    color: #fff;
    border:0px;
    .border-radius(6px);
    padding: 20px 25px;
    text-align: center;
    font-weight: normal;
}


.sites_autocomplete--dropdown {
    .custom_select_main_link[data-loading="0"]:before {
        color: @brand-red;
        font-size: 0.7em;
        top: 2px;
        right: 5px;
        content: '';
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid @brand-red;
    }
}


.limitSelection {
    > ul {
        position: relative;
        top: -6px;
        > li {
            width: 25px;
        }
    }
    > div {
        .border-radius(2px);
        background-color: #fff;
        .font-default(10px, 12px);
        background: none;
        padding: 2px 14px 2px 1px;
        span {
            position: relative;
            background: none;
            color: @brand-black;
            display: block;
            padding-right: 3px;
            &:after {
                content: '';
                border-left: 4px solid transparent;
                border-right: 4px solid transparent;
                border-top: 5px solid @brand-red;
                position: absolute;
                top: 7px;
                right: -9px;
            }
        }
    }

    span {
        color: @brand-black;
        font-weight: normal;
    }

    &.visible {
        > div {
            background-image: none;
            > span:after {
                content: '';
                border-left: 4px solid transparent;
                border-right: 4px solid transparent;
                border-bottom: 5px solid #d4291f;
                border-top-color: transparent;
                position: absolute;
                top: 1px;
                right: -9px;
            }
        }
    }
}