add piwik installation
This commit is contained in:
parent
90aa4ef157
commit
8c5d4f0c31
3197 changed files with 563902 additions and 0 deletions
131
www/analytics/plugins/CoreHome/stylesheets/menu.less
Normal file
131
www/analytics/plugins/CoreHome/stylesheets/menu.less
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
.Menu--dashboard {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList {
|
||||
line-height: 1;
|
||||
display: table; // The nav has the height og his children
|
||||
margin-bottom: -1px; // Allow tabs to merge with the submenu
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList ul {
|
||||
background: #fff; /*IE6 needs this*/
|
||||
float: left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* LEVEL1 NORMAL */
|
||||
.Menu--dashboard > .Menu-tabList > li {
|
||||
background: #f1f1f1;
|
||||
float: left;
|
||||
list-style: none;
|
||||
z-index: 49;
|
||||
margin-right: -1px;
|
||||
border: 1px solid #ddd;
|
||||
border-bottom: 0;
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList a {
|
||||
color: #444;
|
||||
font-size: 18px;
|
||||
display: block;
|
||||
float: left;
|
||||
padding: 8px 27px 0;
|
||||
height: 25px;
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* LEVEL1 HOVER */
|
||||
.Menu--dashboard > .Menu-tabList > li:hover,
|
||||
.Menu--dashboard > .Menu-tabList > li.sfHover {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList > li:hover > a,
|
||||
.Menu--dashboard > .Menu-tabList > li.sfHover > a,
|
||||
.Menu--dashboard > .Menu-tabList > li.sfActive > a,
|
||||
.Menu--dashboard > .Menu-tabList a:hover {
|
||||
color: #e87500;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList > li:hover > a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList > li.sfHover > a {
|
||||
border-bottom: 1px solid #fff;
|
||||
}
|
||||
|
||||
/* LEVEL2 NORMAL */
|
||||
.Menu--dashboard > .Menu-tabList > li > ul {
|
||||
padding: 9px 0 5px 0;
|
||||
left: 0;
|
||||
top: -999em;
|
||||
position: absolute;
|
||||
min-height: 25px;
|
||||
width: 100%;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList > li li {
|
||||
float: left;
|
||||
background: none;
|
||||
border: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList > li li > a {
|
||||
padding: 5px 15px;
|
||||
font-size: 14px;
|
||||
border: 0;
|
||||
float: none;
|
||||
display: inline-block;
|
||||
height: auto;
|
||||
background: none;
|
||||
color: #444;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* LEVEL2 HOVER */
|
||||
.Menu--dashboard > .Menu-tabList > li.sfHover > ul,
|
||||
.Menu--dashboard > .Menu-tabList > li:hover > ul {
|
||||
z-index: 1;
|
||||
top: 100%;
|
||||
opacity: 1;
|
||||
-webkit-transition: opacity 300ms ease-out 10ms; /* property duration timing-function delay */
|
||||
-moz-transition: opacity 300ms ease-out 10ms;
|
||||
-o-transition: opacity 300ms ease-out 10ms;
|
||||
transition: opacity 300ms ease-out 10ms;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList > li li:hover > a,
|
||||
.Menu--dashboard > .Menu-tabList > li li.sfHover > a {
|
||||
color: #e87500;
|
||||
}
|
||||
|
||||
.Menu--dashboard > .Menu-tabList > li li.sfHover > a {
|
||||
font-weight: bold;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
@media all and (max-width: 949px) {
|
||||
.nav {
|
||||
clear: right;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 749px) {
|
||||
.Menu--dashboard > .Menu-tabList a {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 549px) {
|
||||
.Menu--dashboard > ul.Menu-tabList > li.sfHover > a,
|
||||
.Menu--dashboard > ul.Menu-tabList > li.sfActive.sfHover > a {
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue