Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InspectorView.uss 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .InspectorView {
  2. position:absolute;
  3. justify-content: flex-start;
  4. min-width: 100px;
  5. min-height: 100px;
  6. width: 300px;
  7. height: 275px;
  8. }
  9. .InspectorView > .mainContainer {
  10. flex-direction: column;
  11. align-items: stretch;
  12. }
  13. ScrollView {
  14. flex: 1 0 0;
  15. }
  16. .InspectorView > .mainContainer {
  17. border-left-width: 1px;
  18. border-top-width: 1px;
  19. border-right-width: 1px;
  20. border-bottom-width: 1px;
  21. border-radius: 5px;
  22. background-color: #2e2e2e;
  23. border-color: #191919;
  24. flex-direction: column;
  25. align-items: stretch;
  26. margin: 6px;
  27. flex-grow: 1;
  28. }
  29. .InspectorView > .mainContainer > #content {
  30. flex-grow: 1;
  31. }
  32. .InspectorView > .mainContainer > #content > #contentContainer {
  33. min-height: auto;
  34. padding: 6px;
  35. flex-direction: column;
  36. flex-grow: 1;
  37. align-items: stretch;
  38. padding-bottom: 15px;
  39. }
  40. .InspectorView > .mainContainer > #content > #header {
  41. overflow: hidden;
  42. flex-direction: row;
  43. justify-content: space-between;
  44. background-color: #393939;
  45. padding: 8px;
  46. border-top-left-radius: 6px;
  47. border-top-right-radius: 6px;
  48. }
  49. .InspectorView.scrollable > .mainContainer > #content > .unity-scroll-view > .unity-scroller--horizontal {
  50. background-color: #393939;
  51. }
  52. .InspectorView.scrollable > .mainContainer > #content > .unity-scroll-view > .unity-scroller--vertical {
  53. background-color: #393939;
  54. }
  55. #maxItemsMessageLabel {
  56. visibility: hidden;
  57. padding: 8px 4px 4px 4px;
  58. color: rgb(180, 180, 180);
  59. align-self: center;
  60. border-color: #1F1F1F;
  61. }
  62. #labelContainer {
  63. flex: 1 0 0;
  64. flex-direction: column;
  65. align-items: stretch;
  66. }
  67. #titleLabel {
  68. font-size: 14px;
  69. color: rgb(180, 180, 180);
  70. padding: 1px 2px 2px;
  71. }
  72. .MainFoldout {
  73. background-color: #383838;
  74. border-color: #1F1F1F;
  75. border-top-width: 1px;
  76. }
  77. .InspectorView #NodeSettingsContainer {
  78. padding-left: 3px;
  79. padding-right: 6px;
  80. width: 0;
  81. min-width: 100%;
  82. }