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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Unit/AssetManager/stylesheets/ExpectedMergeResult.css')
-rw-r--r--tests/PHPUnit/Unit/AssetManager/stylesheets/ExpectedMergeResult.css34
1 files changed, 17 insertions, 17 deletions
diff --git a/tests/PHPUnit/Unit/AssetManager/stylesheets/ExpectedMergeResult.css b/tests/PHPUnit/Unit/AssetManager/stylesheets/ExpectedMergeResult.css
index 12acb9937c..903190bb02 100644
--- a/tests/PHPUnit/Unit/AssetManager/stylesheets/ExpectedMergeResult.css
+++ b/tests/PHPUnit/Unit/AssetManager/stylesheets/ExpectedMergeResult.css
@@ -1,30 +1,30 @@
/* compile_me_once={{{CACHE-BUSTER-JS}}} */
/* Piwik CSS file is compiled with Less. You may be interested in writing a custom Theme for Piwik! */
-#page #header {
- color: white;
-}
-#footer {
- color: red;
-}
+#page #header { color:white; }
+#footer { color:red; }
.box {
- color: #fe33ac;
- border-color: #fdcdea;
+ color:#fe33ac;
+ border-color:#fdcdea;
}
.box div {
- -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
- -moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
- box-shadow: 0 0 5px rgba(0,0,0,0.3);
+ -webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);
+ -moz-box-shadow:0 0 5px rgba(0,0,0,0.3);
+ box-shadow:0 0 5px rgba(0,0,0,0.3);
}
h1 {
- color: orange;
- text-align: center;
- background: url(tests/PHPUnit/Unit/AssetManager/stylesheets/images/test-image.png);
+ 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;
- background: url(tests/PHPUnit/Unit/AssetManager/stylesheets/images/test-image.png);
+ font-size: 20px;
+ /* url relative to file: must be rewritten*/
+ background: url(tests/PHPUnit/Unit/AssetManager/stylesheets/images/test-image.png);
+ height: calc(100% + 45px);
}
body {
- background-color: #b0c4de;
+ background-color:#b0c4de;
}
/* customization via event */ \ No newline at end of file