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

login.less « stylesheets « Login « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3acd40afd1247bd759d5e5129aeae5eeaffcc80 (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
/* LOGO
***********************/
#loginPage {

    #logo {
        padding-top: 5px;

        img.default-piwik-logo {
            width: 112px;
        }

        img {
            max-height: 30px;
        }
    }

    .message_container {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    /* LAYOUT
    ***********************/
    #loginPage a {
        text-decoration: none;
    }

    .loadingPiwik {
        float: left;
        margin-left: 16px;
    }

    /* FORM
    ***********************/

    .loginSection {
        margin-top: 32px;

        .icon.prefix {
            font-size: 1.5rem;
            width: 2.5rem;
            padding-top: 0.9rem;
        }

        .input-field {
            .prefix ~ input {
                margin-left: 2.5rem;
                width: 80% !important;
                overflow: hidden;
            }
        }
    }

    .loginSection .btn {
        margin-top: 0;
    }

    .loginSection fieldset {
        border: 0;
    }

    .loginSection .actions {
        line-height: 35px;
    }

    #login_form {
        margin-top: 16px;
    }

    #login_form_rememberme {
        vertical-align: middle;
    }

    /* FIELDS
    ***********************/

    /* MESSAGE
    ***********************/
    .message_error,
    .message {
        margin: 0 auto;
        border: 1px solid;
        padding: 12px;
    }

    .message_error {
        background-color: #ffebe8;
        border-color: #c00;
    }

    .message {
        background-color: #ffffe0;
        border-color: #e6db55;
    }

    /* NAVIGATION
    ***********************/
    #nav,
    #piwik {
        margin: 0 0 0 8px;
        padding: 16px;
    }

    #nav {
        text-align: center;
    }

    #nav a:hover {
        text-decoration: underline;
    }

    #nav a {
        color: #777;
    }

    #piwik a {
        color: #CDCDCD;
    }
}