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:54:33 +0400
committerThomas ZILLIOX <thomas@zilliox.me>2013-08-12 00:54:33 +0400
commite088e824c60747ab65926757e73c159f895e6303 (patch)
tree198c494fbeda791775dbb96d9c37243d5e3ef338 /plugins/PleineLune
parent366ea23c4309a924d628bf3b92db33ca5fa34565 (diff)
Theme the login page for PleineLune
Diffstat (limited to 'plugins/PleineLune')
-rw-r--r--plugins/PleineLune/stylesheets/_general.less12
-rw-r--r--plugins/PleineLune/stylesheets/_login.less23
-rw-r--r--plugins/PleineLune/stylesheets/theme.less1
3 files changed, 35 insertions, 1 deletions
diff --git a/plugins/PleineLune/stylesheets/_general.less b/plugins/PleineLune/stylesheets/_general.less
index 98f7f7960e..13a6bd50bf 100644
--- a/plugins/PleineLune/stylesheets/_general.less
+++ b/plugins/PleineLune/stylesheets/_general.less
@@ -24,7 +24,17 @@ a:active {
select,
[type="text"] {
background: @theme-color-background-lighter;
- border: 0 none;
color: @theme-color-background-smallContrast;
+ border: 0;
border-radius: 0;
+}
+
+.submit {
+ border: 0;
+ border-radius: 0;
+ background: @theme-color-text-active;
+}
+
+.submit:hover {
+ background: @theme-color-text-link;
} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/_login.less b/plugins/PleineLune/stylesheets/_login.less
new file mode 100644
index 0000000000..71875dd821
--- /dev/null
+++ b/plugins/PleineLune/stylesheets/_login.less
@@ -0,0 +1,23 @@
+#loginPage { /* Add some weight to the selector */
+
+ .loginSection {
+ background: @theme-color-background-base;
+ border: 1px solid @theme-color-background-contrast;
+ border-radius: 0;
+ }
+
+ .loginSection h1 {
+ color: @theme-color-text-active;
+ }
+
+ #login_form_password,
+ #reset_form_password,
+ #reset_form_password_bis,
+ #login_form_login,
+ #reset_form_login {
+ background-color: @theme-color-background-lighter;
+ border: 0;
+ border-radius: 0;
+ box-shadow: none;
+ }
+} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/theme.less b/plugins/PleineLune/stylesheets/theme.less
index 8d9aacf79a..4701be6fec 100644
--- a/plugins/PleineLune/stylesheets/theme.less
+++ b/plugins/PleineLune/stylesheets/theme.less
@@ -17,6 +17,7 @@
@import "../../PleineLune/stylesheets/_general.less";
@import "../../PleineLune/stylesheets/_layout.less";
+@import "../../PleineLune/stylesheets/_login.less";
@import "../../PleineLune/stylesheets/controls/_periodSelect.less";
@import "../../PleineLune/stylesheets/controls/_segmentSelect.less";
@import "../../PleineLune/stylesheets/controls/_widgetSelect.less";