2014-10-21 16:45:54 +02:00
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
font: 15px httpsb,sans-serif;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#dashboard-nav {
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
#dashboard-nav-widgets {
|
|
|
|
margin: 0;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
padding: 4px 0 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
#dashboard-nav-widgets span {
|
|
|
|
padding: 0 0.5em;
|
|
|
|
font-size: larger;
|
|
|
|
}
|
|
|
|
.tabButton {
|
2015-03-20 15:36:38 +01:00
|
|
|
background-color: #eee;
|
2014-10-21 16:45:54 +02:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
color: black;
|
|
|
|
cursor: pointer;
|
2015-03-20 15:36:38 +01:00
|
|
|
display: inline-block;
|
|
|
|
font: inherit;
|
|
|
|
margin: 0;
|
|
|
|
padding: 4px;
|
|
|
|
position: relative;
|
2014-10-21 16:45:54 +02:00
|
|
|
text-decoration: none;
|
2015-03-20 15:36:38 +01:00
|
|
|
top: 1px;
|
2014-10-21 16:45:54 +02:00
|
|
|
}
|
|
|
|
.tabButton:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
.tabButton:active,.tabButton:visited {
|
|
|
|
color: inherited;
|
|
|
|
}
|
|
|
|
.tabButton.selected {
|
|
|
|
background-color: white;
|
|
|
|
border-bottom: 1px solid white;
|
|
|
|
}
|
|
|
|
iframe {
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
width: 100%;
|
2015-03-20 15:36:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
#dashboard-nav {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#dashboard-nav-widgets {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
[data-i18n="extName"] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.tabButton {
|
2015-03-20 21:24:50 +01:00
|
|
|
border-radius: 0;
|
2015-03-20 15:36:38 +01:00
|
|
|
border-top: 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.tabButton.selected {
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
}
|
2014-10-21 16:45:54 +02:00
|
|
|
}
|