update Piwik to version 2.16 (fixes #91)
This commit is contained in:
parent
296343bf3b
commit
d885a4baa9
5833 changed files with 418860 additions and 226988 deletions
|
|
@ -0,0 +1,68 @@
|
|||
|
||||
.ui-state-highlight {
|
||||
border-color: @color-silver-l80 !important;
|
||||
background: @color-silver-l95 !important;
|
||||
.ui-icon {
|
||||
background-image: url('plugins/Morpheus/images/info.png');
|
||||
background-position: 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.adminTable {
|
||||
td {
|
||||
padding: 2px 0;
|
||||
}
|
||||
label {
|
||||
cursor: pointer;
|
||||
min-height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.sites_autocomplete {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.adminTable a {
|
||||
color: @theme-color-link;
|
||||
}
|
||||
|
||||
.admin .adminTable a {
|
||||
color: @theme-color-text;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.admin .adminTable .ui-inline-help a {
|
||||
color: @theme-color-link;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.addRowSite,
|
||||
.addrow {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.addrow:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.addrow {
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.addRowSite {
|
||||
display: inline-block;
|
||||
margin: 5px 0;
|
||||
text-decoration: none !important;
|
||||
&:before {
|
||||
content: url(plugins/Morpheus/images/add.png) !important;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
}
|
||||
|
||||
#geoipdb-screen1>div>p {
|
||||
line-height: 1.4em;
|
||||
height: 6em;
|
||||
}
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
/* reset style */
|
||||
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-size: 100%;
|
||||
vertical-align: baseline;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
abbr {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1.33;
|
||||
background-color: white;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
/* remember to define focus styles! */
|
||||
:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
/* remember to highlight inserts somehow! */
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* start piwik styles */
|
||||
body {
|
||||
font-family: @theme-fontFamily-base;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #255792;
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#root {
|
||||
margin: 0 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Make sure the scroll bar is always displayed so the content does not shift when reloading menu with/without scrollbar */
|
||||
html {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
135
www/analytics/plugins/Morpheus/stylesheets/general/_form.less
Normal file
135
www/analytics/plugins/Morpheus/stylesheets/general/_form.less
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
.submit {
|
||||
clear: both;
|
||||
font-size: 18px;
|
||||
border: 0;
|
||||
float: right;
|
||||
margin: 12px 0 10px 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* on admin screen, Save button aligned on the left */
|
||||
.admin .submit {
|
||||
margin-left: 0px;
|
||||
margin-top: 20px;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.admin .entityContainer .submit {
|
||||
margin: 0;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.entityContainer .link_but {
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
margin: 0 10px 0 0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.entityContainer .link_but img {
|
||||
white-space: nowrap;
|
||||
margin: 0 1px 0 0 !important;
|
||||
}
|
||||
|
||||
.entityAddContainer .entityTable th, #entityEditContainer .entityTable th, #entityEditContainer .entityTable td {
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
|
||||
.entityAddContainer .entityTable tr td.first {
|
||||
font-weight: bold;
|
||||
vertical-align: top !important;
|
||||
}
|
||||
|
||||
.entityAddContainer tr:hover {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
/* Add / Edit / List entities */
|
||||
.entityContainer {
|
||||
width: 100%;
|
||||
max-width: 850px;
|
||||
min-width: 600px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.entityInlineHelp {
|
||||
color: #9B9B9B;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
table.entityTable {
|
||||
thead {
|
||||
tr {
|
||||
th {
|
||||
background-color: @color-silver-l98 !important;
|
||||
text-align: left !important;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tr {
|
||||
td {
|
||||
padding:10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.entityTable tr td.first, .entityTable tr th.first {
|
||||
border-left: 0 !important;
|
||||
vertical-align: top !important;
|
||||
}
|
||||
|
||||
.entityTable tr th {
|
||||
white-space: nowrap;
|
||||
padding: 16px 10px !important;
|
||||
}
|
||||
|
||||
.entityTable tr td, .entityTable tr th {
|
||||
border-bottom: 0 !important;
|
||||
}
|
||||
|
||||
table.entityTable tr td a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.entityTable tr.highlighted td {
|
||||
background-color: #ECF9DD;
|
||||
}
|
||||
|
||||
/* cancel button below Forms */
|
||||
.entityCancel {
|
||||
padding: 10px 0;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* List with grey arrows on left */
|
||||
.entityList ul.listCircle {
|
||||
font-weight: normal;
|
||||
list-style: none;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.entityList ul li {
|
||||
background: @theme-color-background-base url(plugins/Morpheus/images/li_dbl_gray.gif) no-repeat 6px 10px;
|
||||
padding: 0 0 0 21px;
|
||||
line-height: 22px;
|
||||
}
|
||||
|
||||
.entityList ul li .dimension {
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
}
|
||||
|
||||
.entityList ul li.activeDimension .dimension {
|
||||
font-weight: bold;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.entityList ul.listCircle li a {
|
||||
color: #000;
|
||||
}
|
||||
491
www/analytics/plugins/Morpheus/stylesheets/general/_forms.less
Normal file
491
www/analytics/plugins/Morpheus/stylesheets/general/_forms.less
Normal file
|
|
@ -0,0 +1,491 @@
|
|||
form {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
label {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input:not([type="checkbox"]):not([type="submit"]):not([type="button"]), select, textarea {
|
||||
border: 1px solid #d4d4d4;
|
||||
font-size: 14px;
|
||||
color: @theme-color-text-lighter;
|
||||
.border-radius(2px);
|
||||
margin-left: 0;
|
||||
padding: 10px 12px;
|
||||
min-height: 20px;
|
||||
.box-sizing(border-box);
|
||||
background: @theme-color-background-base;
|
||||
}
|
||||
input:not([type="checkbox"]):not([type="submit"]):not([type="button"]), textarea {
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
||||
}
|
||||
input[disabled] {
|
||||
background: #F5F5F5 none !important;
|
||||
}
|
||||
|
||||
select {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: @theme-color-background-base;
|
||||
background-image: url("plugins/Morpheus/images/select_arrow.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: right center;
|
||||
padding-right: 30px;
|
||||
}
|
||||
// This class/mixin allows to restore the native style of selects when needed
|
||||
.native-select {
|
||||
-webkit-appearance: menulist;
|
||||
-moz-appearance: menulist;
|
||||
appearance: menulist;
|
||||
padding: 4px 4px;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
.clearfix();
|
||||
|
||||
label {
|
||||
display: block;
|
||||
margin: 8px 0 6px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
width: 40%;
|
||||
}
|
||||
input, select, textarea {
|
||||
display: block;
|
||||
width: 40%;
|
||||
}
|
||||
.input-group {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.radio, .checkbox {
|
||||
font-size: 12px;
|
||||
width: 40%;
|
||||
text-transform: none;
|
||||
line-height: 20px;
|
||||
margin: 7px 0 2px;
|
||||
input[type="checkbox"], input[type="radio"] {
|
||||
display: inline;
|
||||
width: auto;
|
||||
}
|
||||
// Quickform adds a label automatically so we have to remove its formatting
|
||||
// TODO remove when we get rid of Quickform
|
||||
label {
|
||||
text-transform: none;
|
||||
display: inline;
|
||||
width: auto;
|
||||
font-size: inherit;
|
||||
}
|
||||
.form-description {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
.form-help {
|
||||
float: right;
|
||||
width: 58%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
label .form-description {
|
||||
display: inline;
|
||||
&:before {
|
||||
content: '(';
|
||||
}
|
||||
&:after {
|
||||
content: ')';
|
||||
}
|
||||
}
|
||||
|
||||
.form-description {
|
||||
width: 40%;
|
||||
display: block;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.sites_autocomplete {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
// TODO Form helps are used outside of forms in UserCountry (old table layout)
|
||||
// Once this plugin uses the new form layout, move those rules back into ".form-group .form-help"
|
||||
.form-help {
|
||||
.alert;
|
||||
.alert-info;
|
||||
// Smaller padding to match input's heights
|
||||
padding: 11px 20px 10px;
|
||||
&:before {
|
||||
// Remove the icon
|
||||
content: "";
|
||||
}
|
||||
}
|
||||
|
||||
.form-description {
|
||||
color: @theme-color-text-lighter;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.add-cors-host,
|
||||
.submit {
|
||||
.btn;
|
||||
}
|
||||
|
||||
.top_bar_sites_selector {
|
||||
z-index: 143;
|
||||
.sites_autocomplete .custom_select {
|
||||
z-index: 139;
|
||||
}
|
||||
}
|
||||
|
||||
.sites_autocomplete {
|
||||
input {
|
||||
min-height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.ajaxError {
|
||||
background: @theme-color-brand;
|
||||
color: #fff;
|
||||
border: 0px;
|
||||
.border-radius(6px);
|
||||
padding: 20px 25px;
|
||||
text-align: center;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.limitSelection {
|
||||
> ul {
|
||||
position: relative;
|
||||
top: -6px;
|
||||
}
|
||||
> div {
|
||||
.border-radius(2px);
|
||||
background-color: @theme-color-background-base;
|
||||
.font-default(10px, 12px);
|
||||
background: none;
|
||||
padding: 2px 14px 2px 1px;
|
||||
span {
|
||||
position: relative;
|
||||
background: none;
|
||||
color: @theme-color-text;
|
||||
display: block;
|
||||
padding-right: 3px;
|
||||
&:after {
|
||||
content: '';
|
||||
border-left: 4px solid transparent;
|
||||
border-right: 4px solid transparent;
|
||||
border-top: 5px solid @theme-color-brand;
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: -9px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
color: @theme-color-text;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
&.visible {
|
||||
> div {
|
||||
background-image: none;
|
||||
> span:after {
|
||||
content: '';
|
||||
border-left: 4px solid transparent;
|
||||
border-right: 4px solid transparent;
|
||||
border-bottom: 5px solid @theme-color-brand;
|
||||
border-top-color: transparent;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: -9px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//checkboxes and radio
|
||||
.form-radio, .form-checkbox {
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.form-radio, .form-checkbox {
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
float: left;
|
||||
cursor: pointer;
|
||||
background: url('plugins/Morpheus/images/forms-sprite.png');
|
||||
margin: 2px 5px 2px 0;
|
||||
}
|
||||
|
||||
.form-radio.disabled {
|
||||
background-position: 15px -16px;
|
||||
}
|
||||
|
||||
.form-checkbox.disabled {
|
||||
background-position: 15px 0px;
|
||||
}
|
||||
|
||||
.form-radio + label, .form-checkbox + label {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
|
||||
+ .form-description {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
+ br, + .form-description + br {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
+ .form-radio, + .form-checkbox {
|
||||
margin-left: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset > .form-radio + label { // assumes <br/> after the label
|
||||
display: inline-block;
|
||||
margin-bottom: -.5em;
|
||||
}
|
||||
|
||||
label {
|
||||
&.hover,
|
||||
&:hover {
|
||||
border: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.form-radio {
|
||||
background-position: 0 -16px;
|
||||
|
||||
&.form-hover {
|
||||
background-position: -60px -16px;
|
||||
}
|
||||
|
||||
&.checked {
|
||||
background-position: -30px -16px;
|
||||
&.form-hover {
|
||||
background-position: -90px -16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-checkbox {
|
||||
background-position: 0 0;
|
||||
|
||||
&.form-hover {
|
||||
background-position: -60px 0;
|
||||
}
|
||||
|
||||
&.checked {
|
||||
background-position: -30px 0;
|
||||
&.form-hover {
|
||||
background-position: -90px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.prettycheckbox a:focus, .prettyradio a:focus {
|
||||
outline: 0 none;
|
||||
}
|
||||
.prettycheckbox label, .prettyradio label {
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.prettycheckbox a.disabled, .prettycheckbox label.disabled, .prettyradio a.disabled, .prettyradio label.disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.prettycheckbox a {
|
||||
background-position: 0 0;
|
||||
}
|
||||
.prettycheckbox a:focus {
|
||||
background-position: -15px 0;
|
||||
}
|
||||
.prettycheckbox a.checked {
|
||||
background-position: -38px 0;
|
||||
}
|
||||
.prettycheckbox a.checked:focus {
|
||||
background-position: -53px 0;
|
||||
}
|
||||
.prettycheckbox a.checked.disabled {
|
||||
background-position: -99px 0;
|
||||
}
|
||||
.prettycheckbox a.disabled {
|
||||
background-position: -76px 0;
|
||||
}
|
||||
.prettyradio a {
|
||||
background-position: -129px 0;
|
||||
}
|
||||
.prettyradio a:focus {
|
||||
background-position: -144px 0;
|
||||
}
|
||||
.prettyradio a.checked {
|
||||
background-position: -167px 0;
|
||||
}
|
||||
.prettyradio a.checked:focus {
|
||||
background-position: -182px 0;
|
||||
}
|
||||
.prettyradio a.checked.disabled {
|
||||
background-position: -228px 0;
|
||||
}
|
||||
.prettyradio a.disabled {
|
||||
background-position: -205px 0;
|
||||
}
|
||||
|
||||
// specific form control overrides (for iCheck)
|
||||
.indented-radio-button {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.listReports > li:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.listReports {
|
||||
.form-radio + label, .form-checkbox + label {
|
||||
width: 250px;
|
||||
}
|
||||
}
|
||||
|
||||
// Bootstrap input groups
|
||||
// --------------------------------------------------
|
||||
.input-group {
|
||||
position: relative; // For dropdowns
|
||||
display: table;
|
||||
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
|
||||
|
||||
// Undo padding and float of grid classes
|
||||
&[class*="col-"] {
|
||||
float: none;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
input {
|
||||
// Ensure that the input is always above the *appended* addon button for
|
||||
// proper border colors.
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
|
||||
// IE9 fubars the placeholder attribute in text inputs and the arrows on
|
||||
// select elements in input groups. To fix it, we float the input. Details:
|
||||
// https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
|
||||
float: left;
|
||||
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
// Display as table-cell
|
||||
.input-group-addon,
|
||||
.input-group-btn,
|
||||
.input-group input {
|
||||
display: table-cell;
|
||||
|
||||
&:not(:first-child):not(:last-child) {
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
// Addon and addon wrapper for buttons
|
||||
.input-group-addon,
|
||||
.input-group-btn {
|
||||
width: 1%;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle; // Match the inputs
|
||||
}
|
||||
// Text input groups
|
||||
.input-group-addon {
|
||||
padding: 6px 12px;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: @theme-color-text-lighter;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
background-color: @theme-color-background-base;
|
||||
border: 1px solid #d4d4d4;
|
||||
border-radius: 2px;
|
||||
// Nuke default margins from checkboxes and radios to vertically center within.
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Reset rounded corners
|
||||
.input-group input:first-child,
|
||||
.input-group-addon:first-child,
|
||||
.input-group-btn:first-child > .btn,
|
||||
.input-group-btn:first-child > .btn-group > .btn,
|
||||
.input-group-btn:first-child > .dropdown-toggle,
|
||||
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
||||
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
||||
border-bottom-right-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
.input-group-addon:first-child {
|
||||
border-right: 0;
|
||||
}
|
||||
.input-group input:last-child,
|
||||
.input-group-addon:last-child,
|
||||
.input-group-btn:last-child > .btn,
|
||||
.input-group-btn:last-child > .btn-group > .btn,
|
||||
.input-group-btn:last-child > .dropdown-toggle,
|
||||
.input-group-btn:first-child > .btn:not(:first-child),
|
||||
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-left-radius: 0;
|
||||
}
|
||||
.input-group-addon:last-child {
|
||||
border-left: 0;
|
||||
}
|
||||
// Button input groups
|
||||
.input-group-btn {
|
||||
position: relative;
|
||||
// Jankily prevent input button groups from wrapping with `white-space` and
|
||||
// `font-size` in combination with `inline-block` on buttons.
|
||||
font-size: 0;
|
||||
white-space: nowrap;
|
||||
|
||||
// Negative margin for spacing, position for bringing hovered/focused/actived
|
||||
// element above the siblings.
|
||||
> .btn {
|
||||
position: relative;
|
||||
+ .btn {
|
||||
margin-left: -1px;
|
||||
}
|
||||
// Bring the "active" button to the front
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
|
||||
// Negative margin to only have a 1px border between the two
|
||||
&:first-child {
|
||||
> .btn,
|
||||
> .btn-group {
|
||||
margin-right: -1px;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
> .btn,
|
||||
> .btn-group {
|
||||
z-index: 2;
|
||||
margin-left: -1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,283 @@
|
|||
/* jQuery Tooltip */
|
||||
#tooltip h3 {
|
||||
font-weight: normal;
|
||||
font-size: .85em;
|
||||
font-style: italic;
|
||||
color: #162540;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#tooltip {
|
||||
position: absolute;
|
||||
z-index: 3000;
|
||||
border: 1px solid #E4E2D7 /*#111*/;
|
||||
padding: 5px 7px 5px 7px;
|
||||
background-color: #F5F7FF;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
/* jQuery Ajax */
|
||||
.ajaxError {
|
||||
color: red;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
width: 550px;
|
||||
border: 3px solid red;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
border-radius: 9px;
|
||||
}
|
||||
|
||||
.ajaxSuccess {
|
||||
font-size: 14px;
|
||||
margin: 10px;
|
||||
padding: 15px;
|
||||
color: #301901;
|
||||
display: inline-block;
|
||||
background-color: #ffffe0;
|
||||
border: 1px solid #e6db55;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* extending the jquery UI css, for visitor Log popover */
|
||||
.ui-widget .dataTable {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* for inline help */
|
||||
.ui-widget {
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.ui-inline-help {
|
||||
display: inline-block;
|
||||
background-color: #f4f8fa;
|
||||
margin: 0px;
|
||||
font-size: 12px;
|
||||
padding: 20px;
|
||||
color: #3a87ad;
|
||||
opacity: 1.0;
|
||||
border-left: 1px solid #bce8f1;
|
||||
text-align: justify;
|
||||
line-height: 1.3em;
|
||||
max-width: 550px;
|
||||
}
|
||||
|
||||
div.ui-state-highlight {
|
||||
border-color: #545903;
|
||||
background-color: #FFFFD6;
|
||||
}
|
||||
|
||||
.ui-datepicker {
|
||||
border: 1px solid #fff !important;
|
||||
border-radius: 0 !important;
|
||||
font-size: 11px !important;
|
||||
padding: 0 !important;
|
||||
width: 160px !important;
|
||||
}
|
||||
|
||||
.ui-datepicker-header {
|
||||
color: #fff !important;
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
.ui-datepicker select {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-datepicker-header .ui-icon-circle-triangle-w,
|
||||
.ui-datepicker-header .ui-icon-circle-triangle-e {
|
||||
content: " \25BC";
|
||||
font-size: 1px;
|
||||
color: @theme-color-brand;
|
||||
border-top: 4px solid rgba(0, 0, 0, 0);
|
||||
border-bottom: 4px solid rgba(0, 0, 0, 0);
|
||||
border-left: 5px solid @theme-color-brand;
|
||||
margin-left: 7px;
|
||||
display: inline-block;
|
||||
vertical-align: sub;
|
||||
background: none !important;
|
||||
height: auto;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.ui-datepicker-header .ui-icon-circle-triangle-w {
|
||||
border-left: 0px;
|
||||
border-right: 5px solid @theme-color-brand;
|
||||
}
|
||||
|
||||
.ui-datepicker-prev {
|
||||
background: none !important;
|
||||
left: 5px !important;
|
||||
top: 3px !important;
|
||||
}
|
||||
.ui-datepicker-next {
|
||||
background: none !important;
|
||||
right: 2px !important;
|
||||
top: 3px !important;
|
||||
}
|
||||
|
||||
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
|
||||
margin-left: -5px;
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
.ui-datepicker .ui-datepicker-next-hover,
|
||||
.ui-datepicker .ui-datepicker-prev-hover {
|
||||
background: none !important;
|
||||
border-color: #f1f0eb !important;
|
||||
}
|
||||
|
||||
.ui-datepicker table {
|
||||
font-size: 11px !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.ui-datepicker th {
|
||||
color: #887f71 !important;
|
||||
font-weight: normal !important;
|
||||
background: #f1f0eb !important;
|
||||
padding: 3px 0 !important;
|
||||
}
|
||||
|
||||
.ui-datepicker th.ui-datepicker-week-end {
|
||||
background: #d4d0c7 !important;
|
||||
}
|
||||
|
||||
.ui-datepicker td {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.ui-state-default {
|
||||
border: 1px solid #f2f6f9 !important;
|
||||
border-right: 0 !important;
|
||||
background: @theme-color-background-base !important;
|
||||
color: #000 !important;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.ui-datepicker td.ui-datepicker-week-end .ui-state-default {
|
||||
background: #f6f6f6 !important;
|
||||
}
|
||||
|
||||
.ui-datepicker td.ui-datepicker-current-period a.ui-state-default, td .ui-state-active, .ui-datepicker td.ui-datepicker-current-period a.ui-state-active, .ui-datepicker td.ui-datepicker-week-end .ui-state-active, .ui-datepicker td.ui-datepicker-other-month.ui-datepicker-current-period {
|
||||
border-color: #887f71 !important;
|
||||
background: #887f71 !important;
|
||||
color: #fff !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
.ui-datepicker td .ui-state-hover, .ui-datepicker td .ui-state-hover:hover, .ui-datepicker .ui-datepicker td.ui-datepicker-current-period a.ui-state-hover, .ui-datepicker td.ui-datepicker-week-end .ui-state-hover {
|
||||
background: #e5e3e0 !important;
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
.ui-datepicker td .ui-state-active.ui-state-hover {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
td.ui-datepicker-other-month.ui-state-hover {
|
||||
background: #e5e3e0 !important;
|
||||
color: #000 !important;
|
||||
opacity: 1 !important;
|
||||
border-style: none;
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
.ui-datepicker select.ui-datepicker-month {
|
||||
width: 46%;
|
||||
}
|
||||
.ui-datepicker select.ui-datepicker-year {
|
||||
width: 54%;
|
||||
}
|
||||
.ui-datepicker-month:disabled {
|
||||
border-color: #ccc !important;
|
||||
background: #f5f3f0 !important;
|
||||
}
|
||||
|
||||
/* Piwik jQuery UI Tooltips */
|
||||
|
||||
.ui-tooltip {
|
||||
position: absolute;
|
||||
z-index: 2000;
|
||||
text-align: left;
|
||||
background: #f7f7f7;
|
||||
color: @theme-color-text-light;
|
||||
font-size: 12px;
|
||||
font-weight: normal;
|
||||
border: 1px solid #e4e5e4;
|
||||
padding: 5px 10px 6px 10px;
|
||||
border-radius: 4px;
|
||||
-moz-box-shadow: 1px 1px 2px @theme-color-text-lighter;
|
||||
-webkit-box-shadow: 1px 1px 2px @theme-color-text-lighter;
|
||||
box-shadow: 1px 1px 2px @theme-color-text-lighter;
|
||||
overflow: hidden;
|
||||
max-width: 600px;
|
||||
min-width: 50px;
|
||||
line-height: 14px;
|
||||
left: -28000px;
|
||||
top: -28000px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ui-tooltip h3 {
|
||||
font-weight: bold;
|
||||
color: #7E7363;
|
||||
}
|
||||
|
||||
.ui-tooltip h3 {
|
||||
font-size: 12px;
|
||||
margin: 0 0 2px 0;
|
||||
line-height: 14px;
|
||||
}
|
||||
|
||||
body .ui-tooltip.small {
|
||||
font-size: 11px;
|
||||
padding: 3px 5px 3px 6px;
|
||||
}
|
||||
|
||||
/* Popover */
|
||||
|
||||
.ui-dialog .ui-widget-header {
|
||||
background: none;
|
||||
border: 0;
|
||||
font: bold 18px @theme-fontFamily-base;
|
||||
color: #7e7363;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar-help {
|
||||
position: absolute;
|
||||
right: 33px;
|
||||
top: 50%;
|
||||
width: 16px;
|
||||
margin: -8px 0 0 0;
|
||||
padding: 0;
|
||||
height: 16px;
|
||||
background: url(plugins/Morpheus/images/help.png);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ui-dialog ~ .ui-dialog {
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
|
||||
.ui-dialog-titlebar .ui-icon-closethick {
|
||||
font-family: 'piwik';
|
||||
font-weight: bold;
|
||||
|
||||
/* Better Font Rendering =========== */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
font-size:8px;
|
||||
background-image: none !important;
|
||||
text-indent: 0px !important;
|
||||
opacity: 1 !important;
|
||||
color:@theme-color-brand-contrast;
|
||||
|
||||
&:before{
|
||||
content:"\e60a";
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
#topApiRef {
|
||||
color: #95AECB;
|
||||
}
|
||||
|
||||
.section-toggler-link {
|
||||
font-size: .8em;
|
||||
font-style: italic;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.section-toggler-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.metricEvolution {
|
||||
display: inline-block;
|
||||
font-size: 9pt;
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
.metricEvolution > .positive-evolution {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.metricEvolution > .negative-evolution {
|
||||
color: #e02a3b;
|
||||
}
|
||||
|
||||
.reportsByDimensionView > .entityList {
|
||||
float: left;
|
||||
width: 220px;
|
||||
min-height: 450px;
|
||||
}
|
||||
|
||||
.dimensionCategory {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
h1, h2, h3, h4, h5 {
|
||||
font-family: @theme-fontFamily-base;
|
||||
}
|
||||
|
||||
a {
|
||||
color: @theme-color-link;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
h2 {
|
||||
color: @theme-color-text;
|
||||
}
|
||||
|
||||
.datatableRelatedReports {
|
||||
color: @theme-color-text-lighter;
|
||||
}
|
||||
|
||||
.tableIcon {
|
||||
background: none;
|
||||
padding: 2px 4px 4px 4px;
|
||||
&.activeIcon {
|
||||
background: @color-silver-l80;
|
||||
}
|
||||
}
|
||||
|
||||
.exportToFormatItems {
|
||||
background: @color-silver-l80;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 4px;
|
||||
color: #000;
|
||||
|
||||
a {
|
||||
color: @theme-color-brand !important;
|
||||
}
|
||||
}
|
||||
|
||||
.dataTableFooterActiveItem {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#topApiRef {
|
||||
color: @theme-color-text;
|
||||
}
|
||||
|
||||
.tableConfiguration div.configItem span.action {
|
||||
color: @theme-color-link;
|
||||
}
|
||||
|
||||
.dataTablePages {
|
||||
color: @theme-color-text;
|
||||
font-weight: normal;
|
||||
.font-default(10px, 12px);
|
||||
}
|
||||
|
||||
.datatableRelatedReports {
|
||||
color: #808080;
|
||||
span {
|
||||
color: @theme-color-text;
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
.dataTableSearchPattern {
|
||||
img {
|
||||
top: 7px !important
|
||||
}
|
||||
}
|
||||
|
||||
.tagCloud span, .tagCloud span a {
|
||||
color: @theme-color-link !important;
|
||||
}
|
||||
|
||||
ul.widgetpreview-widgetlist, ul.widgetpreview-categorylist {
|
||||
color: #4d4d4d;
|
||||
}
|
||||
|
||||
.dataTableRowActions {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
a {
|
||||
color: @theme-color-link;
|
||||
}
|
||||
|
||||
.Piwik_Popover_Loading_Subject {
|
||||
color: @theme-color-link !important;
|
||||
}
|
||||
|
||||
.segmentFooterNote {
|
||||
margin-top: -3px;
|
||||
font-family: @theme-fontFamily-base !important;
|
||||
a {
|
||||
color: @theme-color-link !important;
|
||||
}
|
||||
}
|
||||
|
||||
body > a.ddmetric {
|
||||
background-color: @color-gray-light !important;
|
||||
border-color: @color-gray !important;
|
||||
color: #000 !important;
|
||||
font-family: @theme-fontFamily-base !important;
|
||||
}
|
||||
|
||||
// Bootstrap classes (can be removed in the future)
|
||||
.text-left {
|
||||
text-align: left;
|
||||
}
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
.text-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
/* br clear="all" deprecated */
|
||||
br.clearAll {
|
||||
clear: both;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
font-size: 0; /*for IE*/
|
||||
}
|
||||
|
||||
br.clear,
|
||||
div.clear {
|
||||
clear: both;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* IE < 9 will use this */
|
||||
body.old-ie .ie-hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.centerLargeDiv {
|
||||
width: 850px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.center {
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue