CesiumInspector.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. .cesium-cesiumInspector {
  2. border-radius: 5px;
  3. -webkit-transition: width ease-in-out 0.25s;
  4. -moz-transition: width ease-in-out 0.25s;
  5. transition: width ease-in-out 0.25s;
  6. background: rgba(48, 51, 54, 0.8);
  7. border: 1px solid #444;
  8. color: #edffff;
  9. display: inline-block;
  10. position: relative;
  11. padding: 4px 12px;
  12. -moz-user-select: none;
  13. -webkit-user-select: none;
  14. -ms-user-select: none;
  15. user-select: none;
  16. overflow: hidden;
  17. }
  18. .cesium-cesiumInspector-button {
  19. text-align: center;
  20. font-size: 11pt;
  21. }
  22. .cesium-cesiumInspector-visible .cesium-cesiumInspector-button {
  23. border-bottom: 1px solid #aaa;
  24. padding-bottom: 3px;
  25. }
  26. .cesium-cesiumInspector input:enabled, .cesium-cesiumInspector-button {
  27. cursor: pointer;
  28. }
  29. .cesium-cesiumInspector-visible {
  30. width: 185px;
  31. height: auto;
  32. }
  33. .cesium-cesiumInspector-hidden {
  34. width: 122px;
  35. height: 17px;
  36. }
  37. .cesium-cesiumInspector-show {
  38. max-height: 500px;
  39. }
  40. .cesium-cesiumInspector-hide {
  41. max-height: 0;
  42. padding: 0 !important;
  43. overflow: hidden;
  44. }
  45. .cesium-cesiumInspector-dropDown {
  46. margin: 5px 0;
  47. font-family: sans-serif;
  48. font-size: 10pt;
  49. width: 185px;
  50. }
  51. .cesium-cesiumInspector-frustumStats {
  52. padding-left: 10px;
  53. padding: 5px;
  54. background-color: rgba(80, 80, 80, 0.75);
  55. }
  56. .cesium-cesiumInspector-pickButton {
  57. background-color: rgba(0, 0, 0, 0.3);
  58. border: 1px solid #444;
  59. color: #edffff;
  60. border-radius: 5px;
  61. padding: 3px 7px;
  62. cursor: pointer;
  63. -moz-user-select: none;
  64. -webkit-user-select: none;
  65. -ms-user-select: none;
  66. user-select: none;
  67. margin: 0 auto;
  68. }
  69. .cesium-cesiumInspector-pickButton:focus {
  70. outline: none;
  71. }
  72. .cesium-cesiumInspector-pickButton:active, .cesium-cesiumInspector-pickButtonHighlight {
  73. color: #000; /* For text buttons */
  74. background: #adf;
  75. border-color: #fff;
  76. box-shadow: 0 0 8px #fff;
  77. }
  78. .cesium-cesiumInspector-center {
  79. text-align: center;
  80. }
  81. .cesium-cesiumInspector-sectionHeader {
  82. font-weight: bold;
  83. }
  84. .cesium-cesiumInspector-pickSection {
  85. border: 1px solid #aaa;
  86. border-radius: 5px;
  87. padding: 3px;
  88. margin-bottom: 5px;
  89. }
  90. .cesium-cesiumInspector-section {
  91. margin-bottom: 10px;
  92. -webkit-transition: max-height 0.25s;
  93. -moz-transition: max-height 0.25s;
  94. transition: max-height 0.25s;
  95. }
  96. .cesium-cesiumInspector-toggleSwitch {
  97. padding: 3px;
  98. cursor: pointer;
  99. }
  100. .cesium-cesiumInspector-tileText {
  101. padding-bottom: 10px;
  102. border-bottom: 1px solid #aaa;
  103. }
  104. .cesium-cesiumInspector-relativeText {
  105. padding-top: 10px;
  106. }