2014-10-21 14:45:54 +00:00
|
|
|
html, body {
|
|
|
|
|
border: 0;
|
2020-04-09 13:20:29 +00:00
|
|
|
font: 14px/1.5 sans-serif;
|
2020-04-05 19:19:07 +00:00
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: hidden;
|
2014-10-21 14:45:54 +00:00
|
|
|
padding: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
2017-01-24 13:23:52 +00:00
|
|
|
}
|
2014-10-21 14:45:54 +00:00
|
|
|
#dashboard-nav {
|
2020-04-11 15:32:43 +00:00
|
|
|
background-color: var(--bg-dashboard-nav);
|
2014-10-21 14:45:54 +00:00
|
|
|
border: 0;
|
2020-04-11 15:32:43 +00:00
|
|
|
border-bottom: 1px solid var(--dashboard-nav-border);
|
2020-04-05 19:19:07 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
overflow-x: hidden;
|
2014-10-21 14:45:54 +00:00
|
|
|
padding: 0;
|
2020-04-05 19:19:07 +00:00
|
|
|
position: sticky;
|
2014-10-21 14:45:54 +00:00
|
|
|
top: 0;
|
2015-04-07 16:05:38 +00:00
|
|
|
width: 100%;
|
2014-10-21 14:45:54 +00:00
|
|
|
z-index: 10;
|
|
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
#dashboard-nav .logo {
|
2018-03-28 13:11:55 +00:00
|
|
|
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;
|
|
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
#dashboard-nav .logo > img {
|
2018-03-28 13:11:55 +00:00
|
|
|
width: 100%;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
|
|
|
|
.tabButton {
|
2020-04-05 19:19:07 +00:00
|
|
|
border: 0;
|
2020-04-11 15:32:43 +00:00
|
|
|
border-bottom: 3px solid var(--bg-dashboard-nav);
|
|
|
|
|
color: var(--fg-dashboard-nav-off);
|
|
|
|
|
fill: var(--fg-dashboard-nav-off);
|
2014-10-21 14:45:54 +00:00
|
|
|
cursor: pointer;
|
2020-04-06 18:00:19 +00:00
|
|
|
padding: 0.5em 1.4em 0.3em 1.4em;
|
2014-10-21 14:45:54 +00:00
|
|
|
text-decoration: none;
|
2020-04-05 19:19:07 +00:00
|
|
|
white-space: nowrap;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
|
|
|
|
.tabButton:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
.tabButton.selected {
|
2020-04-11 15:32:43 +00:00
|
|
|
border-bottom: 3px solid var(--fg-dashboard-nav-on);
|
|
|
|
|
color: var(--fg-dashboard-nav-on);
|
|
|
|
|
fill: var(--fg-dashboard-nav-on);
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-04-09 13:20:29 +00:00
|
|
|
body:not(.canUpdateShortcuts) .tabButton[data-pane="shortcuts.html"] {
|
2018-07-18 22:00:55 +00:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-05 19:19:07 +00:00
|
|
|
@media (pointer: coarse) {
|
2015-03-20 14:36:38 +00:00
|
|
|
#dashboard-nav {
|
2020-04-05 19:19:07 +00:00
|
|
|
flex-wrap: nowrap;
|
2020-04-09 13:20:29 +00:00
|
|
|
font: 16px/1.5 sans-serif;
|
2020-04-05 19:19:07 +00:00
|
|
|
overflow-x: auto;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
2020-04-10 22:17:12 +00:00
|
|
|
#dashboard-nav .logo {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2020-04-05 19:19:07 +00:00
|
|
|
}
|