PortInputView.uss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 > #slot {
  22. width: 8px;
  23. height: 8px;
  24. background-color: #2B2B2B;
  25. border-color: #232323;
  26. border-top-width: 1px;
  27. border-bottom-width: 1px;
  28. border-left-width: 1px;
  29. border-right-width: 1px;
  30. border-radius: 4px;
  31. margin-left: 6px;
  32. margin-right: 6px;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36. PortInputView > #edge {
  37. position: absolute;
  38. right: 0px;
  39. top: 10.5px;
  40. height: 2px;
  41. width: 20px;
  42. background-color: #ff0000;
  43. }
  44. PortInputView > #container > #slot > #dot {
  45. width: 4px;
  46. height: 4px;
  47. background-color: #ff0000;
  48. border-radius: 4px;
  49. }
  50. PortInputView.typeMatrix4 > #container > #slot > #dot,
  51. PortInputView.typeMatrix3 > #container > #slot > #dot,
  52. PortInputView.typeMatrix2 > #container > #slot > #dot {
  53. background-color: #8FC1DF;
  54. }
  55. PortInputView.typeMatrix4,
  56. PortInputView.typeMatrix3,
  57. PortInputView.typeMatrix2 {
  58. --edge-color: #8FC1DF;
  59. }
  60. PortInputView.typeTexture2D > #container > #slot > #dot,
  61. PortInputView.typeTexture2DArray > #container > #slot > #dot,
  62. PortInputView.typeTexture3D > #container > #slot > #dot,
  63. PortInputView.typeCubemap > #container > #slot > #dot {
  64. background-color: #FF8B8B;
  65. }
  66. PortInputView.typeTexture2D,
  67. PortInputView.typeTexture2DArray,
  68. PortInputView.typeTexture3D,
  69. PortInputView.typeCubemap {
  70. --edge-color: #FF8B8B;
  71. }
  72. PortInputView.typeVector4 > #container > #slot > #dot {
  73. background-color: #FBCBF4;
  74. }
  75. PortInputView.typeVector4 {
  76. --edge-color: #FBCBF4;
  77. }
  78. PortInputView.typeVector3 > #container > #slot > #dot {
  79. background-color: #F6FF9A;
  80. }
  81. PortInputView.typeVector3 {
  82. --edge-color: #F6FF9A;
  83. }
  84. PortInputView.typeVector2 > #container > #slot > #dot {
  85. background-color: #9AEF92;
  86. }
  87. PortInputView.typeVector2 {
  88. --edge-color: #9AEF92;
  89. }
  90. PortInputView.typeVector1 > #container > #slot > #dot {
  91. background-color: #84E4E7;
  92. }
  93. PortInputView.typeVector1 {
  94. --edge-color: #84E4E7;
  95. }
  96. PortInputView.typeBoolean > #container > #slot > #dot {
  97. background-color: #9481E6;
  98. }
  99. PortInputView.typeBoolean {
  100. --edge-color: #9481E6;
  101. }