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

PortInputView.uss 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. PortInputView {
  2. width: 232px;
  3. height: 22px;
  4. padding-top: 1px;
  5. flex-direction: row;
  6. justify-content: flex-end;
  7. }
  8. PortInputView > #container {
  9. background-color: rgba(63, 63, 63, 0.8);
  10. flex-direction: row;
  11. align-items: center;
  12. padding-left: 8px;
  13. margin-right: 12px;
  14. border-left-width: 1px;
  15. border-top-width: 1px;
  16. border-right-width: 1px;
  17. border-bottom-width: 1px;
  18. border-color: rgba(25, 25, 25, 0.8);
  19. border-radius: 2px;
  20. }
  21. PortInputView > #container > #disabledOverlay {
  22. position: absolute;
  23. left: 0;
  24. right: 0;
  25. top: 0;
  26. bottom: 0;
  27. background-color: rgba(32, 32, 32, 0.0);
  28. }
  29. PortInputView.disabled > #container > #disabledOverlay {
  30. background-color: rgba(32, 32, 32, 0.75);
  31. }
  32. PortInputView > #container > #slot {
  33. width: 8px;
  34. height: 8px;
  35. background-color: #2B2B2B;
  36. border-color: #232323;
  37. border-top-width: 1px;
  38. border-bottom-width: 1px;
  39. border-left-width: 1px;
  40. border-right-width: 1px;
  41. border-radius: 4px;
  42. margin-left: 6px;
  43. margin-right: 6px;
  44. align-items: center;
  45. justify-content: center;
  46. }
  47. PortInputView > #edge {
  48. position: absolute;
  49. right: 0px;
  50. top: 10.5px;
  51. height: 2px;
  52. width: 20px;
  53. background-color: #ff0000;
  54. }
  55. PortInputView > #container > #slot > #dot {
  56. width: 4px;
  57. height: 4px;
  58. background-color: #ff0000;
  59. border-radius: 4px;
  60. }
  61. PortInputView.typeMatrix4 > #container > #slot > #dot,
  62. PortInputView.typeMatrix3 > #container > #slot > #dot,
  63. PortInputView.typeMatrix2 > #container > #slot > #dot {
  64. background-color: #8FC1DF;
  65. }
  66. PortInputView.typeMatrix4,
  67. PortInputView.typeMatrix3,
  68. PortInputView.typeMatrix2 {
  69. --edge-color: #8FC1DF;
  70. }
  71. PortInputView.typeTexture2D > #container > #slot > #dot,
  72. PortInputView.typeTexture2DArray > #container > #slot > #dot,
  73. PortInputView.typeTexture3D > #container > #slot > #dot,
  74. PortInputView.typeCubemap > #container > #slot > #dot {
  75. background-color: #FF8B8B;
  76. }
  77. PortInputView.typeTexture2D,
  78. PortInputView.typeTexture2DArray,
  79. PortInputView.typeTexture3D,
  80. PortInputView.typeCubemap {
  81. --edge-color: #FF8B8B;
  82. }
  83. PortInputView.typeVector4 > #container > #slot > #dot {
  84. background-color: #FBCBF4;
  85. }
  86. PortInputView.typeVector4 {
  87. --edge-color: #FBCBF4;
  88. }
  89. PortInputView.typeVector3 > #container > #slot > #dot {
  90. background-color: #F6FF9A;
  91. }
  92. PortInputView.typeVector3 {
  93. --edge-color: #F6FF9A;
  94. }
  95. PortInputView.typeVector2 > #container > #slot > #dot {
  96. background-color: #9AEF92;
  97. }
  98. PortInputView.typeVector2 {
  99. --edge-color: #9AEF92;
  100. }
  101. PortInputView.typeVector1 > #container > #slot > #dot {
  102. background-color: #84E4E7;
  103. }
  104. PortInputView.typeVector1 {
  105. --edge-color: #84E4E7;
  106. }
  107. PortInputView.typeBoolean > #container > #slot > #dot {
  108. background-color: #9481E6;
  109. }
  110. PortInputView.typeBoolean {
  111. --edge-color: #9481E6;
  112. }