mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-11 02:05:58 +00:00
* fix(Map): fix design of kills widget, fix design of signatures widget - refactor a lot of code, fixed problem with tooltip blinking * fix(Map): refactor Tracking dialog, refactor Activity tracker, refactor codebase and some styles * fix(Core): don't count character passage on manual add connection * refactor(Core): improved characters tracking API * fix(Core): fixed link signature to system on 'leads to' set * fix(Map): Refactor map settings and prepared it to easier using * fix(Map): Add support new command for following update * fix(Map): Add support new command for main update * refactor(Core): Reduce map init data by using cached system static data * refactor(Core): Reduce map init data by extract signatures loading to a separate event * fix(Core): adjusted IP rate limits * fix(Map): Update design of tracking characters. Added icons for following and main. Added ability to see that character on the station or structure --------- Co-authored-by: achichenkov <aleksei.chichenkov@telleqt.ai> Co-authored-by: Dmitry Popov <dmitriypopovsamara@gmail.com>
78 lines
1.5 KiB
SCSS
78 lines
1.5 KiB
SCSS
.vertical-tabs-container {
|
|
display: flex;
|
|
width: 100%;
|
|
min-height: 300px;
|
|
|
|
.p-tabview {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.p-tabview-panels {
|
|
padding: 6px 1rem;
|
|
flex-grow: 1;
|
|
height: 100%;
|
|
}
|
|
|
|
.p-tabview-nav-container {
|
|
border-right: none;
|
|
height: 100%;
|
|
}
|
|
|
|
.p-tabview-nav {
|
|
flex-direction: column;
|
|
width: 150px;
|
|
min-height: 100%;
|
|
border: none;
|
|
|
|
li {
|
|
width: 100%;
|
|
border-right: 4px solid var(--surface-hover);
|
|
background-color: var(--surface-card);
|
|
|
|
transition: background-color 200ms, border-right-color 200ms;
|
|
|
|
&:hover {
|
|
background-color: var(--surface-hover);
|
|
border-right: 4px solid var(--surface-100);
|
|
}
|
|
|
|
.p-tabview-nav-link {
|
|
transition: color 200ms;
|
|
|
|
justify-content: flex-end;
|
|
padding: 10px;
|
|
//background-color: var(--surface-card);
|
|
background-color: initial;
|
|
border: none;
|
|
color: var(--gray-400);
|
|
|
|
border-radius: initial;
|
|
font-weight: 400;
|
|
margin: 0;
|
|
}
|
|
|
|
&.p-tabview-selected {
|
|
background-color: var(--surface-50);
|
|
border-right: 4px solid var(--primary-color);
|
|
|
|
.p-tabview-nav-link {
|
|
font-weight: 600;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
&:hover {
|
|
//background-color: var(--surface-hover);
|
|
border-right: 4px solid var(--primary-color);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.p-tabview-panel {
|
|
flex-grow: 1;
|
|
}
|
|
}
|