EdgegapWindow.uss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. #serverDataContainer {
  2. margin: 4px 0 0 0;
  3. }
  4. .content {
  5. position: relative;
  6. height: auto;
  7. overflow: hidden;
  8. padding: 8px 0 8px 0;
  9. }
  10. .background {
  11. position: absolute;
  12. height: 400px;
  13. width: 400px;
  14. top: -10px;
  15. right: -150px;
  16. /* MIRROR CHANGE: disable hardcoded image path. this is inserted from the script now.
  17. background-image: url('project://database/Assets/Edgegap/Editor/Images/logo_transparent_400_alpha25.png?fileID=21300000&guid=b7012da4ebf9008458abc3ef9a741f3c&type=3#logo_transparent_400_alpha25');
  18. */
  19. -unity-background-scale-mode: scale-and-crop;
  20. }
  21. .text__title {
  22. font-size: 20px;
  23. color: rgb(36, 194, 237);
  24. padding-top: 8px;
  25. padding-bottom: 8px;
  26. -unity-text-align: middle-center;
  27. /* MIRROR CHANGE: disable hardcoded font path
  28. -unity-font: url('project://database/Assets/Edgegap/Editor/Fonts/Src/BaronNeue.otf?fileID=12800000&guid=fb67205c672fbb04d829783b9f771fc9&type=3#BaronNeue');
  29. */
  30. }
  31. .text--muted {
  32. color: rgb(192, 192, 192);
  33. }
  34. .text--success {
  35. color: rgb(144, 190, 109);
  36. }
  37. .container {
  38. padding: 4px 4px;
  39. }
  40. .flex {
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. width: auto;
  45. }
  46. .flex--wrap {
  47. flex-wrap: wrap;
  48. }
  49. .flex--right {
  50. justify-content: flex-end;
  51. }
  52. .flex--between {
  53. justify-content: space-between;
  54. }
  55. #unity-text-input {
  56. border-top-left-radius: 5px;
  57. border-top-right-radius: 5px;
  58. border-bottom-right-radius: 5px;
  59. border-bottom-left-radius: 5px;
  60. color: rgb(255, 255, 255);
  61. border-top-width: 1px;
  62. border-right-width: 1px;
  63. border-bottom-width: 1px;
  64. border-left-width: 1px;
  65. height: 27px;
  66. background-color: rgb(26, 26, 26);
  67. }
  68. .button-edgegap {
  69. border-top-left-radius: 3px;
  70. border-top-right-radius: 3px;
  71. border-bottom-right-radius: 3px;
  72. border-bottom-left-radius: 3px;
  73. border-top-width: 1px;
  74. border-right-width: 1px;
  75. border-bottom-width: 1px;
  76. border-left-width: 1px;
  77. border-left-color: rgba(0, 0, 0, 0.35);
  78. border-right-color: rgba(0, 0, 0, 0.35);
  79. border-top-color: rgba(0, 0, 0, 0.35);
  80. border-bottom-color: rgba(0, 0, 0, 0.35);
  81. height: 27px;
  82. -unity-font-style: bold;
  83. background-color: rgb(36, 76, 87);
  84. min-width: 170px;
  85. max-width: 200px;
  86. }
  87. .button-edgegap:hover {
  88. background-color: rgb(56, 96, 107);
  89. }
  90. .button-purple-hover:hover {
  91. background-color: rgb(44, 30, 210);
  92. }
  93. .container-row-parent {
  94. background-color: rgb(49, 49, 49);
  95. border-top-color: rgb(0, 0, 0);
  96. border-bottom-color: rgb(0, 0, 0);
  97. border-top-width: 1px;
  98. border-right-width: 1px;
  99. border-bottom-width: 1px;
  100. border-left-width: 1px;
  101. padding-top: 10px;
  102. padding-bottom: 10px;
  103. margin-bottom: 10px;
  104. }
  105. .text-edgegap {
  106. font-size: 11px;
  107. color: rgb(222, 222, 222);
  108. /* MIRROR CHANGE: disable hardcoded font path
  109. -unity-font-definition: url('project://database/Assets/Edgegap/Editor/Fonts/Spartan-Regular%20SDF.asset?fileID=11400000&guid=8b0fb2c68be09174f8ea5057b27a545c&type=2#Spartan-Regular SDF');
  110. */
  111. }
  112. .text-btnTxt {
  113. font-size: 12px;
  114. color: rgb(255, 255, 255);
  115. -unity-font-style: bold;
  116. }
  117. Toggle > #unity-checkmark {
  118. }
  119. .unity-foldout > #unity-checkmark {
  120. }
  121. .bg-purple {
  122. background-color: rgb(44, 30, 210);
  123. }
  124. .bg-purple:hover {
  125. background-color: rgb(64, 50, 230);
  126. }
  127. .unity-foldout {
  128. padding-top: 10px;
  129. padding-bottom: 10px;
  130. }
  131. .unity-text-field {
  132. min-width: auto;
  133. width: 400px;
  134. padding-right: 5px;
  135. white-space: normal;
  136. -unity-text-align: middle-left;
  137. opacity: 1;
  138. padding-bottom: 5px;
  139. padding-top: 5px;
  140. align-items: center;
  141. }
  142. .unity-text-field > Label {
  143. }
  144. .container-row {
  145. background-color: rgb(37, 37, 37);
  146. padding-top: 0;
  147. padding-bottom: 0;
  148. margin-bottom: 3px;
  149. }
  150. .checkmark-edgegap {
  151. font-size: 12px;
  152. }
  153. .checkmark-edgegap #unity-checkmark {
  154. margin-right: 15px;
  155. }
  156. .unity-text-field__input > TextElement {
  157. color: rgb(255, 255, 255);
  158. /* MIRROR CHANGE: disable hardcoded font path
  159. -unity-font-definition: url('project://database/Assets/Edgegap/Editor/Fonts/UbuntuMono-R%20SDF.asset?fileID=11400000&guid=2635d61c9807d6c46bcb00a3d8645b37&type=2#UbuntuMono-R SDF');
  160. */
  161. font-size: 12px;
  162. white-space: nowrap;
  163. text-overflow: clip;
  164. }
  165. .shakeStart {
  166. left: 5px;
  167. transition: left 50ms ease-in-out;
  168. }
  169. .shakeEnd {
  170. left: -5px;
  171. transition: left 50ms ease-in-out;
  172. }
  173. .customContainerChildTxt {
  174. padding-left: 32px;
  175. }
  176. #DeploymentConnectionUrlReadOnlyTxt > #unity-text-input {
  177. display: flex;
  178. visibility: visible;
  179. background-color: rgba(0, 0, 0, 0.13);
  180. }
  181. .button-purple-hover {
  182. }