2014-10-21 14:45:54 +00:00
|
|
|
html, body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2017-01-24 13:23:52 +00:00
|
|
|
@media screen and (max-device-width: 960px) {
|
|
|
|
|
#dashboard-nav {
|
|
|
|
|
zoom: 1.2;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-21 14:45:54 +00:00
|
|
|
#dashboard-nav {
|
|
|
|
|
border: 0;
|
2015-04-07 16:05:38 +00:00
|
|
|
margin: 0;
|
2014-10-21 14:45:54 +00:00
|
|
|
padding: 0;
|
|
|
|
|
top: 0;
|
2015-04-07 16:05:38 +00:00
|
|
|
width: 100%;
|
2014-10-21 14:45:54 +00:00
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
#dashboard-nav-widgets {
|
2018-03-28 13:11:55 +00:00
|
|
|
align-items: stretch;
|
|
|
|
|
background-color: white;
|
2014-10-21 14:45:54 +00:00
|
|
|
border-bottom: 1px solid #ccc;
|
2018-03-28 13:11:55 +00:00
|
|
|
display: flex;
|
|
|
|
|
margin: 0;
|
2014-10-21 14:45:54 +00:00
|
|
|
padding: 4px 0 0;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2018-03-28 13:11:55 +00:00
|
|
|
#dashboard-nav-widgets > span {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: inline-flex;
|
2014-10-21 14:45:54 +00:00
|
|
|
padding: 0 0.5em;
|
2018-03-28 13:11:55 +00:00
|
|
|
width: 1.25em;
|
|
|
|
|
}
|
|
|
|
|
#dashboard-nav-widgets > span > img {
|
|
|
|
|
width: 100%;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
|
|
|
|
.tabButton {
|
2015-03-20 14:36:38 +00:00
|
|
|
background-color: #eee;
|
2014-10-21 14:45:54 +00: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 14:36:38 +00:00
|
|
|
display: inline-block;
|
2016-11-05 18:48:42 +00:00
|
|
|
font-size: 110%;
|
2017-04-02 15:35:30 +00:00
|
|
|
margin: 0 0.2em 0 0;
|
2018-03-28 13:11:55 +00:00
|
|
|
overflow: hidden;
|
2015-03-20 14:36:38 +00:00
|
|
|
padding: 4px;
|
|
|
|
|
position: relative;
|
2014-10-21 14:45:54 +00:00
|
|
|
text-decoration: none;
|
2015-03-20 14:36:38 +00:00
|
|
|
top: 1px;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
|
|
|
|
.tabButton:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
.tabButton:active,.tabButton:visited {
|
2015-04-25 21:38:36 +00:00
|
|
|
color: inherit;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
|
|
|
|
.tabButton.selected {
|
|
|
|
|
background-color: white;
|
|
|
|
|
border-bottom: 1px solid white;
|
|
|
|
|
}
|
|
|
|
|
iframe {
|
2019-05-19 19:35:00 +00:00
|
|
|
background-color: transparent;
|
2014-10-21 14:45:54 +00:00
|
|
|
border: 0;
|
2019-05-19 19:35:00 +00:00
|
|
|
margin: 0;
|
2014-10-21 14:45:54 +00:00
|
|
|
padding: 0;
|
|
|
|
|
width: 100%;
|
2015-03-20 14:36:38 +00:00
|
|
|
}
|
2019-05-19 19:35:00 +00:00
|
|
|
#unsavedWarning {
|
|
|
|
|
box-shadow: rgba(128,128,128,0.4) 0 4px 4px;
|
|
|
|
|
display: none;
|
|
|
|
|
left: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 100%;
|
|
|
|
|
z-index: 20;
|
|
|
|
|
}
|
|
|
|
|
#unsavedWarning.on {
|
|
|
|
|
display: initial;
|
|
|
|
|
}
|
|
|
|
|
#unsavedWarning > div:first-of-type {
|
|
|
|
|
background-color: #ffffcc;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
}
|
|
|
|
|
#unsavedWarning > div:last-of-type {
|
|
|
|
|
height: 100vh;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
}
|
2015-03-20 14:36:38 +00:00
|
|
|
|
2018-07-18 22:00:55 +00:00
|
|
|
body:not(.canUpdateShortcuts) .tabButton[href="#shortcuts.html"] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 13:11:55 +00:00
|
|
|
@media (max-width: 640px) {
|
2015-03-20 14:36:38 +00:00
|
|
|
#dashboard-nav {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
#dashboard-nav-widgets {
|
2017-03-20 20:25:40 +00:00
|
|
|
padding: 1px 0 0 0;
|
2015-03-20 14:36:38 +00:00
|
|
|
}
|
2018-03-28 13:11:55 +00:00
|
|
|
.hverbose {
|
|
|
|
|
display: none !important;
|
2015-03-20 14:36:38 +00:00
|
|
|
}
|
|
|
|
|
.tabButton {
|
2018-03-28 13:11:55 +00:00
|
|
|
font-size: 90%;
|
2015-03-20 14:36:38 +00:00
|
|
|
}
|
|
|
|
|
.tabButton.selected {
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
}
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|