cesium/Apps/Sandcastle/CesiumSandcastle.css

275 lines
4.1 KiB
CSS
Raw Permalink Normal View History

2020-04-17 08:31:36 +08:00
@import url("../../ThirdParty/dojo-release-1.10.4/dijit/themes/claro/claro.css");
2020-04-17 08:31:36 +08:00
html,
body {
height: 100%;
margin: 0;
overflow: hidden;
padding: 0;
font-family: sans-serif;
2012-05-09 00:15:22 +08:00
}
#loading {
2020-04-17 08:31:36 +08:00
display: table;
position: fixed;
width: 100%;
height: 100%;
z-index: 5000;
background: #eee;
border: none;
text-align: center;
color: #777;
2012-05-09 00:15:22 +08:00
}
#loading span {
2020-04-17 08:31:36 +08:00
display: table-cell;
vertical-align: middle;
}
#appLayout {
2020-04-17 08:31:36 +08:00
width: 100%;
height: 100%;
}
2020-04-17 08:31:36 +08:00
#toolbar,
#galleryContainer {
-ms-user-select: none;
-moz-user-select: -moz-none; /* allows for re-enabling on sub-elements like the search box */
-webkit-user-select: none;
user-select: none;
}
#search {
2020-04-17 08:31:36 +08:00
-ms-user-select: text;
-moz-user-select: text;
-webkit-user-select: text;
user-select: text;
}
.cesiumTitle {
2020-04-17 08:31:36 +08:00
float: right;
2012-07-12 04:01:46 +08:00
}
#codeContainer {
2020-04-17 08:31:36 +08:00
width: 40%;
2012-05-09 02:43:57 +08:00
}
2012-09-12 01:43:03 +08:00
#bottomPanel {
2020-04-17 08:31:36 +08:00
height: 225px;
2012-09-07 06:08:38 +08:00
}
.galleryContainer {
2020-04-17 08:31:36 +08:00
width: 100%;
}
.demosContainer {
2020-04-17 08:31:36 +08:00
overflow: auto;
background: rgba(0, 0, 0, 0.8);
2012-09-07 06:08:38 +08:00
}
.demos {
2020-04-17 08:31:36 +08:00
padding: 0 5px 5px;
white-space: nowrap;
2012-08-30 23:36:35 +08:00
}
2018-06-29 04:35:51 +08:00
.demoTileThumbnail {
2020-04-17 08:31:36 +08:00
max-height: 150px;
max-width: 225px;
height: 100px;
width: auto;
2012-09-08 02:05:53 +08:00
}
.demoTileTitle {
2020-04-17 08:31:36 +08:00
margin: 0 auto 2px auto;
font-size: 0.9em;
2012-09-08 02:05:53 +08:00
}
.demoTooltipType {
2020-04-17 08:31:36 +08:00
text-align: center;
color: #888;
margin-bottom: 5px;
padding-right: 10px;
}
2012-10-05 11:06:41 +08:00
.subInfo {
2020-04-17 08:31:36 +08:00
font-size: 11px;
}
.galleryError {
2020-04-17 08:31:36 +08:00
color: #f88;
}
#docPopup {
2020-04-17 08:31:36 +08:00
display: block;
position: absolute;
left: -999px;
top: 0;
font-family: sans-serif;
font-size: 10pt;
}
2020-04-17 08:31:36 +08:00
#docPopup a,
#docPopup a:visited {
display: block;
text-decoration: none;
line-height: 12pt;
}
2020-04-17 08:31:36 +08:00
#docPopup a:focus,
#docPopup a:hover {
text-decoration: underline;
}
.logContainer {
2020-04-17 08:31:36 +08:00
display: block;
width: 100%;
height: 100%;
overflow-x: auto;
overflow-y: scroll;
}
#logOutput {
2020-04-17 08:31:36 +08:00
white-space: pre-wrap;
padding: 2px 4px;
font-size: 9pt;
font-family: monospace;
}
.consoleError {
2020-04-17 08:31:36 +08:00
color: #f00;
}
.fullFrame {
2020-04-17 08:31:36 +08:00
border: none;
width: 100%;
height: 100%;
transition-property: transform;
transition-duration: 0.5s;
transform-origin: 200px 152px; /* These numbers should be divisible by 4 because of scaling in .makeThumbnail */
}
.makeThumbnail {
2020-04-17 08:31:36 +08:00
width: 900px;
height: 600px;
transform: scale(0.25);
}
.popDownDialog {
2020-04-17 08:31:36 +08:00
width: 360px;
}
2020-04-17 08:31:36 +08:00
a.linkButton,
a.linkButton:visited {
display: inline-block;
}
2020-04-17 08:31:36 +08:00
a.linkButton:focus,
a.linkButton:hover {
text-decoration: none;
}
2020-04-17 08:31:36 +08:00
.CodeMirror,
.CodeMirror-scroll {
height: 100%;
font-size: 13px;
}
.highlightToolbarButton {
2020-04-17 08:31:36 +08:00
background: #fe2;
border-radius: 4px;
}
.claro .bottomPanel {
2020-04-17 08:31:36 +08:00
padding: 0;
overflow: hidden;
}
2018-06-29 04:35:51 +08:00
.bottomPanel #innerPanel_tablist {
2020-04-17 08:31:36 +08:00
max-height: 28px;
overflow: auto !important;
2018-06-29 04:35:51 +08:00
}
.claro .dijitTabContainerTop-tabs .dijitTabChecked .dijitTabContent {
2020-04-17 08:31:36 +08:00
background-position: 0 -103px;
2012-05-09 02:43:57 +08:00
}
.claro .dijitTabContainerTop-dijitContentPane {
2020-04-17 08:31:36 +08:00
padding: 0;
overflow: hidden;
}
.mblScrollBarWrapper > div {
2020-04-17 08:31:36 +08:00
background-color: #9ed3ff !important;
}
.errorMarker {
2020-04-17 08:31:36 +08:00
width: 100%;
height: 100%;
color: #222;
font-weight: bold;
background-color: #f42;
border-radius: 3px;
border: none;
}
.CodeMirror pre.errorLine {
2020-04-17 08:31:36 +08:00
background: rgba(200, 50, 0, 0.2);
}
.hintMarker {
2020-04-17 08:31:36 +08:00
width: 100%;
height: 100%;
color: #222;
font-weight: bold;
background-color: #fe2;
border-radius: 3px;
border: none;
2012-07-10 05:30:32 +08:00
}
.CodeMirror pre.hintLine {
2020-04-17 08:31:36 +08:00
background: rgba(200, 200, 0, 0.2);
2012-07-10 05:30:32 +08:00
}
.highlightMarker {
2020-04-17 08:31:36 +08:00
width: 100%;
height: 100%;
color: #222;
font-weight: bold;
background-color: #2e2;
border-radius: 3px;
border: none;
}
.CodeMirror pre.highlightLine {
2020-04-17 08:31:36 +08:00
background: rgba(0, 200, 0, 0.2);
}
.searchMarker {
2020-04-17 08:31:36 +08:00
width: 100%;
height: 100%;
color: #222;
font-weight: bold;
background-color: #cef;
border-radius: 3px;
border: none;
2012-09-13 03:10:01 +08:00
}
.CodeMirror pre.searchLine {
2020-04-17 08:31:36 +08:00
background: rgba(180, 230, 240, 0.2);
2012-09-13 03:10:01 +08:00
}
.CodeMirror-gutter-text {
2020-04-17 08:31:36 +08:00
cursor: default;
}
2016-04-06 23:57:06 +08:00
.gitHubIcon {
2020-04-17 08:31:36 +08:00
background-image: url("./images/gitHub16px.png");
width: 16px;
height: 16px;
text-align: center;
2016-04-06 23:57:06 +08:00
}
.shareIcon {
2020-04-17 08:31:36 +08:00
background-image: url("./images/share16px.png");
width: 16px;
height: 16px;
text-align: center;
2016-10-20 04:53:31 +08:00
}