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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-05-27 19:26:18 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-05-27 19:26:18 +0300
commit7974635631db3adf2ee60351b2e19d01c68e26fc (patch)
tree1b2d9529890c54e20b32d1262e20f067b1f5b384 /plugins/Dashboard
parent808b351c35908527fd4c9095e6642d1a33d90d01 (diff)
Removed the .box-shadow mixins as they are useless and broken (break compiling to CSS)
They are useless since box-shadow is supported in all browsers except IE 8 (in which using a prefix doesn't help anyway).
Diffstat (limited to 'plugins/Dashboard')
-rw-r--r--plugins/Dashboard/stylesheets/widget.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dashboard/stylesheets/widget.less b/plugins/Dashboard/stylesheets/widget.less
index aa7d618ae2..3590004a72 100644
--- a/plugins/Dashboard/stylesheets/widget.less
+++ b/plugins/Dashboard/stylesheets/widget.less
@@ -3,7 +3,7 @@
background: @theme-color-background-base;
border: 1px solid @color-silver-l85;
.border-radius();
- .box-shadow-1(0 1px 1px rgba(204,204,204,.5));
+ box-shadow: 0 1px 1px rgba(204,204,204,.5);
overflow: hidden;
z-index: 1;