| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /* Click blocker overlay - covers entire screen to prevent clicks through UI */
- .click-blocker {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0);
- }
- /* Main quest tracker - positioned on the left side, away from TeamView */
- .quest-tracker {
- position: absolute;
- top: 20px;
- left: 20px;
- width: 250px;
- max-height: 350px;
- background-color: rgba(20, 20, 30, 0.9);
- border-radius: 8px;
- padding: 10px;
- border-width: 2px;
- border-color: rgba(100, 100, 150, 0.5);
- z-index: 1000;
- }
- /* Tracker header */
- .tracker-header {
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- padding-bottom: 8px;
- border-bottom-width: 1px;
- border-bottom-color: rgba(100, 100, 150, 0.3);
- }
- .tracker-title {
- font-size: 14px;
- -unity-font-style: bold;
- color: rgb(255, 215, 0);
- }
- .quest-log-button {
- width: 20px;
- height: 20px;
- background-color: rgba(100, 100, 150, 0.5);
- border-radius: 3px;
- font-size: 10px;
- color: white;
- margin-left: 5px;
- }
- .toggle-tracker-button {
- width: 20px;
- height: 20px;
- background-color: rgba(100, 100, 150, 0.5);
- border-radius: 3px;
- font-size: 12px;
- color: white;
- margin-left: 3px;
- -unity-font-style: bold;
- }
- .toggle-tracker-button:hover {
- background-color: rgba(120, 120, 170, 0.7);
- }
- /* Active quests list */
- .active-quests-list {
- max-height: 250px;
- background-color: transparent;
- }
- .no-quests-message {
- font-size: 12px;
- color: rgba(200, 200, 200, 0.7);
- -unity-text-align: middle-center;
- padding: 20px;
- }
- /* Quest entries */
- .quest-entry-compact {
- background-color: rgba(40, 40, 60, 0.8);
- margin-bottom: 6px;
- padding: 8px;
- border-radius: 4px;
- border-left-width: 3px;
- border-left-color: rgba(100, 100, 150, 0.7);
- cursor: pointer;
- }
- .quest-entry-compact:hover {
- background-color: rgba(50, 50, 70, 0.9);
- }
- .quest-entry-compact.selected {
- background-color: rgba(60, 60, 80, 1);
- border-left-color: rgb(255, 215, 0);
- }
- .quest-compact-header {
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 4px;
- }
- .quest-compact-title {
- font-size: 12px;
- -unity-font-style: bold;
- color: white;
- flex-grow: 1;
- }
- .quest-compact-urgency {
- width: 8px;
- height: 8px;
- border-radius: 4px;
- margin-left: 5px;
- }
- .quest-compact-info {
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .quest-compact-progress {
- font-size: 10px;
- color: rgb(200, 200, 200);
- }
- .quest-compact-time {
- font-size: 10px;
- color: rgb(255, 165, 0);
- }
- /* Urgency colors */
- .urgency-low {
- background-color: rgb(0, 255, 0);
- }
- .urgency-medium {
- background-color: rgb(255, 255, 0);
- }
- .urgency-high {
- background-color: rgb(255, 165, 0);
- }
- .urgency-critical {
- background-color: rgb(255, 0, 0);
- }
- /* Quick actions */
- .quick-actions {
- flex-direction: column;
- margin-top: 10px;
- padding-top: 8px;
- border-top-width: 1px;
- border-top-color: rgba(100, 100, 150, 0.3);
- }
- .quick-action-button {
- height: 22px;
- margin-bottom: 3px;
- font-size: 10px;
- border-radius: 3px;
- background-color: rgba(100, 100, 150, 0.6);
- color: white;
- }
- .quick-action-button:hover {
- background-color: rgba(120, 120, 170, 0.8);
- }
- .quick-action-button:disabled {
- background-color: rgba(60, 60, 80, 0.4);
- color: rgba(200, 200, 200, 0.5);
- }
- .abandon-button {
- background-color: rgba(139, 69, 19, 0.6);
- }
- .abandon-button:hover {
- background-color: rgba(159, 89, 39, 0.8);
- }
- .track-button {
- background-color: rgba(0, 100, 200, 0.6);
- }
- .track-button:hover {
- background-color: rgba(20, 120, 220, 0.8);
- }
- /* Quest Details Popup - MUST be hidden by default */
- .quest-details-popup {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.7);
- justify-content: center;
- align-items: center;
- }
- .popup-content {
- width: 450px;
- max-height: 80%;
- background-color: rgba(20, 20, 30, 0.95);
- border-radius: 8px;
- padding: 20px;
- border-width: 2px;
- border-color: rgb(100, 100, 150);
- }
- .popup-header {
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 15px;
- }
- .popup-title {
- font-size: 16px;
- -unity-font-style: bold;
- color: rgb(255, 215, 0);
- }
- .close-popup-button {
- width: 25px;
- height: 25px;
- background-color: rgba(139, 69, 19, 0.8);
- border-radius: 3px;
- font-size: 12px;
- -unity-font-style: bold;
- color: white;
- }
- .popup-details {
- max-height: 300px;
- background-color: transparent;
- }
- .popup-actions {
- flex-direction: row;
- justify-content: space-around;
- margin-top: 15px;
- padding-top: 10px;
- border-top-width: 1px;
- border-top-color: rgba(100, 100, 150, 0.3);
- }
- .action-button {
- height: 30px;
- min-width: 80px;
- font-size: 11px;
- border-radius: 4px;
- background-color: rgba(100, 100, 150, 0.6);
- color: white;
- }
- .action-button:hover {
- background-color: rgba(120, 120, 170, 0.8);
- }
- /* Notification styles */
- .completion-notification,
- .progress-notification {
- position: absolute;
- top: 50px;
- left: 50%;
- translate: -50% 0;
- width: 300px;
- background-color: rgba(0, 100, 0, 0.9);
- border-radius: 6px;
- padding: 15px;
- border-width: 2px;
- border-color: rgb(0, 150, 0);
- }
- .notification-content,
- .progress-notification-content {
- flex-direction: row;
- align-items: center;
- }
- .completion-icon,
- .progress-icon {
- font-size: 16px;
- margin-right: 10px;
- }
- .completion-title,
- .progress-title {
- font-size: 14px;
- -unity-font-style: bold;
- color: white;
- }
|