widgets.css 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342
  1. /* packages/widgets/Source/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. /* packages/widgets/Source/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. /* packages/widgets/Source/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. /* packages/engine/Source/Widget/CesiumWidget.css */
  340. .cesium-widget {
  341. font-family: sans-serif;
  342. font-size: 16px;
  343. overflow: hidden;
  344. display: block;
  345. position: relative;
  346. top: 0;
  347. left: 0;
  348. width: 100%;
  349. height: 100%;
  350. }
  351. .cesium-widget,
  352. .cesium-widget canvas {
  353. width: 100%;
  354. height: 100%;
  355. touch-action: none;
  356. }
  357. .cesium-widget-credits {
  358. display: block;
  359. position: absolute;
  360. bottom: 0;
  361. left: 0;
  362. color: #fff;
  363. font-size: 10px;
  364. text-shadow: 0px 0px 2px #000000;
  365. padding-right: 5px;
  366. }
  367. .cesium-widget-errorPanel {
  368. position: absolute;
  369. top: 0;
  370. right: 0;
  371. bottom: 0;
  372. left: 0;
  373. text-align: center;
  374. background: rgba(0, 0, 0, 0.7);
  375. z-index: 99999;
  376. }
  377. .cesium-widget-errorPanel:before {
  378. display: inline-block;
  379. vertical-align: middle;
  380. height: 100%;
  381. content: "";
  382. }
  383. .cesium-widget-errorPanel-content {
  384. width: 75%;
  385. max-width: 500px;
  386. display: inline-block;
  387. text-align: left;
  388. vertical-align: middle;
  389. border: 1px solid #510c00;
  390. border-radius: 7px;
  391. background-color: #f0d9d5;
  392. font-size: 14px;
  393. color: #510c00;
  394. }
  395. .cesium-widget-errorPanel-content.expanded {
  396. max-width: 75%;
  397. }
  398. .cesium-widget-errorPanel-header {
  399. font-size: 18px;
  400. font-family:
  401. "Open Sans",
  402. Verdana,
  403. Geneva,
  404. sans-serif;
  405. background: #d69d93;
  406. border-bottom: 2px solid #510c00;
  407. padding-bottom: 10px;
  408. border-radius: 3px 3px 0 0;
  409. padding: 15px;
  410. }
  411. .cesium-widget-errorPanel-scroll {
  412. overflow: auto;
  413. font-family:
  414. "Open Sans",
  415. Verdana,
  416. Geneva,
  417. sans-serif;
  418. white-space: pre-wrap;
  419. padding: 0 15px;
  420. margin: 10px 0 20px 0;
  421. }
  422. .cesium-widget-errorPanel-buttonPanel {
  423. padding: 0 15px;
  424. margin: 10px 0 20px 0;
  425. text-align: right;
  426. }
  427. .cesium-widget-errorPanel-buttonPanel button {
  428. border-color: #510c00;
  429. background: #d69d93;
  430. color: #202020;
  431. margin: 0;
  432. }
  433. .cesium-widget-errorPanel-buttonPanel button:focus {
  434. border-color: #510c00;
  435. background: #f0d9d5;
  436. color: #510c00;
  437. }
  438. .cesium-widget-errorPanel-buttonPanel button:hover {
  439. border-color: #510c00;
  440. background: #f0d9d5;
  441. color: #510c00;
  442. }
  443. .cesium-widget-errorPanel-buttonPanel button:active {
  444. border-color: #510c00;
  445. background: #b17b72;
  446. color: #510c00;
  447. }
  448. .cesium-widget-errorPanel-more-details {
  449. text-decoration: underline;
  450. cursor: pointer;
  451. }
  452. .cesium-widget-errorPanel-more-details:hover {
  453. color: #2b0700;
  454. }
  455. /* packages/widgets/Source/CesiumInspector/CesiumInspector.css */
  456. .cesium-cesiumInspector {
  457. border-radius: 5px;
  458. transition: width ease-in-out 0.25s;
  459. background: rgba(48, 51, 54, 0.8);
  460. border: 1px solid #444;
  461. color: #edffff;
  462. display: inline-block;
  463. position: relative;
  464. padding: 4px 12px;
  465. -moz-user-select: none;
  466. -webkit-user-select: none;
  467. -ms-user-select: none;
  468. user-select: none;
  469. overflow: hidden;
  470. }
  471. .cesium-cesiumInspector-button {
  472. text-align: center;
  473. font-size: 11pt;
  474. }
  475. .cesium-cesiumInspector-visible .cesium-cesiumInspector-button {
  476. border-bottom: 1px solid #aaa;
  477. padding-bottom: 3px;
  478. }
  479. .cesium-cesiumInspector input:enabled,
  480. .cesium-cesiumInspector-button {
  481. cursor: pointer;
  482. }
  483. .cesium-cesiumInspector-visible {
  484. width: 185px;
  485. height: auto;
  486. }
  487. .cesium-cesiumInspector-hidden {
  488. width: 122px;
  489. height: 17px;
  490. }
  491. .cesium-cesiumInspector-sectionContent {
  492. max-height: 600px;
  493. }
  494. .cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionContent {
  495. max-height: 0;
  496. padding: 0 !important;
  497. overflow: hidden;
  498. }
  499. .cesium-cesiumInspector-dropDown {
  500. margin: 5px 0;
  501. font-family: sans-serif;
  502. font-size: 10pt;
  503. width: 185px;
  504. }
  505. .cesium-cesiumInspector-frustumStatistics {
  506. padding-left: 10px;
  507. padding: 5px;
  508. background-color: rgba(80, 80, 80, 0.75);
  509. }
  510. .cesium-cesiumInspector-pickButton {
  511. background-color: rgba(0, 0, 0, 0.3);
  512. border: 1px solid #444;
  513. color: #edffff;
  514. border-radius: 5px;
  515. padding: 3px 7px;
  516. cursor: pointer;
  517. -moz-user-select: none;
  518. -webkit-user-select: none;
  519. -ms-user-select: none;
  520. user-select: none;
  521. margin: 0 auto;
  522. }
  523. .cesium-cesiumInspector-pickButton:focus {
  524. outline: none;
  525. }
  526. .cesium-cesiumInspector-pickButton:active,
  527. .cesium-cesiumInspector-pickButtonHighlight {
  528. color: #000;
  529. background: #adf;
  530. border-color: #fff;
  531. box-shadow: 0 0 8px #fff;
  532. }
  533. .cesium-cesiumInspector-center {
  534. text-align: center;
  535. }
  536. .cesium-cesiumInspector-sectionHeader {
  537. font-weight: bold;
  538. font-size: 10pt;
  539. margin: 0;
  540. cursor: pointer;
  541. }
  542. .cesium-cesiumInspector-pickSection {
  543. border: 1px solid #aaa;
  544. border-radius: 5px;
  545. padding: 3px;
  546. margin-bottom: 5px;
  547. }
  548. .cesium-cesiumInspector-sectionContent {
  549. margin-bottom: 10px;
  550. transition: max-height 0.25s;
  551. }
  552. .cesium-cesiumInspector-tileText {
  553. padding-bottom: 10px;
  554. border-bottom: 1px solid #aaa;
  555. }
  556. .cesium-cesiumInspector-relativeText {
  557. padding-top: 10px;
  558. }
  559. .cesium-cesiumInspector-sectionHeader::before {
  560. margin-right: 5px;
  561. content: "-";
  562. width: 1ch;
  563. display: inline-block;
  564. }
  565. .cesium-cesiumInspector-section-collapsed .cesium-cesiumInspector-sectionHeader::before {
  566. content: "+";
  567. }
  568. /* packages/widgets/Source/Cesium3DTilesInspector/Cesium3DTilesInspector.css */
  569. ul.cesium-cesiumInspector-statistics {
  570. margin: 0;
  571. padding-top: 3px;
  572. padding-bottom: 3px;
  573. }
  574. ul.cesium-cesiumInspector-statistics + ul.cesium-cesiumInspector-statistics {
  575. border-top: 1px solid #aaa;
  576. }
  577. .cesium-cesiumInspector-slider {
  578. margin-top: 5px;
  579. }
  580. .cesium-cesiumInspector-slider input[type=number] {
  581. text-align: left;
  582. background-color: #222;
  583. outline: none;
  584. border: 1px solid #444;
  585. color: #edffff;
  586. width: 100px;
  587. border-radius: 3px;
  588. padding: 1px;
  589. margin-left: 10px;
  590. cursor: auto;
  591. }
  592. .cesium-cesiumInspector-slider input[type=number]::-webkit-outer-spin-button,
  593. .cesium-cesiumInspector-slider input[type=number]::-webkit-inner-spin-button {
  594. -webkit-appearance: none;
  595. margin: 0;
  596. }
  597. .cesium-cesiumInspector-slider input[type=range] {
  598. margin-left: 5px;
  599. vertical-align: middle;
  600. }
  601. .cesium-cesiumInspector-hide .cesium-cesiumInspector-styleEditor {
  602. display: none;
  603. }
  604. .cesium-cesiumInspector-styleEditor {
  605. padding: 10px;
  606. border-radius: 5px;
  607. background: rgba(48, 51, 54, 0.8);
  608. border: 1px solid #444;
  609. }
  610. .cesium-cesiumInspector-styleEditor textarea {
  611. width: 100%;
  612. height: 300px;
  613. background: transparent;
  614. color: #edffff;
  615. border: none;
  616. padding: 0;
  617. white-space: pre;
  618. overflow-wrap: normal;
  619. overflow-x: auto;
  620. }
  621. .cesium-3DTilesInspector {
  622. width: 300px;
  623. pointer-events: all;
  624. }
  625. .cesium-3DTilesInspector-statistics {
  626. font-size: 11px;
  627. }
  628. .cesium-3DTilesInspector-disabledElementsInfo {
  629. margin: 5px 0 0 0;
  630. padding: 0 0 0 20px;
  631. color: #eed202;
  632. }
  633. .cesium-3DTilesInspector div,
  634. .cesium-3DTilesInspector input[type=range] {
  635. width: 100%;
  636. box-sizing: border-box;
  637. }
  638. .cesium-cesiumInspector-error {
  639. color: #ff9e9e;
  640. overflow: auto;
  641. }
  642. .cesium-3DTilesInspector .cesium-cesiumInspector-section {
  643. margin-top: 3px;
  644. }
  645. .cesium-3DTilesInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show {
  646. border-top: 1px solid white;
  647. }
  648. input.cesium-cesiumInspector-url {
  649. overflow: hidden;
  650. white-space: nowrap;
  651. overflow-x: scroll;
  652. background-color: transparent;
  653. color: white;
  654. outline: none;
  655. border: none;
  656. height: 1em;
  657. width: 100%;
  658. }
  659. .cesium-cesiumInspector .field-group {
  660. display: table;
  661. }
  662. .cesium-cesiumInspector .field-group > label {
  663. display: table-cell;
  664. font-weight: bold;
  665. }
  666. .cesium-cesiumInspector .field-group > .field {
  667. display: table-cell;
  668. width: 100%;
  669. }
  670. /* packages/widgets/Source/VoxelInspector/VoxelInspector.css */
  671. .cesium-VoxelInspector {
  672. width: 300px;
  673. pointer-events: all;
  674. }
  675. .cesium-VoxelInspector div,
  676. .cesium-VoxelInspector input[type=range] {
  677. width: 100%;
  678. box-sizing: border-box;
  679. }
  680. .cesium-VoxelInspector .cesium-cesiumInspector-section {
  681. margin-top: 3px;
  682. }
  683. .cesium-VoxelInspector .cesium-cesiumInspector-sectionHeader + .cesium-cesiumInspector-show {
  684. border-top: 1px solid white;
  685. }
  686. /* packages/widgets/Source/FullscreenButton/FullscreenButton.css */
  687. .cesium-button.cesium-fullscreenButton {
  688. display: block;
  689. width: 100%;
  690. height: 100%;
  691. margin: 0;
  692. border-radius: 0;
  693. }
  694. /* packages/widgets/Source/VRButton/VRButton.css */
  695. .cesium-button.cesium-vrButton {
  696. display: block;
  697. width: 100%;
  698. height: 100%;
  699. margin: 0;
  700. border-radius: 0;
  701. }
  702. /* packages/widgets/Source/Geocoder/Geocoder.css */
  703. .cesium-viewer-geocoderContainer .cesium-geocoder-input {
  704. border: solid 1px #444;
  705. background-color: rgba(40, 40, 40, 0.7);
  706. color: white;
  707. display: inline-block;
  708. vertical-align: middle;
  709. width: 0;
  710. height: 32px;
  711. margin: 0;
  712. padding: 0 32px 0 0;
  713. border-radius: 0;
  714. box-sizing: border-box;
  715. transition: width ease-in-out 0.25s, background-color 0.2s ease-in-out;
  716. -webkit-appearance: none;
  717. }
  718. .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input {
  719. border-color: #aef;
  720. box-shadow: 0 0 8px #fff;
  721. }
  722. .cesium-viewer-geocoderContainer .cesium-geocoder-input:focus {
  723. border-color: #ea4;
  724. background-color: rgba(15, 15, 15, 0.9);
  725. box-shadow: none;
  726. outline: none;
  727. }
  728. .cesium-viewer-geocoderContainer:hover .cesium-geocoder-input,
  729. .cesium-viewer-geocoderContainer .cesium-geocoder-input:focus,
  730. .cesium-viewer-geocoderContainer .cesium-geocoder-input-wide {
  731. padding-left: 4px;
  732. width: 250px;
  733. }
  734. .cesium-viewer-geocoderContainer .search-results {
  735. position: absolute;
  736. background-color: #000;
  737. color: #eee;
  738. overflow-y: auto;
  739. opacity: 0.8;
  740. width: 100%;
  741. }
  742. .cesium-viewer-geocoderContainer .search-results ul {
  743. list-style-type: none;
  744. margin: 0;
  745. padding: 0;
  746. }
  747. .cesium-viewer-geocoderContainer .search-results ul li {
  748. font-size: 14px;
  749. padding: 3px 10px;
  750. }
  751. .cesium-viewer-geocoderContainer .search-results ul li:hover {
  752. cursor: pointer;
  753. }
  754. .cesium-viewer-geocoderContainer .search-results ul li.active {
  755. background: #48b;
  756. }
  757. .cesium-geocoder-searchButton {
  758. background-color: #303336;
  759. display: inline-block;
  760. position: absolute;
  761. cursor: pointer;
  762. width: 32px;
  763. top: 1px;
  764. right: 1px;
  765. height: 30px;
  766. vertical-align: middle;
  767. fill: #edffff;
  768. }
  769. .cesium-geocoder-searchButton:hover {
  770. background-color: #48b;
  771. }
  772. /* packages/widgets/Source/InfoBox/InfoBox.css */
  773. .cesium-infoBox {
  774. display: block;
  775. position: absolute;
  776. top: 50px;
  777. right: 0;
  778. width: 40%;
  779. max-width: 480px;
  780. background: rgba(38, 38, 38, 0.95);
  781. color: #edffff;
  782. border: 1px solid #444;
  783. border-right: none;
  784. border-top-left-radius: 7px;
  785. border-bottom-left-radius: 7px;
  786. box-shadow: 0 0 10px 1px #000;
  787. transform: translate(100%, 0);
  788. visibility: hidden;
  789. opacity: 0;
  790. transition:
  791. visibility 0s 0.2s,
  792. opacity 0.2s ease-in,
  793. transform 0.2s ease-in;
  794. }
  795. .cesium-infoBox-visible {
  796. transform: translate(0, 0);
  797. visibility: visible;
  798. opacity: 1;
  799. transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  800. }
  801. .cesium-infoBox-title {
  802. display: block;
  803. height: 20px;
  804. padding: 5px 30px 5px 25px;
  805. background: rgba(84, 84, 84, 1);
  806. border-top-left-radius: 7px;
  807. text-align: center;
  808. text-overflow: ellipsis;
  809. white-space: nowrap;
  810. overflow: hidden;
  811. box-sizing: content-box;
  812. }
  813. .cesium-infoBox-bodyless .cesium-infoBox-title {
  814. border-bottom-left-radius: 7px;
  815. }
  816. button.cesium-infoBox-camera {
  817. display: block;
  818. position: absolute;
  819. top: 4px;
  820. left: 4px;
  821. width: 22px;
  822. height: 22px;
  823. background: transparent;
  824. border-color: transparent;
  825. border-radius: 3px;
  826. padding: 0 5px;
  827. margin: 0;
  828. }
  829. button.cesium-infoBox-close {
  830. display: block;
  831. position: absolute;
  832. top: 5px;
  833. right: 5px;
  834. height: 20px;
  835. background: transparent;
  836. border: none;
  837. border-radius: 2px;
  838. font-weight: bold;
  839. font-size: 16px;
  840. padding: 0 5px;
  841. margin: 0;
  842. color: #edffff;
  843. }
  844. button.cesium-infoBox-close:focus {
  845. background: rgba(238, 136, 0, 0.44);
  846. outline: none;
  847. }
  848. button.cesium-infoBox-close:hover {
  849. background: #888;
  850. color: #000;
  851. }
  852. button.cesium-infoBox-close:active {
  853. background: #a00;
  854. color: #000;
  855. }
  856. .cesium-infoBox-bodyless .cesium-infoBox-iframe {
  857. display: none;
  858. }
  859. .cesium-infoBox-iframe {
  860. border: none;
  861. width: 100%;
  862. width: calc(100% - 2px);
  863. }
  864. /* packages/widgets/Source/SceneModePicker/SceneModePicker.css */
  865. span.cesium-sceneModePicker-wrapper {
  866. display: inline-block;
  867. position: relative;
  868. margin: 0 3px;
  869. }
  870. .cesium-sceneModePicker-visible {
  871. visibility: visible;
  872. opacity: 1;
  873. transition: opacity 0.25s linear;
  874. }
  875. .cesium-sceneModePicker-hidden {
  876. visibility: hidden;
  877. opacity: 0;
  878. transition: visibility 0s 0.25s, opacity 0.25s linear;
  879. }
  880. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-none {
  881. display: none;
  882. }
  883. .cesium-sceneModePicker-slide-svg {
  884. transition: left 2s;
  885. top: 0;
  886. left: 0;
  887. }
  888. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-dropDown-icon {
  889. box-sizing: border-box;
  890. padding: 0;
  891. margin: 3px 0;
  892. }
  893. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D,
  894. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView,
  895. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D {
  896. margin: 0 0 3px 0;
  897. }
  898. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-icon2D {
  899. left: 100%;
  900. }
  901. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button3D .cesium-sceneModePicker-iconColumbusView {
  902. left: 200%;
  903. }
  904. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon3D {
  905. left: -200%;
  906. }
  907. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-buttonColumbusView .cesium-sceneModePicker-icon2D {
  908. left: -100%;
  909. }
  910. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-icon3D {
  911. left: -100%;
  912. }
  913. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-button2D .cesium-sceneModePicker-iconColumbusView {
  914. left: 100%;
  915. }
  916. .cesium-sceneModePicker-wrapper .cesium-sceneModePicker-selected {
  917. border-color: #2e2;
  918. box-shadow: 0 0 8px #fff, 0 0 8px #fff;
  919. }
  920. /* packages/widgets/Source/ProjectionPicker/ProjectionPicker.css */
  921. span.cesium-projectionPicker-wrapper {
  922. display: inline-block;
  923. position: relative;
  924. margin: 0 3px;
  925. }
  926. .cesium-projectionPicker-visible {
  927. visibility: visible;
  928. opacity: 1;
  929. transition: opacity 0.25s linear;
  930. }
  931. .cesium-projectionPicker-hidden {
  932. visibility: hidden;
  933. opacity: 0;
  934. transition: visibility 0s 0.25s, opacity 0.25s linear;
  935. }
  936. .cesium-projectionPicker-wrapper .cesium-projectionPicker-none {
  937. display: none;
  938. }
  939. .cesium-projectionPicker-wrapper .cesium-projectionPicker-dropDown-icon {
  940. box-sizing: border-box;
  941. padding: 0;
  942. margin: 3px 0;
  943. }
  944. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective,
  945. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic {
  946. margin: 0 0 3px 0;
  947. }
  948. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonPerspective .cesium-projectionPicker-iconOrthographic {
  949. left: 100%;
  950. }
  951. .cesium-projectionPicker-wrapper .cesium-projectionPicker-buttonOrthographic .cesium-projectionPicker-iconPerspective {
  952. left: -100%;
  953. }
  954. .cesium-projectionPicker-wrapper .cesium-projectionPicker-selected {
  955. border-color: #2e2;
  956. box-shadow: 0 0 8px #fff, 0 0 8px #fff;
  957. }
  958. /* packages/widgets/Source/PerformanceWatchdog/PerformanceWatchdog.css */
  959. .cesium-performance-watchdog-message-area {
  960. position: relative;
  961. background-color: yellow;
  962. color: black;
  963. padding: 10px;
  964. }
  965. .cesium-performance-watchdog-message {
  966. margin-right: 30px;
  967. }
  968. .cesium-performance-watchdog-message-dismiss {
  969. position: absolute;
  970. right: 0;
  971. margin: 0 10px 0 0;
  972. }
  973. /* packages/widgets/Source/NavigationHelpButton/NavigationHelpButton.css */
  974. .cesium-navigationHelpButton-wrapper {
  975. position: relative;
  976. display: inline-block;
  977. }
  978. .cesium-navigation-help {
  979. visibility: hidden;
  980. position: absolute;
  981. top: 38px;
  982. right: 2px;
  983. width: 250px;
  984. border-radius: 10px;
  985. transform: scale(0.01);
  986. transform-origin: 234px -10px;
  987. transition: visibility 0s 0.25s, transform 0.25s ease-in;
  988. }
  989. .cesium-navigation-help-visible {
  990. visibility: visible;
  991. transform: scale(1);
  992. transition: transform 0.25s ease-out;
  993. }
  994. .cesium-navigation-help-instructions {
  995. border: 1px solid #444;
  996. background-color: rgba(38, 38, 38, 0.75);
  997. padding-bottom: 5px;
  998. border-radius: 0 0 10px 10px;
  999. }
  1000. .cesium-click-navigation-help {
  1001. display: none;
  1002. }
  1003. .cesium-touch-navigation-help {
  1004. display: none;
  1005. padding-top: 5px;
  1006. }
  1007. .cesium-click-navigation-help-visible {
  1008. display: block;
  1009. }
  1010. .cesium-touch-navigation-help-visible {
  1011. display: block;
  1012. }
  1013. .cesium-navigation-help-pan {
  1014. color: #66ccff;
  1015. font-weight: bold;
  1016. }
  1017. .cesium-navigation-help-zoom {
  1018. color: #65fd00;
  1019. font-weight: bold;
  1020. }
  1021. .cesium-navigation-help-rotate {
  1022. color: #ffd800;
  1023. font-weight: bold;
  1024. }
  1025. .cesium-navigation-help-tilt {
  1026. color: #d800d8;
  1027. font-weight: bold;
  1028. }
  1029. .cesium-navigation-help-details {
  1030. color: #ffffff;
  1031. }
  1032. .cesium-navigation-button {
  1033. color: #fff;
  1034. background-color: transparent;
  1035. border-bottom: none;
  1036. border-top: 1px solid #444;
  1037. border-right: 1px solid #444;
  1038. margin: 0;
  1039. width: 50%;
  1040. cursor: pointer;
  1041. }
  1042. .cesium-navigation-button-icon {
  1043. vertical-align: middle;
  1044. padding: 5px 1px;
  1045. }
  1046. .cesium-navigation-button:focus {
  1047. outline: none;
  1048. }
  1049. .cesium-navigation-button-left {
  1050. border-radius: 10px 0 0 0;
  1051. border-left: 1px solid #444;
  1052. }
  1053. .cesium-navigation-button-right {
  1054. border-radius: 0 10px 0 0;
  1055. border-left: none;
  1056. }
  1057. .cesium-navigation-button-selected {
  1058. background-color: rgba(38, 38, 38, 0.75);
  1059. }
  1060. .cesium-navigation-button-unselected {
  1061. background-color: rgba(0, 0, 0, 0.75);
  1062. }
  1063. .cesium-navigation-button-unselected:hover {
  1064. background-color: rgba(76, 76, 76, 0.75);
  1065. }
  1066. /* packages/widgets/Source/SelectionIndicator/SelectionIndicator.css */
  1067. .cesium-selection-wrapper {
  1068. position: absolute;
  1069. width: 160px;
  1070. height: 160px;
  1071. pointer-events: none;
  1072. visibility: hidden;
  1073. opacity: 0;
  1074. transition: visibility 0s 0.2s, opacity 0.2s ease-in;
  1075. }
  1076. .cesium-selection-wrapper-visible {
  1077. visibility: visible;
  1078. opacity: 1;
  1079. transition: opacity 0.2s ease-out;
  1080. }
  1081. .cesium-selection-wrapper svg {
  1082. fill: #2e2;
  1083. stroke: #000;
  1084. stroke-width: 1.1px;
  1085. }
  1086. /* packages/widgets/Source/Timeline/Timeline.css */
  1087. .cesium-timeline-main {
  1088. position: relative;
  1089. left: 0;
  1090. bottom: 0;
  1091. overflow: hidden;
  1092. border: solid 1px #888;
  1093. -moz-user-select: none;
  1094. -webkit-user-select: none;
  1095. -ms-user-select: none;
  1096. user-select: none;
  1097. }
  1098. .cesium-timeline-trackContainer {
  1099. width: 100%;
  1100. overflow: auto;
  1101. border-top: solid 1px #888;
  1102. position: relative;
  1103. top: 0;
  1104. left: 0;
  1105. }
  1106. .cesium-timeline-tracks {
  1107. position: absolute;
  1108. top: 0;
  1109. left: 0;
  1110. width: 100%;
  1111. }
  1112. .cesium-timeline-needle {
  1113. position: absolute;
  1114. left: 0;
  1115. top: 1.7em;
  1116. bottom: 0;
  1117. width: 1px;
  1118. background: #f00;
  1119. }
  1120. .cesium-timeline-bar {
  1121. position: relative;
  1122. left: 0;
  1123. top: 0;
  1124. overflow: hidden;
  1125. cursor: pointer;
  1126. width: 100%;
  1127. height: 1.7em;
  1128. background:
  1129. linear-gradient(
  1130. to bottom,
  1131. rgba(116, 117, 119, 0.8) 0%,
  1132. rgba(58, 68, 82, 0.8) 11%,
  1133. rgba(46, 50, 56, 0.8) 46%,
  1134. rgba(53, 53, 53, 0.8) 81%,
  1135. rgba(53, 53, 53, 0.8) 100%);
  1136. }
  1137. .cesium-timeline-ruler {
  1138. visibility: hidden;
  1139. white-space: nowrap;
  1140. font-size: 80%;
  1141. z-index: -200;
  1142. }
  1143. .cesium-timeline-highlight {
  1144. position: absolute;
  1145. bottom: 0;
  1146. left: 0;
  1147. background: #08f;
  1148. }
  1149. .cesium-timeline-ticLabel {
  1150. position: absolute;
  1151. top: 0;
  1152. left: 0;
  1153. white-space: nowrap;
  1154. font-size: 80%;
  1155. color: #eee;
  1156. }
  1157. .cesium-timeline-ticMain {
  1158. position: absolute;
  1159. bottom: 0;
  1160. left: 0;
  1161. width: 1px;
  1162. height: 50%;
  1163. background: #eee;
  1164. }
  1165. .cesium-timeline-ticSub {
  1166. position: absolute;
  1167. bottom: 0;
  1168. left: 0;
  1169. width: 1px;
  1170. height: 33%;
  1171. background: #aaa;
  1172. }
  1173. .cesium-timeline-ticTiny {
  1174. position: absolute;
  1175. bottom: 0;
  1176. left: 0;
  1177. width: 1px;
  1178. height: 25%;
  1179. background: #888;
  1180. }
  1181. .cesium-timeline-icon16 {
  1182. display: block;
  1183. position: absolute;
  1184. width: 16px;
  1185. height: 16px;
  1186. 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==);
  1187. background-repeat: no-repeat;
  1188. }
  1189. /* packages/widgets/Source/Viewer/Viewer.css */
  1190. .cesium-viewer {
  1191. font-family: sans-serif;
  1192. font-size: 16px;
  1193. overflow: hidden;
  1194. display: block;
  1195. position: relative;
  1196. top: 0;
  1197. left: 0;
  1198. width: 100%;
  1199. height: 100%;
  1200. }
  1201. .cesium-viewer-cesiumWidgetContainer {
  1202. width: 100%;
  1203. height: 100%;
  1204. }
  1205. .cesium-viewer-bottom {
  1206. display: block;
  1207. position: absolute;
  1208. bottom: 0;
  1209. left: 0;
  1210. padding-right: 5px;
  1211. }
  1212. .cesium-viewer .cesium-widget-credits {
  1213. display: inline;
  1214. position: static;
  1215. bottom: auto;
  1216. left: auto;
  1217. padding-right: 0;
  1218. color: #ffffff;
  1219. font-size: 10px;
  1220. text-shadow: 0 0 2px #000000;
  1221. }
  1222. .cesium-viewer-timelineContainer {
  1223. position: absolute;
  1224. bottom: 0;
  1225. left: 169px;
  1226. right: 29px;
  1227. height: 27px;
  1228. padding: 0;
  1229. margin: 0;
  1230. overflow: hidden;
  1231. font-size: 14px;
  1232. }
  1233. .cesium-viewer-animationContainer {
  1234. position: absolute;
  1235. bottom: 0;
  1236. left: 0;
  1237. padding: 0;
  1238. width: 169px;
  1239. height: 112px;
  1240. }
  1241. .cesium-viewer-fullscreenContainer {
  1242. position: absolute;
  1243. bottom: 0;
  1244. right: 0;
  1245. padding: 0;
  1246. width: 29px;
  1247. height: 29px;
  1248. overflow: hidden;
  1249. }
  1250. .cesium-viewer-vrContainer {
  1251. position: absolute;
  1252. bottom: 0;
  1253. right: 0;
  1254. padding: 0;
  1255. width: 29px;
  1256. height: 29px;
  1257. overflow: hidden;
  1258. }
  1259. .cesium-viewer-toolbar {
  1260. display: block;
  1261. position: absolute;
  1262. top: 5px;
  1263. right: 5px;
  1264. }
  1265. .cesium-viewer-cesiumInspectorContainer {
  1266. display: block;
  1267. position: absolute;
  1268. top: 50px;
  1269. right: 10px;
  1270. }
  1271. .cesium-viewer-geocoderContainer {
  1272. position: relative;
  1273. display: inline-block;
  1274. margin: 0 3px;
  1275. }
  1276. .cesium-viewer-cesium3DTilesInspectorContainer {
  1277. display: block;
  1278. position: absolute;
  1279. top: 50px;
  1280. right: 10px;
  1281. max-height: calc(100% - 120px);
  1282. box-sizing: border-box;
  1283. overflow-y: auto;
  1284. overflow-x: hidden;
  1285. }
  1286. .cesium-viewer-voxelInspectorContainer {
  1287. display: block;
  1288. position: absolute;
  1289. top: 50px;
  1290. right: 10px;
  1291. max-height: calc(100% - 120px);
  1292. box-sizing: border-box;
  1293. overflow-y: auto;
  1294. overflow-x: hidden;
  1295. }
  1296. /* packages/widgets/Source/I3SBuildingSceneLayerExplorer/I3SBuildingSceneLayerExplorer.css */
  1297. .cesium-viewer-i3s-explorer ul {
  1298. list-style-type: none;
  1299. }
  1300. .cesium-viewer-i3s-explorer .layersList {
  1301. padding: 0;
  1302. }
  1303. .cesium-viewer-i3s-explorer input {
  1304. margin: 0 3px 0 0;
  1305. }
  1306. .cesium-viewer-i3s-explorer .expandItem {
  1307. cursor: pointer;
  1308. user-select: none;
  1309. width: 20px;
  1310. }
  1311. .cesium-viewer-i3s-explorer .nested,
  1312. .cesium-viewer-i3s-explorer #bsl-wrapper {
  1313. display: none;
  1314. }
  1315. .cesium-viewer-i3s-explorer .active {
  1316. display: block;
  1317. }
  1318. .cesium-viewer-i3s-explorer .li-wrapper {
  1319. display: flex;
  1320. flex-direction: row;
  1321. align-content: center;
  1322. }
  1323. /* packages/widgets/Source/widgets.css */