SpriteBoneInfluenceListWidgetStyle.uss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. #HeaderImage
  2. {
  3. background-image: resource("Builtin Skins/LightSkin/images/rol-header.png");
  4. -unity-slice-left: 4;
  5. -unity-slice-right: 4;
  6. -unity-slice-top: 3;
  7. -unity-slice-bottom: 2;
  8. /* GUIStyle.clipping */
  9. overflow : hidden;
  10. /* GUIStyle.contentOffset */
  11. /*-unity-content-offset: 0 -1;*/
  12. /* GUIStyle.fixedHeight */
  13. height: 18px;
  14. }
  15. .Dark . #HeaderImage
  16. {
  17. background-image: resource("Builtin Skins/DarkSkin/images/d_rol-header.png");
  18. }
  19. #HeaderText
  20. {
  21. -unity-text-align : middle-center;
  22. }
  23. #ListView
  24. {
  25. background-image: resource("Builtin Skins/LightSkin/images/rol-body.png");
  26. flex: 1 auto;
  27. -unity-slice-left: 6;
  28. -unity-slice-right: 3;
  29. -unity-slice-bottom: 6;
  30. height : 130px;
  31. border-bottom-width : 5px;
  32. border-left-width : 1px;
  33. border-right-width : 1px;
  34. }
  35. .Dark . #ListView
  36. {
  37. background-image: resource("Builtin Skins/DarkSkin/images/d_rol-body.png");
  38. }
  39. #ListRow
  40. {
  41. -unity-text-align : middle-center;
  42. }
  43. .ListRowOddColor
  44. {
  45. background-color: #DFDFDF;
  46. }
  47. .ListRowEvenColor
  48. {
  49. background-color: #D8D8D8;
  50. }
  51. .Dark . .ListRowOddColor
  52. {
  53. background-color: #373737;
  54. }
  55. .Dark .ListRowEvenColor
  56. {
  57. background-color: #3C3C3C;
  58. }
  59. SelectListView . .unity-list-view__item--selected
  60. {
  61. background-image: resource("Builtin Skins/LightSkin/images/ro_selected_l.png");
  62. -unity-slice-left: 2;
  63. -unity-slice-right: 2;
  64. -unity-slice-bottom: 3;
  65. }
  66. .Dark . SelectListView . .unity-list-view__item--selected
  67. {
  68. background-image: resource("Builtin Skins/DarkSkin/images/ro_selected_d.png");
  69. }
  70. ScrollView
  71. {
  72. flex :1 0 auto;
  73. }
  74. .Dark . #ContentBackgroundImage
  75. {
  76. background-image: resource("Builtin Skins/DarkSkin/images/d_rol-body.png");
  77. }
  78. #ButtonsContainer
  79. {
  80. flex-direction : row;
  81. align-self : flex-end;
  82. background-image: resource("Builtin Skins/LightSkin/images/rol-tab.png");
  83. -unity-slice-left: 4;
  84. -unity-slice-right: 4;
  85. -unity-slice-top: 3;
  86. -unity-slice-bottom: 4;
  87. height: 18px;
  88. width : 48px;
  89. top : -3px;
  90. }
  91. .Dark . #ButtonsContainer
  92. {
  93. background-image: resource("Builtin Skins/DarkSkin/images/d_rol-tab.png");
  94. }
  95. #AddButton
  96. {
  97. background-image: resource("Icons/Toolbar Plus.png");
  98. }
  99. .unity-button
  100. {
  101. flex : 0 0 auto;
  102. -unity-slice-left: 0;
  103. -unity-slice-right: 0;
  104. -unity-slice-top: 0;
  105. -unity-slice-bottom: 0;
  106. align-self: center;
  107. -unity-background-scale-mode : scale-to-fit;
  108. background-color: rgb(221, 221, 221);
  109. margin-top : 2px;
  110. margin-bottom : 2px;
  111. margin-left : 2px;
  112. margin-right : 2px;
  113. padding-top : 0;
  114. padding-bottom : 0;
  115. padding-left : 0;
  116. padding-right : 0;
  117. min-height : 0;
  118. height : 16px;
  119. width : 16px;
  120. }
  121. #AddButton:hover {
  122. background-color: rgb(255, 255, 255);
  123. }
  124. .Dark #AddButton:hover {
  125. /* GUIState.textColor */
  126. background-color: rgb(128, 128, 128);
  127. }
  128. .Dark . #AddButton
  129. {
  130. background-image: resource("Icons/d_Toolbar Plus.png");
  131. background-color: rgba(255, 255, 255,0);
  132. }
  133. #RemoveButton
  134. {
  135. background-image: resource("Icons/Toolbar Minus.png");
  136. }
  137. .Dark . #RemoveButton
  138. {
  139. background-image: resource("Icons/d_Toolbar Minus.png");
  140. background-color: rgba(255, 255, 255, 0);
  141. }
  142. #RemoveButton:hover {
  143. /* GUIState.textColor */
  144. background-color: rgb(255, 255, 255);
  145. }
  146. .Dark #RemoveButton:hover {
  147. /* GUIState.textColor */
  148. background-color: rgb(128, 128, 128);
  149. }
  150. Button:disabled {
  151. opacity: 0.5;
  152. }
  153. LayoutOverlay > #HorizontalHolder > #RightOverlay PopupWindow Slider {
  154. flex: 1 0;
  155. margin-left : 0;
  156. margin-top :16px;
  157. margin-right : 0;
  158. margin-bottom :16px;
  159. }