lighterShared.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .cesium-lighter .cesium-button {
  2. color: #111; /* For text buttons */
  3. fill: #111; /* For SVG buttons */
  4. background: #e2f0ff;
  5. border: 1px solid #759dc0;
  6. }
  7. .cesium-lighter .cesium-button:focus {
  8. color: #000; /* For text buttons */
  9. fill: #000; /* For SVG buttons */
  10. border-color: #ea4;
  11. }
  12. .cesium-lighter .cesium-button:hover {
  13. color: #000; /* For text buttons */
  14. fill: #000; /* For SVG buttons */
  15. background: #a6d2ff;
  16. border-color: #aef;
  17. box-shadow: 0 0 8px #777;
  18. }
  19. .cesium-lighter .cesium-button:active {
  20. color: #fff; /* For text buttons */
  21. fill: #fff; /* For SVG buttons */
  22. background: #48b;
  23. border-color: #ea0;
  24. }
  25. .cesium-lighter .cesium-button:disabled,
  26. .cesium-lighter .cesium-button-disabled,
  27. .cesium-lighter .cesium-button-disabled:focus,
  28. .cesium-lighter .cesium-button-disabled:hover,
  29. .cesium-lighter .cesium-button-disabled:active {
  30. background: #ccc;
  31. border-color: #999;
  32. color: #999; /* For text buttons */
  33. fill: #999; /* For SVG buttons */
  34. box-shadow: none;
  35. }
  36. .cesium-lighter .cesium-performanceDisplay {
  37. background-color: #e2f0ff;
  38. border-color: #759dc0;
  39. }
  40. .cesium-lighter .cesium-performanceDisplay-fps {
  41. color: #e52;
  42. }
  43. .cesium-lighter .cesium-performanceDisplay-ms {
  44. color: #ea4;
  45. }