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:
authorsgiehl <stefangiehl@gmail.com>2012-05-19 01:18:03 +0400
committersgiehl <stefangiehl@gmail.com>2012-05-19 01:18:03 +0400
commit51641fdc5c1841af4c84b1010aa183ae960be2f3 (patch)
tree656af171edc305f99b0960b873d67ad220062f9c /plugins
parentd838d79dbaa1b90aff7a4d4c142781f3077ade97 (diff)
optimized several css statements
git-svn-id: http://dev.piwik.org/svn/trunk@6272 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreHome/templates/datatable.css4
-rw-r--r--plugins/CoreUpdater/templates/update_welcome.tpl5
-rw-r--r--plugins/Installation/templates/install.css5
-rw-r--r--plugins/Live/templates/visitorLog.tpl9
-rw-r--r--plugins/Login/templates/login.css3
-rw-r--r--plugins/MultiSites/templates/styles.css4
6 files changed, 11 insertions, 19 deletions
diff --git a/plugins/CoreHome/templates/datatable.css b/plugins/CoreHome/templates/datatable.css
index 743657a269..1ceac6f8a1 100644
--- a/plugins/CoreHome/templates/datatable.css
+++ b/plugins/CoreHome/templates/datatable.css
@@ -146,9 +146,7 @@ table.dataTable td.columnodd {
}
table.dataTable td.labeleven {
- background: #F9FAFA;
- background-image: url(images/bullet2.gif);
- background-repeat: no-repeat;
+ background: #F9FAFA url(images/bullet2.gif) no-repeat;
}
table.dataTable td.labelodd {
diff --git a/plugins/CoreUpdater/templates/update_welcome.tpl b/plugins/CoreUpdater/templates/update_welcome.tpl
index ad7be091e1..410266e9d7 100644
--- a/plugins/CoreUpdater/templates/update_welcome.tpl
+++ b/plugins/CoreUpdater/templates/update_welcome.tpl
@@ -84,9 +84,8 @@
<style type="text/css">
code {
background-color:#F0F7FF;
- border-color:#00008B;
- border-style:dashed dashed dashed solid;
- border-width:1px 1px 1px 5px;
+ border: 1px dashed #00008B;
+ border-left: 5px solid;
direction:ltr;
display:block;
margin:2px 2px 20px;
diff --git a/plugins/Installation/templates/install.css b/plugins/Installation/templates/install.css
index 93590cd488..7b90120b22 100644
--- a/plugins/Installation/templates/install.css
+++ b/plugins/Installation/templates/install.css
@@ -146,9 +146,8 @@ p.nextStep a {
}
td {
- border-color:#FFFFFF rgb(198, 205, 216) rgb(198, 205, 216) rgb(198, 205, 216) ;
- border-style:solid;
- border-width:1px;
+ border: 1px solid rgb(198, 205, 216);
+ border-top-color: #FFF;
color:#203276;
padding:0.5em 0.5em 0.5em 0.8em;
}
diff --git a/plugins/Live/templates/visitorLog.tpl b/plugins/Live/templates/visitorLog.tpl
index 74f1fb71df..046ca13ccf 100644
--- a/plugins/Live/templates/visitorLog.tpl
+++ b/plugins/Live/templates/visitorLog.tpl
@@ -293,15 +293,14 @@
{literal}
<style type="text/css">
- hr {
+hr {
background:none repeat scroll 0 0 transparent;
- border-color:-moz-use-text-color -moz-use-text-color #EEEEEE;
- border-style:none none solid;
- border-width:0 0 1px;
+ border: 0 none -moz-use-text-color;
+ border-bottom: 1px solid #EEEEEE;
color:#CCCCCC;
margin:0 2em 0.5em;
padding:0 0 0.5em;
- }
+}
</style>
{/literal}
diff --git a/plugins/Login/templates/login.css b/plugins/Login/templates/login.css
index 48e1f80f87..1123898e87 100644
--- a/plugins/Login/templates/login.css
+++ b/plugins/Login/templates/login.css
@@ -53,8 +53,7 @@ form p {
#login {
width: 292px;
- margin: 7em auto;
- margin-top: 20px;
+ margin: 20px auto 7em;
}
#login_error,.message {
diff --git a/plugins/MultiSites/templates/styles.css b/plugins/MultiSites/templates/styles.css
index de3d76528f..d7695d8970 100644
--- a/plugins/MultiSites/templates/styles.css
+++ b/plugins/MultiSites/templates/styles.css
@@ -11,9 +11,7 @@
font-size:15px;
}
.indicator {
- background-image: url("../images/loading-blue.gif");
- background-position: center;
- background-repeat: no-repeat;
+ background: url("../images/loading-blue.gif") no-repeat center;
height: 20px;
width: 60px;
margin: auto;