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:
Diffstat (limited to 'themes/default/common.css')
-rw-r--r--themes/default/common.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/themes/default/common.css b/themes/default/common.css
index 353a9ab503..d2123e4753 100644
--- a/themes/default/common.css
+++ b/themes/default/common.css
@@ -45,6 +45,8 @@ body {
}
a {
color: #0F1B2E;
+ text-decoration:underline;
+ cursor:pointer;
}
#loadingPiwik {
@@ -135,3 +137,60 @@ a {
color: #000000;
margin-bottom: 0px;
}
+#tooltip h3 {
+ font-weight:none;
+ font-size:1em;
+ color:#162540;
+ margin:0;
+ padding:0;
+}
+#tooltip {
+ position: absolute;
+ z-index: 3000;
+ border: 1px solid #111;
+ padding:7px;
+ background-color:#F5F7FF;
+ 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