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

marketplace.less « stylesheets « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd6442a9d20003b6e3f1cb6511cca61a8330ee33 (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
.marketplace {
    .plugin-search {
        float: right;

        input, button {
            height: 41px;
            margin-bottom: 0;
        }
        button {
            font-size: inherit !important; // because the default Piwik button style is crazy
        }
    }

    .marketplace-max-width {
        max-width: 980px;
    }

    .plugin {
        text-align: center;
        .description {
            @line-height: 18px;
            line-height: @line-height;
            height: @line-height * 3; // 3 lines of text
            padding-bottom: 0;
            margin-bottom: 10px;
            .more {
                text-decoration: underline;
                color: @theme-color-text;
            }
        }
        img.preview {
            max-width: 250px;
            width: 100%;
        }
        .metadata {
            color: @color-silver-l50;
            font-size: 95%;
            margin: 15px 15px 10px;
            list-style: none;
            li {
                text-overflow: ellipsis;
                overflow-x: hidden;
                white-space: nowrap;
                line-height: 18px;
            }
            .update-available {
                // Code taken from Bootstrap's labels
                font-weight: bold;
                background-color: #f0ad4e;
                display: inline;
                padding: .2em .6em .3em;
                font-size: 76%;
                line-height: 1;
                color: #fff;
                text-align: center;
                white-space: nowrap;
                vertical-align: baseline;
                border-radius: 0.25em;
                text-decoration: none;
            }
        }
        .panel-footer {
            padding: 12px 40px;
        }
    }

    .footer-message {
        margin-top:30px;
        font-style: italic;
    }
}

#installPluginByUpload {
    .description {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .startUpload {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}