widgets.css 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271
  1. /* Source/Widgets/shared.css */
  2. .cesium-svgPath-svg {
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. overflow: hidden;
  9. }
  10. .cesium-button {
  11. display: inline-block;
  12. position: relative;
  13. background: #303336;
  14. border: 1px solid #444;
  15. color: #edffff;
  16. fill: #edffff;
  17. border-radius: 4px;
  18. padding: 5px 12px;
  19. margin: 2px 3px;
  20. cursor: pointer;
  21. overflow: hidden;
  22. -moz-user-select: none;
  23. -webkit-user-select: none;
  24. -ms-user-select: none;
  25. user-select: none;
  26. }
  27. .cesium-button:focus {
  28. color: #fff;
  29. fill: #fff;
  30. border-color: #ea4;
  31. outline: none;
  32. }
  33. .cesium-button:hover {
  34. color: #fff;
  35. fill: #fff;
  36. background: #48b;
  37. border-color: #aef;
  38. box-shadow: 0 0 8px #fff;
  39. }
  40. .cesium-button:active {
  41. color: #000;
  42. fill: #000;
  43. background: #adf;
  44. border-color: #fff;
  45. box-shadow: 0 0 8px #fff;
  46. }
  47. .cesium-button:disabled,
  48. .cesium-button-disabled,
  49. .cesium-button-disabled:focus,
  50. .cesium-button-disabled:hover,
  51. .cesium-button-disabled:active {
  52. background: #303336;
  53. border-color: #444;
  54. color: #646464;
  55. fill: #646464;
  56. box-shadow: none;
  57. cursor: default;
  58. }
  59. .cesium-button option {
  60. background-color: #000;
  61. color: #eee;
  62. }
  63. .cesium-button option:disabled {
  64. color: #777;
  65. }
  66. .cesium-button input,
  67. .cesium-button label {
  68. cursor: pointer;
  69. }
  70. .cesium-button input {
  71. vertical-align: sub;
  72. }
  73. .cesium-toolbar-button {
  74. box-sizing: border-box;
  75. width: 32px;
  76. height: 32px;
  77. border-radius: 14%;
  78. padding: 0;
  79. vertical-align: middle;
  80. z-index: 0;
  81. }
  82. .cesium-performanceDisplay-defaultContainer {
  83. position: absolute;
  84. top: 50px;
  85. right: 10px;
  86. text-align: right;
  87. }
  88. .cesium-performanceDisplay {
  89. background-color: rgba(40, 40, 40, 0.7);
  90. padding: 7px;
  91. border-radius: 5px;
  92. border: 1px solid #444;
  93. font: bold 12px sans-serif;
  94. }
  95. .cesium-performanceDisplay-fps {
  96. color: #e52;
  97. }
  98. .cesium-performanceDisplay-throttled {
  99. color: #a42;
  100. }
  101. .cesium-performanceDisplay-ms {
  102. color: #de3;
  103. }
  104. /* Source/Widgets/Animation/Animation.css */
  105. .cesium-animation-theme {
  106. visibility: hidden;
  107. display: block;
  108. position: absolute;
  109. z-index: -100;
  110. }
  111. .cesium-animation-themeNormal {
  112. color: #222;
  113. }
  114. .cesium-animation-themeHover {
  115. color: #4488b0;
  116. }
  117. .cesium-animation-themeSelect {
  118. color: #242;
  119. }
  120. .cesium-animation-themeDisabled {
  121. color: #333;
  122. }
  123. .cesium-animation-themeKnob {
  124. color: #222;
  125. }
  126. .cesium-animation-themePointer {
  127. color: #2e2;
  128. }
  129. .cesium-animation-themeSwoosh {
  130. color: #8ac;
  131. }
  132. .cesium-animation-themeSwooshHover {
  133. color: #aef;
  134. }
  135. .cesium-animation-svgText {
  136. fill: #edffff;
  137. font-family: Sans-Serif;
  138. font-size: 15px;
  139. text-anchor: middle;
  140. }
  141. .cesium-animation-blank {
  142. fill: #000;
  143. fill-opacity: 0.01;
  144. stroke: none;
  145. }
  146. .cesium-animation-rectButton {
  147. cursor: pointer;
  148. -moz-user-select: none;
  149. -webkit-user-select: none;
  150. -ms-user-select: none;
  151. user-select: none;
  152. }
  153. .cesium-animation-rectButton .cesium-animation-buttonGlow {
  154. fill: #fff;
  155. stroke: none;
  156. display: none;
  157. }
  158. .cesium-animation-rectButton:hover .cesium-animation-buttonGlow {
  159. display: block;
  160. }
  161. .cesium-animation-rectButton .cesium-animation-buttonPath {
  162. fill: #edffff;
  163. }
  164. .cesium-animation-rectButton .cesium-animation-buttonMain {
  165. stroke: #444;
  166. stroke-width: 1.2;
  167. }
  168. .cesium-animation-rectButton:hover .cesium-animation-buttonMain {
  169. stroke: #aef;
  170. }
  171. .cesium-animation-rectButton:active .cesium-animation-buttonMain {
  172. fill: #abd6ff;
  173. }
  174. .cesium-animation-buttonDisabled {
  175. -moz-user-select: none;
  176. -webkit-user-select: none;
  177. -ms-user-select: none;
  178. user-select: none;
  179. }
  180. .cesium-animation-buttonDisabled .cesium-animation-buttonMain {
  181. stroke: #555;
  182. }
  183. .cesium-animation-buttonDisabled .cesium-animation-buttonPath {
  184. fill: #818181;
  185. }
  186. .cesium-animation-buttonDisabled .cesium-animation-buttonGlow {
  187. display: none;
  188. }
  189. .cesium-animation-buttonToggled .cesium-animation-buttonGlow {
  190. display: block;
  191. fill: #2e2;
  192. }
  193. .cesium-animation-buttonToggled .cesium-animation-buttonMain {
  194. stroke: #2e2;
  195. }
  196. .cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow {
  197. fill: #fff;
  198. }
  199. .cesium-animation-buttonToggled:hover .cesium-animation-buttonMain {
  200. stroke: #2e2;
  201. }
  202. .cesium-animation-shuttleRingG {
  203. cursor: pointer;
  204. }
  205. .cesium-animation-shuttleRingPointer {
  206. cursor: pointer;
  207. }
  208. .cesium-animation-shuttleRingPausePointer {
  209. cursor: pointer;
  210. }
  211. .cesium-animation-shuttleRingBack {
  212. fill: #181818;
  213. fill-opacity: 0.8;
  214. stroke: #333;
  215. stroke-width: 1.2;
  216. }
  217. .cesium-animation-shuttleRingSwoosh line {
  218. stroke: #8ac;
  219. stroke-width: 3;
  220. stroke-opacity: 0.2;
  221. stroke-linecap: round;
  222. }
  223. .cesium-animation-knobOuter {
  224. cursor: pointer;
  225. stroke: #444;
  226. stroke-width: 1.2;
  227. }
  228. .cesium-animation-knobInner {
  229. cursor: pointer;
  230. }
  231. /* Source/Widgets/BaseLayerPicker/BaseLayerPicker.css */
  232. .cesium-baseLayerPicker-selected {
  233. position: absolute;
  234. top: 0;
  235. left: 0;
  236. width: 100%;
  237. height: 100%;
  238. border: none;
  239. }
  240. .cesium-baseLayerPicker-dropDown {
  241. display: block;
  242. position: absolute;
  243. box-sizing: content-box;
  244. top: auto;
  245. right: 0;
  246. width: 320px;
  247. max-height: 500px;
  248. margin-top: 5px;
  249. background-color: rgba(38, 38, 38, 0.75);
  250. border: 1px solid #444;
  251. padding: 6px;
  252. overflow: auto;
  253. border-radius: 10px;
  254. -moz-user-select: none;
  255. -webkit-user-select: none;
  256. -ms-user-select: none;
  257. user-select: none;
  258. transform: translate(0, -20%);
  259. visibility: hidden;
  260. opacity: 0;
  261. transition:
  262. visibility 0s 0.2s,
  263. opacity 0.2s ease-in,
  264. transform 0.2s ease-in;
  265. }
  266. .cesium-baseLayerPicker-dropDown-visible {
  267. transform: translate(0, 0);
  268. visibility: visible;
  269. opacity: 1;
  270. transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  271. }
  272. .cesium-baseLayerPicker-sectionTitle {
  273. display: block;
  274. font-family: sans-serif;
  275. font-size: 16pt;
  276. text-align: left;
  277. color: #edffff;
  278. margin-bottom: 4px;
  279. }
  280. .cesium-baseLayerPicker-choices {
  281. margin-bottom: 5px;
  282. }
  283. .cesium-baseLayerPicker-categoryTitle {
  284. color: #edffff;
  285. font-size: 11pt;
  286. }
  287. .cesium-baseLayerPicker-choices {
  288. display: block;
  289. border: 1px solid #888;
  290. border-radius: 5px;
  291. padding: 5px 0;
  292. }
  293. .cesium-baseLayerPicker-item {
  294. display: inline-block;
  295. vertical-align: top;
  296. margin: 2px 5px;
  297. width: 64px;
  298. text-align: center;
  299. cursor: pointer;
  300. }
  301. .cesium-baseLayerPicker-itemLabel {
  302. display: block;
  303. font-family: sans-serif;
  304. font-size: 8pt;
  305. text-align: center;
  306. vertical-align: middle;
  307. color: #edffff;
  308. cursor: pointer;
  309. word-wrap: break-word;
  310. }
  311. .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemLabel,
  312. .cesium-baseLayerPicker-item:focus .cesium-baseLayerPicker-itemLabel {
  313. text-decoration: underline;
  314. }
  315. .cesium-baseLayerPicker-itemIcon {
  316. display: inline-block;
  317. position: relative;
  318. width: inherit;
  319. height: auto;
  320. background-size: 100% 100%;
  321. border: solid 1px #444;
  322. border-radius: 9px;
  323. color: #edffff;
  324. margin: 0;
  325. padding: 0;
  326. cursor: pointer;
  327. box-sizing: border-box;
  328. }
  329. .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemIcon {
  330. border-color: #fff;
  331. box-shadow: 0 0 8px #fff, 0 0 8px #fff;
  332. }
  333. .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel {
  334. color: rgb(189, 236, 248);
  335. }
  336. .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemIcon {
  337. border: double 4px rgb(189, 236, 248);
  338. }
  339. /* Source/Widgets/CesiumWidget/CesiumWidget.css */
  340. .cesium-widget {
  341. position: relative;
  342. }
  343. .cesium-widget,
  344. .cesium-widget canvas {
  345. width: 100%;
  346. height: 100%;
  347. touch-action: none;
  348. }
  349. .cesium-widget-credits {
  350. display: block;
  351. position: absolute;
  352. bottom: 0;
  353. left: 0;
  354. color: #fff;
  355. font-size: 10px;
  356. text-shadow: 0px 0px 2px #000000;
  357. padding-right: 5px;
  358. }
  359. .cesium-widget-credits a,
  360. .cesium-widget-credits a:visited {
  361. color: #fff;
  362. }
  363. .cesium-widget-errorPanel {
  364. position: absolute;
  365. top: 0;
  366. right: 0;
  367. bottom: 0;
  368. left: 0;
  369. text-align: center;
  370. background: rgba(0, 0, 0, 0.7);
  371. z-index: 99999;
  372. }
  373. .cesium-widget-errorPanel:before {
  374. display: inline-block;
  375. vertical-align: middle;
  376. height: 100%;
  377. content: "";
  378. }
  379. .cesium-widget-errorPanel-content {
  380. width: 75%;
  381. max-width: 500px;
  382. display: inline-block;
  383. text-align: left;
  384. vertical-align: middle;
  385. border: 1px solid #510c00;
  386. border-radius: 7px;
  387. background-color: #f0d9d5;
  388. font-size: 14px;
  389. color: #510c00;
  390. }
  391. .cesium-widget-errorPanel-content.expanded {
  392. max-width: 75%;
  393. }
  394. .cesium-widget-errorPanel-header {
  395. font-size: 18px;
  396. font-family:
  397. "Open Sans",
  398. Verdana,
  399. Geneva,
  400. sans-serif;
  401. background: #d69d93;
  402. border-bottom: 2px solid #510c00;
  403. padding-bottom: 10px;
  404. border-radius: 3px 3px 0 0;
  405. padding: 15px;
  406. }
  407. .cesium-widget-errorPanel-scroll {
  408. overflow: auto;
  409. font-family:
  410. "Open Sans",
  411. Verdana,
  412. Geneva,
  413. sans-serif;
  414. white-space: pre-wrap;
  415. padding: 0 15px;
  416. margin: 10px 0 20px 0;
  417. }
  418. .cesium-widget-errorPanel-buttonPanel {
  419. padding: 0 15px;
  420. margin: 10px 0 20px 0;
  421. text-align: right;
  422. }
  423. .cesium-widget-errorPanel-buttonPanel button {
  424. border-color: #510c00;
  425. background: #d69d93;
  426. color: #202020;
  427. margin: 0;
  428. }
  429. .cesium-widget-errorPanel-buttonPanel button:focus {
  430. border-color: #510c00;
  431. background: #f0d9d5;
  432. color: #510c00;
  433. }
  434. .cesium-widget-errorPanel-buttonPanel button:hover {
  435. border-color: #510c00;
  436. background: #f0d9d5;
  437. color: #510c00;
  438. }
  439. .cesium-widget-errorPanel-buttonPanel button:active {
  440. border-color: #510c00;
  441. background: #b17b72;
  442. color: #510c00;
  443. }
  444. .cesium-widget-errorPanel-more-details {
  445. text-decoration: underline;
  446. cursor: pointer;
  447. }
  448. .cesium-widget-errorPanel-more-details:hover {
  449. color: #2b0700;
  450. }
  451. /* Source/Widgets/CesiumInspector/CesiumInspector.css */
  452. .cesium-cesiumInspector {
  453. border-radius: 5px;
  454. transition: width ease-in-out 0.25s;
  455. background: rgba(48, 51, 54, 0.8);
  456. border: 1px solid #444;
  457. color: #edffff;
  458. display: inline-block;
  459. position: relative;
  460. padding: 4px 12px;
  461. -moz-user-select: none;
  462. -webkit-user-select: none;
  463. -ms-user-select: none;
  464. user-select: none;
  465. overflow: hidden;
  466. }
  467. .cesium-cesiumInspector-button {
  468. text-align: center;
  469. font-size: 11pt;
  470. }
  471. .cesium-cesiumInspector-visible .cesium-cesiumInspector-button {
  472. border-bottom: 1px solid #aaa;
  473. padding-bottom: 3px;
  474. }
  475. .cesium-cesiumInspector input:enabled,
  476. .cesium-cesiumInspector-button {
  477. cursor: pointer;
  478. }
  479. .cesium-cesiumInspector-visible {
  480. width: 185px;
  481. height: auto;
  482. }
  483. .cesium-cesiumInspector-hidden {
  484. width: 122px;
  485. height: 17px;
  486. }
  487. .cesium-cesiumInspector-sectionContent {
  488. max-height: 600px;
  489. }
  490. .cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionContent {
  491. max-height: 0;
  492. padding: 0 !important;
  493. overflow: hidden;
  494. }
  495. .cesium-cesiumInspector-dropDown {
  496. margin: 5px 0;
  497. font-family: sans-serif;
  498. font-size: 10pt;
  499. width: 185px;
  500. }
  501. .cesium-cesiumInspector-frustumStatistics {
  502. padding-left: 10px;
  503. padding: 5px;
  504. background-color: rgba(80, 80, 80, 0.75);
  505. }
  506. .cesium-cesiumInspector-pickButton {
  507. background-color: rgba(0, 0, 0, 0.3);
  508. border: 1px solid #444;
  509. color: #edffff;
  510. border-radius: 5px;
  511. padding: 3px 7px;
  512. cursor: pointer;
  513. -moz-user-select: none;
  514. -webkit-user-select: none;
  515. -ms-user-select: none;
  516. user-select: none;
  517. margin: 0 auto;
  518. }
  519. .cesium-cesiumInspector-pickButton:focus {
  520. outline: none;
  521. }
  522. .cesium-cesiumInspector-pickButton:active,
  523. .cesium-cesiumInspector-pickButtonHighlight {
  524. color: #000;
  525. background: #adf;
  526. border-color: #fff;
  527. box-shadow: 0 0 8px #fff;
  528. }
  529. .cesium-cesiumInspector-center {
  530. text-align: center;
  531. }
  532. .cesium-cesiumInspector-sectionHeader {
  533. font-weight: bold;
  534. font-size: 10pt;
  535. margin: 0;
  536. cursor: pointer;
  537. }
  538. .cesium-cesiumInspector-pickSection {
  539. border: 1px solid #aaa;
  540. border-radius: 5px;
  541. padding: 3px;
  542. margin-bottom: 5px;
  543. }
  544. .cesium-cesiumInspector-sectionContent {
  545. margin-bottom: 10px;
  546. transition: max-height 0.25s;
  547. }
  548. .cesium-cesiumInspector-tileText {
  549. padding-bottom: 10px;
  550. border-bottom: 1px solid #aaa;
  551. }
  552. .cesium-cesiumInspector-relativeText {
  553. padding-top: 10px;
  554. }
  555. .cesium-cesiumInspector-sectionHeader::before {
  556. margin-right: 5px;
  557. content: "-";
  558. width: 1ch;
  559. display: inline-block;
  560. }
  561. .cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionHeader::before {
  562. content: "+";
  563. }
  564. /* Source/Widgets/Cesium3DTilesInspector/Cesium3DTilesInspector.css */
  565. ul.cesium-cesiumInspector-statistics {
  566. margin: 0;
  567. padding-top: 3px;
  568. padding-bottom: 3px;
  569. }
  570. ul.cesium-cesiumInspector-statistics + ul.cesium-cesiumInspector-statistics {
  571. border-top: 1px solid #aaa;
  572. }
  573. .cesium-cesiumInspector-slider {
  574. margin-top: 5px;
  575. }
  576. .cesium-cesiumInspector-slider input[type=number] {
  577. text-align: left;
  578. background-color: #222;
  579. outline: none;
  580. border: 1px solid #444;
  581. color: #edffff;
  582. width: 100px;
  583. border-radius: 3px;
  584. padding: 1px;
  585. margin-left: 10px;
  586. cursor: auto;
  587. }
  588. .cesium-cesiumInspector-slider input[type=number]::-webkit-outer-spin-button,
  589. .cesium-cesiumInspector-slider input[type=number]::-webkit-inner-spin-button {
  590. -webkit-appearance: none;
  591. margin: 0;
  592. }
  593. .cesium-cesiumInspector-slider input[type=range] {
  594. margin-left: 5px;
  595. vertical-align: middle;
  596. }
  597. .cesium-cesiumInspector-hide .cesium-cesiumInspector-styleEditor {
  598. display: none;
  599. }
  600. .cesium-cesiumInspector-styleEditor {
  601. padding: 10px;
  602. border-radius: 5px;
  603. background: rgba(48, 51, 54, 0.8);
  604. border: 1px solid #444;
  605. }
  606. .cesium-cesiumInspector-styleEditor textarea {
  607. width: 100%;
  608. height: 300px;
  609. background: transparent;
  610. color: #edffff;
  611. border: none;
  612. padding: 0;
  613. white-space: pre;
  614. overflow-wrap: normal;
  615. overflow-x: auto;
  616. }
  617. .cesium-3DTilesInspector {
  618. width: 300px;
  619. pointer-events: all;
  620. }
  621. .cesium-3DTilesInspector-statistics {
  622. font-size: 11px;
  623. }
  624. .cesium-3DTilesInspector div,
  625. .cesium-3DTilesInspector input[type=range] {
  626. width: 100%;
  627. box-sizing: border-box;
  628. }
  629. .cesium-cesiumInspector-error {
  630. color: #ff9e9e;
  631. overflow: auto;
  632. }
  633. .cesium-3DTilesInspector .cesium-cesiumInspector-section {
  634. margin-top: 3px;
  635. }
  636. .cesium-3DTilesInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show {
  637. border-top: 1px solid white;
  638. }
  639. input.cesium-cesiumInspector-url {
  640. overflow: hidden;
  641. white-space: nowrap;
  642. overflow-x: scroll;
  643. background-color: transparent;
  644. color: white;
  645. outline: none;
  646. border: none;
  647. height: 1em;
  648. width: 100%;
  649. }
  650. .cesium-cesiumInspector .field-group {
  651. display: table;
  652. }
  653. .cesium-cesiumInspector .field-group > label {
  654. display: table-cell;
  655. font-weight: bold;
  656. }
  657. .cesium-cesiumInspector .field-group > .field {
  658. display: table-cell;
  659. width: 100%;
  660. }
  661. /* Source/Widgets/FullscreenButton/FullscreenButton.css */
  662. .cesium-button.cesium-fullscreenButton {
  663. display: block;
  664. width: 100%;
  665. height: 100%;
  666. margin: 0;
  667. border-radius: 0;
  668. }
  669. /* Source/Widgets/VRButton/VRButton.css */
  670. .cesium-button.cesium-vrButton {
  671. display: block;
  672. width: 100%;
  673. height: 100%;
  674. margin: 0;
  675. border-radius: 0;
  676. }
  677. /* Source/Widgets/Geocoder/Geocoder.css */
  678. .cesium-viewer-geocoderContainer .cesium-geocoder-input {
  679. border: solid 1px #444;
  680. background-color: rgba(40, 40, 40, 0.7);
  681. color: white;
  682. display: inline-block;
  683. vertical-align: middle;
  684. width: 0;
  685. height: 32px;
  686. margin: 0;
  687. padding: 0 32px 0 0;
  688. border-radius: 0;
  689. box-sizing: border-box;
  690. transition: width ease-in-out 0.25s, background-color 0.2s ease-in-out;
  691. -webkit-appearance: none;
  692. }
  693. .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input {
  694. border-color: #aef;
  695. box-shadow: 0 0 8px #fff;
  696. }
  697. .cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {
  698. border-color: #ea4;
  699. background-color: rgba(15, 15, 15, 0.9);
  700. box-shadow: none;
  701. outline: none;
  702. }
  703. .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input,
  704. .cesium-viewer-geocoderContainer .cesium-geocoder-input:focus,
  705. .cesium-viewer-geocoderContainer .cesium-geocoder-input-wide {
  706. padding-left: 4px;
  707. width: 250px;
  708. }
  709. .cesium-viewer-geocoderContainer .search-results {
  710. position: absolute;
  711. background-color: #000;
  712. color: #eee;
  713. overflow-y: auto;
  714. opacity: 0.8;
  715. width: 100%;
  716. }
  717. .cesium-viewer-geocoderContainer .search-results ul {
  718. list-style-type: none;
  719. margin: 0;
  720. padding: 0;
  721. }
  722. .cesium-viewer-geocoderContainer .search-results ul li {
  723. font-size: 14px;
  724. padding: 3px 10px;
  725. }
  726. .cesium-viewer-geocoderContainer .search-results ul li:hover {
  727. cursor: pointer;
  728. }
  729. .cesium-viewer-geocoderContainer .search-results ul li.active {
  730. background: #48b;
  731. }
  732. .cesium-geocoder-searchButton {
  733. background-color: #303336;
  734. display: inline-block;
  735. position: absolute;
  736. cursor: pointer;
  737. width: 32px;
  738. top: 1px;
  739. right: 1px;
  740. height: 30px;
  741. vertical-align: middle;
  742. fill: #edffff;
  743. }
  744. .cesium-geocoder-searchButton:hover {
  745. background-color: #48b;
  746. }
  747. /* Source/Widgets/InfoBox/InfoBox.css */
  748. .cesium-infoBox {
  749. display: block;
  750. position: absolute;
  751. top: 50px;
  752. right: 0;
  753. width: 40%;
  754. max-width: 480px;
  755. background: rgba(38, 38, 38, 0.95);
  756. color: #edffff;
  757. border: 1px solid #444;
  758. border-right: none;
  759. border-top-left-radius: 7px;
  760. border-bottom-left-radius: 7px;
  761. box-shadow: 0 0 10px 1px #000;
  762. transform: translate(100%, 0);
  763. visibility: hidden;
  764. opacity: 0;
  765. transition:
  766. visibility 0s 0.2s,
  767. opacity 0.2s ease-in,
  768. transform 0.2s ease-in;
  769. }
  770. .cesium-infoBox-visible {
  771. transform: translate(0, 0);
  772. visibility: visible;
  773. opacity: 1;
  774. transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  775. }
  776. .cesium-infoBox-title {
  777. display: block;
  778. height: 20px;
  779. padding: 5px 30px 5px 25px;
  780. background: rgba(84, 84, 84, 1);
  781. border-top-left-radius: 7px;
  782. text-align: center;
  783. text-overflow: ellipsis;
  784. white-space: nowrap;
  785. overflow: hidden;
  786. box-sizing: content-box;
  787. }
  788. .cesium-infoBox-bodyless .cesium-infoBox-title {
  789. border-bottom-left-radius: 7px;
  790. }
  791. button.cesium-infoBox-camera {
  792. display: block;
  793. position: absolute;
  794. top: 4px;
  795. left: 4px;
  796. width: 22px;
  797. height: 22px;
  798. background: transparent;
  799. border-color: transparent;
  800. border-radius: 3px;
  801. padding: 0 5px;
  802. margin: 0;
  803. }
  804. button.cesium-infoBox-close {
  805. display: block;
  806. position: absolute;
  807. top: 5px;
  808. right: 5px;
  809. height: 20px;
  810. background: transparent;
  811. border: none;
  812. border-radius: 2px;
  813. font-weight: bold;
  814. font-size: 16px;
  815. padding: 0 5px;
  816. margin: 0;
  817. color: #edffff;
  818. }
  819. button.cesium-infoBox-close:focus {
  820. background: rgba(238, 136, 0, 0.44);
  821. outline: none;
  822. }
  823. button.cesium-infoBox-close:hover {
  824. background: #888;
  825. color: #000;
  826. }
  827. button.cesium-infoBox-close:active {
  828. background: #a00;
  829. color: #000;
  830. }
  831. .cesium-infoBox-bodyless .cesium-infoBox-iframe {
  832. display: none;
  833. }
  834. .cesium-infoBox-iframe {
  835. border: none;
  836. width: 100%;
  837. width: calc(100% - 2px);
  838. }
  839. /* Source/Widgets/SceneModePicker/SceneModePicker.css */
  840. span.cesium-sceneModePicker-wrapper {
  841. display: inline-block;
  842. position: relative;
  843. margin: 0 3px;
  844. }
  845. .cesium-sceneModePicker-visible {
  846. visibility: visible;
  847. opacity: 1;
  848. transition: opacity 0.25s linear;
  849. }
  850. .cesium-sceneModePicker-hidden {
  851. visibility: hidden;
  852. opacity: 0;
  853. transition: visibility 0s 0.25s, opacity 0.25s linear;
  854. }
  855. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-none {
  856. display: none;
  857. }
  858. .cesium-sceneModePicker-slide-svg {
  859. transition: left 2s;
  860. top: 0;
  861. left: 0;
  862. }
  863. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
  864. box-sizing: border-box;
  865. padding: 0;
  866. margin: 3px 0;
  867. }
  868. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D,
  869. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView,
  870. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D {
  871. margin: 0 0 3px 0;
  872. }
  873. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-icon2D {
  874. left: 100%;
  875. }
  876. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-iconColumbusView {
  877. left: 200%;
  878. }
  879. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon3D {
  880. left: -200%;
  881. }
  882. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon2D {
  883. left: -100%;
  884. }
  885. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-icon3D {
  886. left: -100%;
  887. }
  888. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-iconColumbusView {
  889. left: 100%;
  890. }
  891. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-selected {
  892. border-color: #2e2;
  893. box-shadow: 0 0 8px #fff, 0 0 8px #fff;
  894. }
  895. /* Source/Widgets/ProjectionPicker/ProjectionPicker.css */
  896. span.cesium-projectionPicker-wrapper {
  897. display: inline-block;
  898. position: relative;
  899. margin: 0 3px;
  900. }
  901. .cesium-projectionPicker-visible {
  902. visibility: visible;
  903. opacity: 1;
  904. transition: opacity 0.25s linear;
  905. }
  906. .cesium-projectionPicker-hidden {
  907. visibility: hidden;
  908. opacity: 0;
  909. transition: visibility 0s 0.25s, opacity 0.25s linear;
  910. }
  911. .cesium-projectionPicker-wrapper .cesium-projectionPicker-none {
  912. display: none;
  913. }
  914. .cesium-projectionPicker-wrapper .cesium-projectionPicker-dropDown-icon {
  915. box-sizing: border-box;
  916. padding: 0;
  917. margin: 3px 0;
  918. }
  919. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective,
  920. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic {
  921. margin: 0 0 3px 0;
  922. }
  923. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective .cesium-projectionPicker-iconOrthographic {
  924. left: 100%;
  925. }
  926. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic .cesium-projectionPicker-iconPerspective {
  927. left: -100%;
  928. }
  929. .cesium-projectionPicker-wrapper .cesium-projectionPicker-selected {
  930. border-color: #2e2;
  931. box-shadow: 0 0 8px #fff, 0 0 8px #fff;
  932. }
  933. /* Source/Widgets/PerformanceWatchdog/PerformanceWatchdog.css */
  934. .cesium-performance-watchdog-message-area {
  935. position: relative;
  936. background-color: yellow;
  937. color: black;
  938. padding: 10px;
  939. }
  940. .cesium-performance-watchdog-message {
  941. margin-right: 30px;
  942. }
  943. .cesium-performance-watchdog-message-dismiss {
  944. position: absolute;
  945. right: 0;
  946. margin: 0 10px 0 0;
  947. }
  948. /* Source/Widgets/NavigationHelpButton/NavigationHelpButton.css */
  949. .cesium-navigationHelpButton-wrapper {
  950. position: relative;
  951. display: inline-block;
  952. }
  953. .cesium-navigation-help {
  954. visibility: hidden;
  955. position: absolute;
  956. top: 38px;
  957. right: 2px;
  958. width: 250px;
  959. border-radius: 10px;
  960. transform: scale(0.01);
  961. transform-origin: 234px -10px;
  962. transition: visibility 0s 0.25s, transform 0.25s ease-in;
  963. }
  964. .cesium-navigation-help-visible {
  965. visibility: visible;
  966. transform: scale(1);
  967. transition: transform 0.25s ease-out;
  968. }
  969. .cesium-navigation-help-instructions {
  970. border: 1px solid #444;
  971. background-color: rgba(38, 38, 38, 0.75);
  972. padding-bottom: 5px;
  973. border-radius: 0 0 10px 10px;
  974. }
  975. .cesium-click-navigation-help {
  976. display: none;
  977. }
  978. .cesium-touch-navigation-help {
  979. display: none;
  980. padding-top: 5px;
  981. }
  982. .cesium-click-navigation-help-visible {
  983. display: block;
  984. }
  985. .cesium-touch-navigation-help-visible {
  986. display: block;
  987. }
  988. .cesium-navigation-help-pan {
  989. color: #66ccff;
  990. font-weight: bold;
  991. }
  992. .cesium-navigation-help-zoom {
  993. color: #65fd00;
  994. font-weight: bold;
  995. }
  996. .cesium-navigation-help-rotate {
  997. color: #ffd800;
  998. font-weight: bold;
  999. }
  1000. .cesium-navigation-help-tilt {
  1001. color: #d800d8;
  1002. font-weight: bold;
  1003. }
  1004. .cesium-navigation-help-details {
  1005. color: #ffffff;
  1006. }
  1007. .cesium-navigation-button {
  1008. color: #fff;
  1009. background-color: transparent;
  1010. border-bottom: none;
  1011. border-top: 1px solid #444;
  1012. border-right: 1px solid #444;
  1013. margin: 0;
  1014. width: 50%;
  1015. cursor: pointer;
  1016. }
  1017. .cesium-navigation-button-icon {
  1018. vertical-align: middle;
  1019. padding: 5px 1px;
  1020. }
  1021. .cesium-navigation-button:focus {
  1022. outline: none;
  1023. }
  1024. .cesium-navigation-button-left {
  1025. border-radius: 10px 0 0 0;
  1026. border-left: 1px solid #444;
  1027. }
  1028. .cesium-navigation-button-right {
  1029. border-radius: 0 10px 0 0;
  1030. border-left: none;
  1031. }
  1032. .cesium-navigation-button-selected {
  1033. background-color: rgba(38, 38, 38, 0.75);
  1034. }
  1035. .cesium-navigation-button-unselected {
  1036. background-color: rgba(0, 0, 0, 0.75);
  1037. }
  1038. .cesium-navigation-button-unselected:hover {
  1039. background-color: rgba(76, 76, 76, 0.75);
  1040. }
  1041. /* Source/Widgets/SelectionIndicator/SelectionIndicator.css */
  1042. .cesium-selection-wrapper {
  1043. position: absolute;
  1044. width: 160px;
  1045. height: 160px;
  1046. pointer-events: none;
  1047. visibility: hidden;
  1048. opacity: 0;
  1049. transition: visibility 0s 0.2s, opacity 0.2s ease-in;
  1050. }
  1051. .cesium-selection-wrapper-visible {
  1052. visibility: visible;
  1053. opacity: 1;
  1054. transition: opacity 0.2s ease-out;
  1055. }
  1056. .cesium-selection-wrapper svg {
  1057. fill: #2e2;
  1058. stroke: #000;
  1059. stroke-width: 1.1px;
  1060. }
  1061. /* Source/Widgets/Timeline/Timeline.css */
  1062. .cesium-timeline-main {
  1063. position: relative;
  1064. left: 0;
  1065. bottom: 0;
  1066. overflow: hidden;
  1067. border: solid 1px #888;
  1068. -moz-user-select: none;
  1069. -webkit-user-select: none;
  1070. -ms-user-select: none;
  1071. user-select: none;
  1072. }
  1073. .cesium-timeline-trackContainer {
  1074. width: 100%;
  1075. overflow: auto;
  1076. border-top: solid 1px #888;
  1077. position: relative;
  1078. top: 0;
  1079. left: 0;
  1080. }
  1081. .cesium-timeline-tracks {
  1082. position: absolute;
  1083. top: 0;
  1084. left: 0;
  1085. width: 100%;
  1086. }
  1087. .cesium-timeline-needle {
  1088. position: absolute;
  1089. left: 0;
  1090. top: 1.7em;
  1091. bottom: 0;
  1092. width: 1px;
  1093. background: #f00;
  1094. }
  1095. .cesium-timeline-bar {
  1096. position: relative;
  1097. left: 0;
  1098. top: 0;
  1099. overflow: hidden;
  1100. cursor: pointer;
  1101. width: 100%;
  1102. height: 1.7em;
  1103. background: linear-gradient(to bottom, rgba(116, 117, 119, 0.8) 0%, rgba(58, 68, 82, 0.8) 11%, rgba(46, 50, 56, 0.8) 46%, rgba(53, 53, 53, 0.8) 81%, rgba(53, 53, 53, 0.8) 100%);
  1104. }
  1105. .cesium-timeline-ruler {
  1106. visibility: hidden;
  1107. white-space: nowrap;
  1108. font-size: 80%;
  1109. z-index: -200;
  1110. }
  1111. .cesium-timeline-highlight {
  1112. position: absolute;
  1113. bottom: 0;
  1114. left: 0;
  1115. background: #08f;
  1116. }
  1117. .cesium-timeline-ticLabel {
  1118. position: absolute;
  1119. top: 0;
  1120. left: 0;
  1121. white-space: nowrap;
  1122. font-size: 80%;
  1123. color: #eee;
  1124. }
  1125. .cesium-timeline-ticMain {
  1126. position: absolute;
  1127. bottom: 0;
  1128. left: 0;
  1129. width: 1px;
  1130. height: 50%;
  1131. background: #eee;
  1132. }
  1133. .cesium-timeline-ticSub {
  1134. position: absolute;
  1135. bottom: 0;
  1136. left: 0;
  1137. width: 1px;
  1138. height: 33%;
  1139. background: #aaa;
  1140. }
  1141. .cesium-timeline-ticTiny {
  1142. position: absolute;
  1143. bottom: 0;
  1144. left: 0;
  1145. width: 1px;
  1146. height: 25%;
  1147. background: #888;
  1148. }
  1149. .cesium-timeline-icon16 {
  1150. display: block;
  1151. position: absolute;
  1152. width: 16px;
  1153. height: 16px;
  1154. background-image: url(data:text/plain;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB3AH1ZAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIDBITKIVzLEMAAAKNSURBVEjHxdXNSxRhHAfw7zzrqhuoWJnSkrippUVSEKsHI9BTUYdAJA/RoYMREV26rAdn6tAfUARi16hQqkOBQRgUEYFWEC3OwczMjdZd92VmdWfmeelgTjO7q7gb0VzmmZnn85vvPPPMM8B/3qTcE2PPpuTZKB1eWuUQACgXYACYwVFbCTTVeZXB/i55o4LFelcAZfStYD4vpAoPGAGo4GBcQEgSOAUMQyAezwK6iQfDPXnhS/FkHZ+/8VLMWxxqWkfH3gbMRNOYi2roavbja0zHQmoFPYf8ED4Ko4aivm9MOG/u9I8mwrafeK7a/tVrNc/bARYN5noadeq7q0342vXw9CIMU6BmW8rVP9cPBPe52uu+v3O/y9sB4gkTWs6Qsk0mj5ExXMelejvA8WafYmkmGPHanTijdtvif8rx5RiCjdWKs2Cp3jWRDl96KhrbqlBeJqBOLyLQXg0IgbkZDS0dO8EZxZfPSTA9jvDDK3mT0OmP1FXh3XwEEAKdTX5MRWLgjCK4pwH3xt/YnjgLHAv4lHTCAKMMu/wV+KZGob6PoKyMQ0+sgBpZVJZn0NterxQaVqef/DRn+/EXYds/mZx2eVeAW9d65dhCEsaKCb7K8HH0gqTevyh9GDkn0VULRiaLzJKGBu9swfdaiie5RVo9ESURN8E8BE0n7ggACJy8KzghSCzp6DmwWxkaCm24EBXr8wI8Hrkq06QBiRC0t24HALS11IBTCyJl4vb1AXmzpbVYTwoVOXN0h7L8Mwtm8bXPybIQ/5FCX3dA2cr6XowvGCA02CvztAnz9+JiZk1AMxG6fEreSoBiPNmoyNnuWiWVzAIAtISO08E6pZi/3N96AIDn4E3h3P8L/wshP+txtEs4JAAAAABJRU5ErkJggg==);
  1155. background-repeat: no-repeat;
  1156. }
  1157. /* Source/Widgets/Viewer/Viewer.css */
  1158. .cesium-viewer {
  1159. font-family: sans-serif;
  1160. font-size: 16px;
  1161. overflow: hidden;
  1162. display: block;
  1163. position: relative;
  1164. top: 0;
  1165. left: 0;
  1166. width: 100%;
  1167. height: 100%;
  1168. }
  1169. .cesium-viewer-cesiumWidgetContainer {
  1170. width: 100%;
  1171. height: 100%;
  1172. }
  1173. .cesium-viewer-bottom {
  1174. display: block;
  1175. position: absolute;
  1176. bottom: 0;
  1177. left: 0;
  1178. padding-right: 5px;
  1179. }
  1180. .cesium-viewer .cesium-widget-credits {
  1181. display: inline;
  1182. position: static;
  1183. bottom: auto;
  1184. left: auto;
  1185. padding-right: 0;
  1186. color: #ffffff;
  1187. font-size: 10px;
  1188. text-shadow: 0 0 2px #000000;
  1189. }
  1190. .cesium-viewer-timelineContainer {
  1191. position: absolute;
  1192. bottom: 0;
  1193. left: 169px;
  1194. right: 29px;
  1195. height: 27px;
  1196. padding: 0;
  1197. margin: 0;
  1198. overflow: hidden;
  1199. font-size: 14px;
  1200. }
  1201. .cesium-viewer-animationContainer {
  1202. position: absolute;
  1203. bottom: 0;
  1204. left: 0;
  1205. padding: 0;
  1206. width: 169px;
  1207. height: 112px;
  1208. }
  1209. .cesium-viewer-fullscreenContainer {
  1210. position: absolute;
  1211. bottom: 0;
  1212. right: 0;
  1213. padding: 0;
  1214. width: 29px;
  1215. height: 29px;
  1216. overflow: hidden;
  1217. }
  1218. .cesium-viewer-vrContainer {
  1219. position: absolute;
  1220. bottom: 0;
  1221. right: 0;
  1222. padding: 0;
  1223. width: 29px;
  1224. height: 29px;
  1225. overflow: hidden;
  1226. }
  1227. .cesium-viewer-toolbar {
  1228. display: block;
  1229. position: absolute;
  1230. top: 5px;
  1231. right: 5px;
  1232. }
  1233. .cesium-viewer-cesiumInspectorContainer {
  1234. display: block;
  1235. position: absolute;
  1236. top: 50px;
  1237. right: 10px;
  1238. }
  1239. .cesium-viewer-geocoderContainer {
  1240. position: relative;
  1241. display: inline-block;
  1242. margin: 0 3px;
  1243. }
  1244. .cesium-viewer-cesium3DTilesInspectorContainer {
  1245. display: block;
  1246. position: absolute;
  1247. top: 50px;
  1248. right: 10px;
  1249. max-height: calc(100% - 120px);
  1250. box-sizing: border-box;
  1251. overflow-y: auto;
  1252. overflow-x: hidden;
  1253. }
  1254. /* Source/Widgets/widgets.css */