lighterShared.css 1.0 KB

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