SceneEditor.css 870 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .SceneEditor {
  2. padding: 5px;
  3. }
  4. .SceneEditor .SceneEditorContainer {
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .SceneEditor canvas {
  9. border-radius: 3px;
  10. }
  11. .PropertyLockIcon:hover {
  12. cursor: pointer;
  13. }
  14. #InspectorView .PrefabLink {
  15. margin-bottom: 5px;
  16. margin-top: 5px;
  17. padding: 5px;
  18. background: rgba(0, 0, 0, 0.1);
  19. width: 100%;
  20. border-radius: 3px;
  21. }
  22. #InspectorView .PrefabLink:nth-child(1) {
  23. margin-top: 0px;
  24. }
  25. .lightBlue #InspectorView .PrefabLink {
  26. background: #b2c3dd66;
  27. }
  28. /* light */
  29. .light .SceneEditor .SceneEditorContainer {
  30. background: #8e8e8e;
  31. }
  32. /* lightBlue*/
  33. .lightBlue .SceneEditor .SceneEditorContainer {
  34. background: #97AAC2;
  35. }
  36. /* dark */
  37. .dark .SceneEditor .SceneEditorContainer {
  38. background: #3f3f3f;
  39. border-radius: 3px;
  40. }
  41. /* dark plus */
  42. .dark .SceneEditor {
  43. padding: 0px !important;
  44. }