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:
authorThomas ZILLIOX <thomas@zilliox.me>2013-08-12 00:45:38 +0400
committerThomas ZILLIOX <thomas@zilliox.me>2013-08-12 00:45:38 +0400
commit366ea23c4309a924d628bf3b92db33ca5fa34565 (patch)
treea5e646a89e46de4b87348514ca0083f8209a5a9c /plugins/PleineLune
parentdf462fe71fc7baa7256e6b965d513e26d5dd4660 (diff)
Theme calendar of the period selector for PleineLune
Diffstat (limited to 'plugins/PleineLune')
-rw-r--r--plugins/PleineLune/stylesheets/_general.less1
-rw-r--r--plugins/PleineLune/stylesheets/controls/_periodSelect.less41
2 files changed, 42 insertions, 0 deletions
diff --git a/plugins/PleineLune/stylesheets/_general.less b/plugins/PleineLune/stylesheets/_general.less
index 089f49f0dc..98f7f7960e 100644
--- a/plugins/PleineLune/stylesheets/_general.less
+++ b/plugins/PleineLune/stylesheets/_general.less
@@ -26,4 +26,5 @@ select,
background: @theme-color-background-lighter;
border: 0 none;
color: @theme-color-background-smallContrast;
+ border-radius: 0;
} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/controls/_periodSelect.less b/plugins/PleineLune/stylesheets/controls/_periodSelect.less
index 60a89dffe5..c2dd7bdc76 100644
--- a/plugins/PleineLune/stylesheets/controls/_periodSelect.less
+++ b/plugins/PleineLune/stylesheets/controls/_periodSelect.less
@@ -31,4 +31,45 @@
#periodString label:hover {
color: @theme-color-text-focus;
+}
+
+/* Calendar */
+.ui-datepicker,
+.ui-widget-header {
+ border: 0 !important;
+}
+
+.ui-widget-content {
+ background: @theme-color-background-base !important;
+}
+
+.ui-datepicker-header,
+.ui-datepicker th,
+.ui-datepicker th.ui-datepicker-week-end {
+ background: @theme-color-background-smallContrast !important;
+ color: @theme-color-text-base !important;
+}
+.ui-state-default,
+.ui-widget-content .ui-state-default,
+.ui-widget-header .ui-state-default,
+.ui-datepicker td.ui-datepicker-week-end .ui-state-default {
+ background: @theme-color-background-base !important;
+ color: @theme-color-text-base !important;
+ border: 1px solid transparent !important;
+}
+
+.ui-datepicker td.ui-datepicker-current-period a.ui-state-default,
+td .ui-state-active,
+.ui-datepicker td.ui-datepicker-current-period a.ui-state-active,
+.ui-datepicker td.ui-datepicker-week-end .ui-state-active,
+.ui-datepicker td.ui-datepicker-other-month.ui-datepicker-current-period {
+ background: @theme-color-text-active !important;
+ color: @theme-color-background-smallContrast !important;
+ border: 1px solid transparent !important;
+}
+
+.ui-datepicker td .ui-state-hover,
+.ui-datepicker .ui-datepicker td.ui-datepicker-current-period a.ui-state-hover,
+.ui-datepicker td.ui-datepicker-week-end .ui-state-hover {
+ background: @theme-color-text-focus !important;
} \ No newline at end of file