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.css44
1 files changed, 41 insertions, 3 deletions
diff --git a/themes/default/common.css b/themes/default/common.css
index b5dcc24084..904da21c95 100644
--- a/themes/default/common.css
+++ b/themes/default/common.css
@@ -22,6 +22,9 @@ ol,ul {
blockquote,q {
quotes: none;
}
+label {
+ cursor:pointer;
+}
/* remember to define focus styles! */
:focus {
outline: 0;
@@ -33,6 +36,13 @@ ins {
del {
text-decoration: line-through;
}
+/* br clear="all" deprecated */
+br.clearAll {
+ clear: both;
+ height: 0;
+ line-height: 0;
+ font-size: px; /*for IE*/
+}
/* start piwik styles */
body {
font-family: Georgia, "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
@@ -85,6 +95,8 @@ a {
padding:5px;
font-weight:bold;
right:10px;
+ -moz-border-radius:4px;
+ -webkit-border-radius:4px;
}
#header_message, #header_message a {
color:#FF7F00;
@@ -98,7 +110,7 @@ a {
float: left;
height: 22px;
padding-left: 10px;
- width:550px; /* when this is not set, wrong display in safari/chrome? */
+ width:620px; /* when this is not set, wrong display in safari/chrome? */
}
#topLeftBar, #topRightBar {
font-family: arial, sans-serif !important;
@@ -162,7 +174,7 @@ a {
.tableForm .submit {
text-align:center;
}
-.submit input{
+input.submit {
margin-top:15px;
background:transparent url(./images/background-submit.png) repeat scroll 0%;
font-size:1.4em;
@@ -171,8 +183,9 @@ a {
border-width:3px;
color:#333;
padding:0.15em;
+ align:center;
}
-#ajaxError {
+.ajaxError {
color: red;
text-align: center;
font-weight: bold;
@@ -180,4 +193,29 @@ a {
border: 3px solid red;
margin: 10px;
padding: 10px;
+ -moz-border-radius:9px;
+ -webkit-border-radius:9px;
+}
+.ajaxSuccess {
+ padding: 20px;
+ margin:10px;
+ display: block;
+ color:#301901;
+ border: 1px solid #e6db55;
+ -moz-border-radius:3px;
+ -webkit-border-radius:3px;
+ background-color: #ffffe0;
+ padding:0 0.6em;
+ display:inline-block;
+}
+/* extending the jquery UI css for inline help */
+.ui-widget {
+ text-align:justify;
+}
+
+.ui-inline-help {
+ width:170px;
+ margin-top:20px;
+ padding:0 0.7em;
}
+