Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

GraphSubWindow.uss 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .unity-label {
  2. padding: 5px 2px 2px;
  3. margin: 2px 4px;
  4. }
  5. .GraphSubWindow {
  6. position:absolute;
  7. border-left-width: 1px;
  8. border-top-width: 1px;
  9. border-right-width: 1px;
  10. border-bottom-width: 1px;
  11. border-radius: 5px;
  12. flex-direction: column;
  13. background-color: #2b2b2b;
  14. border-color: #191919;
  15. min-width: 100px;
  16. min-height: 100px;
  17. width: 200px;
  18. height: 200px;
  19. }
  20. .GraphSubWindow.windowed {
  21. position: relative;
  22. padding-top: 0;
  23. flex: auto;
  24. border-left-width: 0;
  25. border-top-width: 0;
  26. border-right-width: 0;
  27. border-bottom-width: 0;
  28. border-radius: 0;
  29. width: initial;
  30. height: initial;
  31. }
  32. .GraphSubWindow.windowed > .resizer {
  33. display: none;
  34. }
  35. .GraphSubWindow > .mainContainer {
  36. flex-direction: column;
  37. align-items: stretch;
  38. }
  39. .GraphSubWindow.scrollable > .mainContainer {
  40. position: absolute;
  41. top:0;
  42. left:0;
  43. right:0;
  44. bottom:0;
  45. }
  46. .GraphSubWindow > .mainContainer > #content {
  47. flex-direction: column;
  48. align-items: stretch;
  49. }
  50. .GraphSubWindow.scrollable > .mainContainer > #content {
  51. position: absolute;
  52. top:0;
  53. left:0;
  54. right:0;
  55. bottom:0;
  56. flex-direction: column;
  57. align-items: stretch;
  58. }
  59. .GraphSubWindow > .mainContainer > #content > ScrollView {
  60. flex: 1 0 0;
  61. }
  62. .GraphSubWindow > .mainContainer > #content > #contentContainer {
  63. min-height: auto;
  64. padding: 0 0 6px;
  65. flex-direction: column;
  66. flex-grow: 1;
  67. align-items: stretch;
  68. }
  69. .GraphSubWindow > #content > #header {
  70. font-size: 15px;
  71. }
  72. .GraphSubWindow > .mainContainer > #content > #header {
  73. overflow: hidden;
  74. flex-direction: row;
  75. align-items: stretch;
  76. background-color: #393939;
  77. border-bottom-width: 1px;
  78. border-color: #212121;
  79. border-top-right-radius: 4px;
  80. border-top-left-radius: 4px;
  81. padding-left: 1px;
  82. padding-top: 4px;
  83. padding-bottom: 2px;
  84. }