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

CssWithURLs.css « stylesheets « AssetManager « Unit « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d40a341a58f4817f4924e9545dd4af00caaa9730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
h1 {
    color: orange;
    text-align: center;
    /* url relative to root: must not be rewritten*/
    background: url(tests/PHPUnit/Unit/AssetManager/stylesheets/images/test-image.png);
}

p {
    font-size: 20px;
    /* url relative to file: must be rewritten*/
    background: url(images/test-image.png);
    height: calc(100% + 45px);
}