ActiveQuestUI.uss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /* Click blocker overlay - covers entire screen to prevent clicks through UI */
  2. .click-blocker {
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. background-color: rgba(0, 0, 0, 0);
  9. }
  10. /* Main quest tracker - positioned on the left side, away from TeamView */
  11. .quest-tracker {
  12. position: absolute;
  13. top: 20px;
  14. left: 20px;
  15. width: 250px;
  16. max-height: 350px;
  17. background-color: rgba(20, 20, 30, 0.9);
  18. border-radius: 8px;
  19. padding: 10px;
  20. border-width: 2px;
  21. border-color: rgba(100, 100, 150, 0.5);
  22. z-index: 1000;
  23. }
  24. /* Tracker header */
  25. .tracker-header {
  26. flex-direction: row;
  27. justify-content: space-between;
  28. align-items: center;
  29. margin-bottom: 10px;
  30. padding-bottom: 8px;
  31. border-bottom-width: 1px;
  32. border-bottom-color: rgba(100, 100, 150, 0.3);
  33. }
  34. .tracker-title {
  35. font-size: 14px;
  36. -unity-font-style: bold;
  37. color: rgb(255, 215, 0);
  38. }
  39. .quest-log-button {
  40. width: 20px;
  41. height: 20px;
  42. background-color: rgba(100, 100, 150, 0.5);
  43. border-radius: 3px;
  44. font-size: 10px;
  45. color: white;
  46. margin-left: 5px;
  47. }
  48. .toggle-tracker-button {
  49. width: 20px;
  50. height: 20px;
  51. background-color: rgba(100, 100, 150, 0.5);
  52. border-radius: 3px;
  53. font-size: 12px;
  54. color: white;
  55. margin-left: 3px;
  56. -unity-font-style: bold;
  57. }
  58. .toggle-tracker-button:hover {
  59. background-color: rgba(120, 120, 170, 0.7);
  60. }
  61. /* Active quests list */
  62. .active-quests-list {
  63. max-height: 250px;
  64. background-color: transparent;
  65. }
  66. .no-quests-message {
  67. font-size: 12px;
  68. color: rgba(200, 200, 200, 0.7);
  69. -unity-text-align: middle-center;
  70. padding: 20px;
  71. }
  72. /* Quest entries */
  73. .quest-entry-compact {
  74. background-color: rgba(40, 40, 60, 0.8);
  75. margin-bottom: 6px;
  76. padding: 8px;
  77. border-radius: 4px;
  78. border-left-width: 3px;
  79. border-left-color: rgba(100, 100, 150, 0.7);
  80. cursor: pointer;
  81. }
  82. .quest-entry-compact:hover {
  83. background-color: rgba(50, 50, 70, 0.9);
  84. }
  85. .quest-entry-compact.selected {
  86. background-color: rgba(60, 60, 80, 1);
  87. border-left-color: rgb(255, 215, 0);
  88. }
  89. .quest-compact-header {
  90. flex-direction: row;
  91. justify-content: space-between;
  92. align-items: center;
  93. margin-bottom: 4px;
  94. }
  95. .quest-compact-title {
  96. font-size: 12px;
  97. -unity-font-style: bold;
  98. color: white;
  99. flex-grow: 1;
  100. }
  101. .quest-compact-urgency {
  102. width: 8px;
  103. height: 8px;
  104. border-radius: 4px;
  105. margin-left: 5px;
  106. }
  107. .quest-compact-info {
  108. flex-direction: row;
  109. justify-content: space-between;
  110. align-items: center;
  111. }
  112. .quest-compact-progress {
  113. font-size: 10px;
  114. color: rgb(200, 200, 200);
  115. }
  116. .quest-compact-time {
  117. font-size: 10px;
  118. color: rgb(255, 165, 0);
  119. }
  120. /* Urgency colors */
  121. .urgency-low {
  122. background-color: rgb(0, 255, 0);
  123. }
  124. .urgency-medium {
  125. background-color: rgb(255, 255, 0);
  126. }
  127. .urgency-high {
  128. background-color: rgb(255, 165, 0);
  129. }
  130. .urgency-critical {
  131. background-color: rgb(255, 0, 0);
  132. }
  133. /* Quick actions */
  134. .quick-actions {
  135. flex-direction: column;
  136. margin-top: 10px;
  137. padding-top: 8px;
  138. border-top-width: 1px;
  139. border-top-color: rgba(100, 100, 150, 0.3);
  140. }
  141. .quick-action-button {
  142. height: 22px;
  143. margin-bottom: 3px;
  144. font-size: 10px;
  145. border-radius: 3px;
  146. background-color: rgba(100, 100, 150, 0.6);
  147. color: white;
  148. }
  149. .quick-action-button:hover {
  150. background-color: rgba(120, 120, 170, 0.8);
  151. }
  152. .quick-action-button:disabled {
  153. background-color: rgba(60, 60, 80, 0.4);
  154. color: rgba(200, 200, 200, 0.5);
  155. }
  156. .abandon-button {
  157. background-color: rgba(139, 69, 19, 0.6);
  158. }
  159. .abandon-button:hover {
  160. background-color: rgba(159, 89, 39, 0.8);
  161. }
  162. .track-button {
  163. background-color: rgba(0, 100, 200, 0.6);
  164. }
  165. .track-button:hover {
  166. background-color: rgba(20, 120, 220, 0.8);
  167. }
  168. /* Quest Details Popup - MUST be hidden by default */
  169. .quest-details-popup {
  170. position: absolute;
  171. top: 0;
  172. left: 0;
  173. right: 0;
  174. bottom: 0;
  175. background-color: rgba(0, 0, 0, 0.7);
  176. justify-content: center;
  177. align-items: center;
  178. }
  179. .popup-content {
  180. width: 450px;
  181. max-height: 80%;
  182. background-color: rgba(20, 20, 30, 0.95);
  183. border-radius: 8px;
  184. padding: 20px;
  185. border-width: 2px;
  186. border-color: rgb(100, 100, 150);
  187. }
  188. .popup-header {
  189. flex-direction: row;
  190. justify-content: space-between;
  191. align-items: center;
  192. margin-bottom: 15px;
  193. }
  194. .popup-title {
  195. font-size: 16px;
  196. -unity-font-style: bold;
  197. color: rgb(255, 215, 0);
  198. }
  199. .close-popup-button {
  200. width: 25px;
  201. height: 25px;
  202. background-color: rgba(139, 69, 19, 0.8);
  203. border-radius: 3px;
  204. font-size: 12px;
  205. -unity-font-style: bold;
  206. color: white;
  207. }
  208. .popup-details {
  209. max-height: 300px;
  210. background-color: transparent;
  211. }
  212. .popup-actions {
  213. flex-direction: row;
  214. justify-content: space-around;
  215. margin-top: 15px;
  216. padding-top: 10px;
  217. border-top-width: 1px;
  218. border-top-color: rgba(100, 100, 150, 0.3);
  219. }
  220. .action-button {
  221. height: 30px;
  222. min-width: 80px;
  223. font-size: 11px;
  224. border-radius: 4px;
  225. background-color: rgba(100, 100, 150, 0.6);
  226. color: white;
  227. }
  228. .action-button:hover {
  229. background-color: rgba(120, 120, 170, 0.8);
  230. }
  231. /* Notification styles */
  232. .completion-notification,
  233. .progress-notification {
  234. position: absolute;
  235. top: 50px;
  236. left: 50%;
  237. translate: -50% 0;
  238. width: 300px;
  239. background-color: rgba(0, 100, 0, 0.9);
  240. border-radius: 6px;
  241. padding: 15px;
  242. border-width: 2px;
  243. border-color: rgb(0, 150, 0);
  244. }
  245. .notification-content,
  246. .progress-notification-content {
  247. flex-direction: row;
  248. align-items: center;
  249. }
  250. .completion-icon,
  251. .progress-icon {
  252. font-size: 16px;
  253. margin-right: 10px;
  254. }
  255. .completion-title,
  256. .progress-title {
  257. font-size: 14px;
  258. -unity-font-style: bold;
  259. color: white;
  260. }