No Description
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.

LightBatchingDebugger.uss 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. :root {
  2. --border-color-custom: rgb(161, 154, 154);
  3. }
  4. .BatchList {
  5. }
  6. .BatchList.HeaderContainer {
  7. flex-direction: row;
  8. height: auto;
  9. background-color: var(--unity-colors-inspector_titlebar-background);
  10. }
  11. .BatchList.IndexColumn {
  12. margin-left: 5px;
  13. width: 65px;
  14. }
  15. .BatchList.ColorColumn {
  16. width: 3px;
  17. }
  18. .BatchList.NameColumn {
  19. flex-grow: 2;
  20. margin-left: 5px;
  21. }
  22. .BatchList.BatchContainer {
  23. flex-direction: row;
  24. }
  25. .BatchList.ColorColumn.Container {
  26. align-items: center;
  27. }
  28. .BatchList.ColorColumn.Splitter {
  29. margin-top: 5px;
  30. margin-bottom: 5px;
  31. margin-right: 5px;
  32. }
  33. .BatchList.IndexColumn.Header {
  34. margin-top: 5px;
  35. margin-bottom: 5px;
  36. }
  37. .BatchList.NameColumn.Header {
  38. margin-top: 5px;
  39. margin-bottom: 5px;
  40. }
  41. .BatchList.IndexColumn.Batch {
  42. margin-top: 5px;
  43. }
  44. .BatchList.NameColumn.Batch {
  45. margin-top: 5px;
  46. flex-direction: column;
  47. }
  48. .BatchList.List {
  49. flex-grow: 1;
  50. }
  51. .LayerNameLabel {
  52. margin-bottom: 5px;
  53. }
  54. .InfoView {
  55. }
  56. .InfoView.Content {
  57. border-bottom-width: 10px;
  58. white-space: normal;
  59. }
  60. .InfoView.Content.PillContainer {
  61. flex-direction: row;
  62. flex-wrap: wrap;
  63. }
  64. .InfoView.Content.Spacer {
  65. flex-grow: 1;
  66. }
  67. .InfoView.Footer {
  68. padding: 10px;
  69. white-space: normal;
  70. }
  71. .InfoView.Header {
  72. padding: 5px;
  73. align-items: flex-start;
  74. justify-content: space-around;
  75. background-color: var(--unity-colors-window-background);
  76. }
  77. .InfoView.Header.Bottom {
  78. border-bottom-color: var(--unity-colors-default-border);
  79. }
  80. .InfoView.Header.Top {
  81. border-top-color: var(--unity-colors-default-border);
  82. }
  83. .InfoScroller {
  84. flex-grow: 1;
  85. padding: 10px;
  86. }
  87. .MinSize {
  88. min-width: 160px;
  89. min-height: 160px;
  90. }
  91. .InfoContainer{
  92. min-width: 160px;
  93. flex-grow: 1;
  94. background-color: var(--unity-colors-default-background);
  95. justify-content: center;
  96. }
  97. .InitialPrompt {
  98. align-self: center;
  99. }
  100. .Pill {
  101. border-color: var(--border-color-custom);
  102. border-left-width: 1px;
  103. border-right-width: 1px;
  104. border-top-width: 1px;
  105. border-bottom-width: 1px;
  106. border-top-left-radius: 10px;
  107. border-bottom-left-radius: 10px;
  108. border-top-right-radius: 10px;
  109. border-bottom-right-radius: 10px;
  110. }