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 01:55:55 +0400
committerThomas ZILLIOX <thomas@zilliox.me>2013-08-12 01:55:55 +0400
commitd34a243ba95bc49b36f452e22d6a3ef3f776f713 (patch)
tree59e1ab5fe88644edfc068eb8d2c73d92dc489e4d /plugins/PleineLune
parent42053625637e831a9ff363524e48e38cd94c5aad (diff)
Improve admin pages theming for PleineLune
Diffstat (limited to 'plugins/PleineLune')
-rw-r--r--plugins/PleineLune/stylesheets/_dataTable.less12
-rw-r--r--plugins/PleineLune/stylesheets/_general.less10
-rw-r--r--plugins/PleineLune/stylesheets/_menuAdmin.less1
-rw-r--r--plugins/PleineLune/stylesheets/plugins/_dbStats.less3
-rw-r--r--plugins/PleineLune/stylesheets/plugins/_installation.less18
-rw-r--r--plugins/PleineLune/stylesheets/plugins/_multiSites.less4
-rw-r--r--plugins/PleineLune/stylesheets/plugins/_userCountry.less3
-rw-r--r--plugins/PleineLune/stylesheets/plugins/_userManager.less7
-rw-r--r--plugins/PleineLune/stylesheets/theme.less7
9 files changed, 58 insertions, 7 deletions
diff --git a/plugins/PleineLune/stylesheets/_dataTable.less b/plugins/PleineLune/stylesheets/_dataTable.less
index c40e8454a6..59d43021a6 100644
--- a/plugins/PleineLune/stylesheets/_dataTable.less
+++ b/plugins/PleineLune/stylesheets/_dataTable.less
@@ -190,12 +190,6 @@ table.dataTable tr.subDataTable:hover > td .dataTableRowActions {
color: @theme-color-text-focus;
}
-/* MultiSites */
-#mt thead *:first-child,
-#mt thead *:last-child {
- border-radius: 0;
-}
-
/* Entity tables */
.entityTable {
border-top: 0 !important;
@@ -205,4 +199,10 @@ table.dataTable tr.subDataTable:hover > td .dataTableRowActions {
.entityTable tr td,
.entityTable tr th {
border-top: 0 !important;
+ border-bottom: 1px solid @theme-color-background-smallContrast !important;
+}
+
+.entityTable tr.highlighted td,
+.entityTable tr.highlighted:hover td {
+ background: #303030;
} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/_general.less b/plugins/PleineLune/stylesheets/_general.less
index 93793fbea8..63204429e4 100644
--- a/plugins/PleineLune/stylesheets/_general.less
+++ b/plugins/PleineLune/stylesheets/_general.less
@@ -7,6 +7,12 @@ body,
color: @theme-color-text-base;
}
+h2,
+h3,
+h4 {
+ color: @theme-color-text-active;
+}
+
.admin a,
a {
color: @theme-color-text-link;
@@ -30,6 +36,10 @@ textarea {
border-radius: 0;
}
+input[disabled] {
+ background: @theme-color-background-contrast;
+}
+
.submit {
border: 0;
border-radius: 0;
diff --git a/plugins/PleineLune/stylesheets/_menuAdmin.less b/plugins/PleineLune/stylesheets/_menuAdmin.less
index dfa4360f0b..cfaf25a3c3 100644
--- a/plugins/PleineLune/stylesheets/_menuAdmin.less
+++ b/plugins/PleineLune/stylesheets/_menuAdmin.less
@@ -1,6 +1,7 @@
#tablist {
border-color: @theme-color-box-border;
+ border-radius: 0;
}
#tablist li a:link,
diff --git a/plugins/PleineLune/stylesheets/plugins/_dbStats.less b/plugins/PleineLune/stylesheets/plugins/_dbStats.less
new file mode 100644
index 0000000000..8647c8823e
--- /dev/null
+++ b/plugins/PleineLune/stylesheets/plugins/_dbStats.less
@@ -0,0 +1,3 @@
+.adminTable.dbstatsTable a {
+ color: @theme-color-text-link;
+} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/plugins/_installation.less b/plugins/PleineLune/stylesheets/plugins/_installation.less
new file mode 100644
index 0000000000..01869a4418
--- /dev/null
+++ b/plugins/PleineLune/stylesheets/plugins/_installation.less
@@ -0,0 +1,18 @@
+#systemCheckOptional,
+#systemCheckRequired {
+ border: 1px solid @theme-color-background-smallContrast;
+ border-width: 1px 1px 0 0;
+}
+
+#systemCheckOptional tr:nth-child(2n),
+#systemCheckRequired tr:nth-child(2n),
+#systemCheckOptional tr:nth-child(2n+1),
+#systemCheckRequired tr:nth-child(2n+1) {
+ background: #141414;
+}
+
+#systemCheckOptional td,
+#systemCheckRequired td {
+ border-left: 1px solid @theme-color-background-smallContrast;
+ border-bottom: 1px solid @theme-color-background-smallContrast;
+} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/plugins/_multiSites.less b/plugins/PleineLune/stylesheets/plugins/_multiSites.less
new file mode 100644
index 0000000000..63c122b21e
--- /dev/null
+++ b/plugins/PleineLune/stylesheets/plugins/_multiSites.less
@@ -0,0 +1,4 @@
+#mt thead *:first-child,
+#mt thead *:last-child {
+ border-radius: 0;
+} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/plugins/_userCountry.less b/plugins/PleineLune/stylesheets/plugins/_userCountry.less
new file mode 100644
index 0000000000..5909a14aad
--- /dev/null
+++ b/plugins/PleineLune/stylesheets/plugins/_userCountry.less
@@ -0,0 +1,3 @@
+#geoipdb-screen1 > div > p {
+ font-size: 14px;
+} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/plugins/_userManager.less b/plugins/PleineLune/stylesheets/plugins/_userManager.less
new file mode 100644
index 0000000000..f0e76fcae2
--- /dev/null
+++ b/plugins/PleineLune/stylesheets/plugins/_userManager.less
@@ -0,0 +1,7 @@
+#users #token_auth {
+ background: transparent;
+ border-bottom: 1px solid @theme-color-background-smallContrast;
+ border-left: 1px solid @theme-color-background-smallContrast;
+ border-right: 0;
+ line-height: 1em;
+} \ No newline at end of file
diff --git a/plugins/PleineLune/stylesheets/theme.less b/plugins/PleineLune/stylesheets/theme.less
index ce456b22a4..5c83ae441c 100644
--- a/plugins/PleineLune/stylesheets/theme.less
+++ b/plugins/PleineLune/stylesheets/theme.less
@@ -34,4 +34,9 @@
@import "../../PleineLune/stylesheets/_ui.less";
@import "../../PleineLune/stylesheets/_transitionColors.less";
@import "../../PleineLune/stylesheets/_map.less";
-@import "../../PleineLune/stylesheets/plugins/_referers.less"; \ No newline at end of file
+@import "../../PleineLune/stylesheets/plugins/_multiSites.less";
+@import "../../PleineLune/stylesheets/plugins/_referers.less";
+@import "../../PleineLune/stylesheets/plugins/_userManager.less";
+@import "../../PleineLune/stylesheets/plugins/_userCountry.less";
+@import "../../PleineLune/stylesheets/plugins/_dbStats.less";
+@import "../../PleineLune/stylesheets/plugins/_installation.less"; \ No newline at end of file