2014-10-21 14:45:54 +00:00
|
|
|
html, body {
|
|
|
|
|
border: 0;
|
2020-04-05 23:37:23 +00:00
|
|
|
font: 14px/21px 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-05 19:19:07 +00:00
|
|
|
background-color: #f9f9fb;
|
2014-10-21 14:45:54 +00:00
|
|
|
border: 0;
|
2020-04-05 19:19:07 +00:00
|
|
|
border-bottom: 1px solid rgba(14, 13, 26, 0.12);
|
|
|
|
|
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-05 19:19:07 +00:00
|
|
|
#dashboard-nav > span {
|
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-05 19:19:07 +00:00
|
|
|
#dashboard-nav > span > 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;
|
|
|
|
|
border-bottom: 3px solid #f9f9fb;
|
|
|
|
|
color: #20123a;
|
2014-10-21 14:45:54 +00:00
|
|
|
cursor: pointer;
|
2020-04-05 19:19:07 +00:00
|
|
|
padding: 0.5em 1.5em;
|
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:active,.tabButton:visited {
|
2020-04-05 19:19:07 +00:00
|
|
|
color: #20123a;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
|
|
|
|
.tabButton.selected {
|
2020-04-05 19:19:07 +00:00
|
|
|
border-bottom: 3px solid #592acb;
|
|
|
|
|
color: #592acb;
|
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
|
|
|
|
2018-07-18 22:00:55 +00:00
|
|
|
body:not(.canUpdateShortcuts) .tabButton[href="#shortcuts.html"] {
|
|
|
|
|
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-05 23:37:23 +00:00
|
|
|
font: 16px/24px sans-serif;
|
2020-04-05 19:19:07 +00:00
|
|
|
overflow-x: auto;
|
2014-10-21 14:45:54 +00:00
|
|
|
}
|
2020-04-05 19:19:07 +00:00
|
|
|
}
|