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
path: root/themes
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-12-24 20:14:35 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-12-24 20:14:35 +0300
commit61fd945f630be9f81256de18c61b63cba8c518ae (patch)
tree383c3ad9a3bd6faf9c2209809724310a355e0f5f /themes
parent72588f19bd9684d9b4ea2f2b291b014bf8b42b87 (diff)
- adding CacheFile for caching data used in Tracker/* code
- adding form to add / edit a Goal - fixing line ending to Unix
Diffstat (limited to 'themes')
-rw-r--r--themes/default/common.css41
-rw-r--r--themes/default/common.js1
-rwxr-xr-xthemes/default/genericForm.tpl2
3 files changed, 42 insertions, 2 deletions
diff --git a/themes/default/common.css b/themes/default/common.css
index ead4c1d439..bbc6505903 100644
--- a/themes/default/common.css
+++ b/themes/default/common.css
@@ -151,3 +151,44 @@ a {
opacity:0.95;
}
+
+.tableForm {
+ cellspacing:0;
+}
+.tableForm td {
+ border-color:#FFFFFF rgb(198, 205, 216) rgb(198, 205, 216) rgb(198, 205, 216) ;
+ border-style:solid;
+ padding:0.5em 0.5em 0.5em 0.8em;
+ border-width:10px 1px 1px 1px;
+ color:#203276;
+}
+.tableForm input {
+ font-size:1.1em;
+ border-color:#CCCCCC rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
+ border-width:1px;
+ color:#3A2B16;
+ padding:0.15em;
+}
+.tableForm .submit {
+ text-align:center;
+}
+.submit input{
+ margin-top:15px;
+ background:transparent url(./images/background-submit.png) repeat scroll 0%;
+ font-size:1.4em;
+ border-color:#CCCCCC rgb(153, 153, 153) rgb(153, 153, 153) rgb(204, 204, 204);
+ border-style:double;
+ border-width:3px;
+ color:#333333;
+ padding:0.15em;
+}
+
+#ajaxError {
+ color: red;
+ text-align: center;
+ font-weight: bold;
+ width: 550px;
+ border: 3px solid red;
+ margin: 10px;
+ padding: 10px;
+} \ No newline at end of file
diff --git a/themes/default/common.js b/themes/default/common.js
index 04753a8a0a..d0d2611c7c 100644
--- a/themes/default/common.js
+++ b/themes/default/common.js
@@ -1,4 +1,3 @@
-
function findSWFGraph(name) {
if (navigator.appName.indexOf("Microsoft")!= -1) {
return window[name];
diff --git a/themes/default/genericForm.tpl b/themes/default/genericForm.tpl
index bad53cea86..1084e7fce5 100755
--- a/themes/default/genericForm.tpl
+++ b/themes/default/genericForm.tpl
@@ -51,4 +51,4 @@
{$form_data.submit.html}
</div>
-</form> \ No newline at end of file
+</form>