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:
-rw-r--r--config/global.ini.php1
-rw-r--r--plugins/Dashboard/stylesheets/dashboard.css9
-rw-r--r--plugins/PleineLune/PleineLune.php39
-rw-r--r--plugins/PleineLune/lang/en.php14
-rw-r--r--plugins/PleineLune/stylesheets/theme.css9
-rw-r--r--plugins/Zeitgeist/stylesheets/common.css1
-rw-r--r--plugins/Zeitgeist/stylesheets/styles.css2
7 files changed, 64 insertions, 11 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 10d71efd31..14f8f17fd1 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -517,6 +517,7 @@ Plugins[] = ExamplePlugin
Plugins[] = ExampleRssWidget
Plugins[] = Provider
Plugins[] = Feedback
+Plugins[] = PleineLune
Plugins[] = Login
Plugins[] = UsersManager
diff --git a/plugins/Dashboard/stylesheets/dashboard.css b/plugins/Dashboard/stylesheets/dashboard.css
index c370a252d0..a60ca32947 100644
--- a/plugins/Dashboard/stylesheets/dashboard.css
+++ b/plugins/Dashboard/stylesheets/dashboard.css
@@ -46,10 +46,6 @@
width: 25%;
}
-.sortable {
- background: white;
-}
-
.hover {
border: 2px dashed #E3E3E3;
}
@@ -62,8 +58,6 @@
border-radius: 4px;
font-size: 14px;
border-radius: 4px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
}
.widgetHover {
@@ -77,7 +71,6 @@
.widgetContent.loading {
opacity: 0.5;
- filter: Alpha(opacity:50);
background: url(../../../plugins/Zeitgeist/images/loading-blue.gif) no-repeat top right;
}
@@ -90,8 +83,6 @@
.widgetTop {
background: #b5b0a7 url(../../../plugins/Zeitgeist/images/dashboard_h_bg.png) repeat-x 0 0;
border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- -webkit-border-radius: 4px 4px 0 0;
width: 100%;
cursor: move;
font-size: 10pt;
diff --git a/plugins/PleineLune/PleineLune.php b/plugins/PleineLune/PleineLune.php
new file mode 100644
index 0000000000..2863557779
--- /dev/null
+++ b/plugins/PleineLune/PleineLune.php
@@ -0,0 +1,39 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ * @category Piwik_Plugins
+ * @package Piwik_PleineLune
+ */
+
+/**
+ *
+ * @package Piwik_PleineLune
+ */
+class Piwik_PleineLune extends Piwik_Plugin
+{
+ public function getInformation()
+ {
+ return array(
+ 'description' => Piwik_Translate('PleineLune_PluginDescription'),
+ 'author' => 'Piwik',
+ 'author_homepage' => 'http://piwik.org/',
+ 'version' => Piwik_Version::VERSION,
+ );
+ }
+
+ public function getListHooksRegistered()
+ {
+ return array(
+ 'AssetManager.getCssFiles' => 'getCssFiles',
+ );
+ }
+
+ public function getCssFiles(&$cssFiles)
+ {
+ $cssFiles[] = "plugins/PleineLune/stylesheets/theme.css";
+ }
+}
diff --git a/plugins/PleineLune/lang/en.php b/plugins/PleineLune/lang/en.php
new file mode 100644
index 0000000000..389c5466a3
--- /dev/null
+++ b/plugins/PleineLune/lang/en.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ * @category Piwik_Plugins
+ * @package Piwik_ExamplePlugin
+ */
+
+$translations = array(
+ 'PleineLune_PluginDescription' => 'A dark theme for your Piwik instance.',
+);
diff --git a/plugins/PleineLune/stylesheets/theme.css b/plugins/PleineLune/stylesheets/theme.css
new file mode 100644
index 0000000000..974d9700da
--- /dev/null
+++ b/plugins/PleineLune/stylesheets/theme.css
@@ -0,0 +1,9 @@
+body {
+ color: #67E750;
+ background-color: #141414;
+}
+
+a {
+ color: #59867D;
+}
+
diff --git a/plugins/Zeitgeist/stylesheets/common.css b/plugins/Zeitgeist/stylesheets/common.css
index 917045d71e..e827ca7eaf 100644
--- a/plugins/Zeitgeist/stylesheets/common.css
+++ b/plugins/Zeitgeist/stylesheets/common.css
@@ -436,7 +436,6 @@ a {
#topLeftBar,
#topRightBar {
- background-color: #FFF;
font-size: 13px;
margin-bottom: 4px;
float: left;
diff --git a/plugins/Zeitgeist/stylesheets/styles.css b/plugins/Zeitgeist/stylesheets/styles.css
index 0b92f8b160..ee5643800f 100644
--- a/plugins/Zeitgeist/stylesheets/styles.css
+++ b/plugins/Zeitgeist/stylesheets/styles.css
@@ -14,7 +14,7 @@
}
#languageSelection .ui-autocomplete-input {
- background:#FFF url(../images/sortdesc.png) no-repeat right center!important;
+ background: transparent url(../images/sortdesc.png) no-repeat right center!important;
padding: 2px 18px 2px 4px;
color:#255792!important;
text-decoration: none;