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: 3c1371ffb837fbd274ec22f78650645d3d52c5a3 (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
.marketplace {
    > .row {
        margin: 0 -0.75rem;
    }

    .marketplaceActions {
        margin-bottom: 0;
    }

    .plugin-search {
        position: relative;
        margin-right: 20px;
        .icon-search {
            position: absolute;
            bottom: 32px;
            right: -16px;
            font-size: 16px;
            cursor: pointer;
        }

    }

    .plugin {
        h3 {
            word-break: break-all;
        }
        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;
                font-size: 13px;
            }
            .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;
            }
        }
        .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;
    }
}