mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-25 02:22:33 +02:00
New Features - Added first-class Stalker/Ministra portal support, including live, VOD, series, playback-link refresh, and bulk EPG ingestion. - Added Stalker configuration and batch/CSV support in the Web UI. - Added playlist preview and playback handling for Stalker inputs, with support for partial refreshes.
56 lines
1.1 KiB
SCSS
56 lines
1.1 KiB
SCSS
@use "../size" as size;
|
|
|
|
$mobile-header-sidebar-offset: 3rem;
|
|
|
|
.tp__app-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: var(--app-header-height);
|
|
min-height: var(--app-header-height);
|
|
max-height: var(--app-header-height);
|
|
overflow: hidden;
|
|
background-color: var(--app-header-background-color);
|
|
border-bottom: 1px solid var(--border-color);
|
|
fill: var(--menu-icon-color);
|
|
-webkit-text-size-adjust: none;
|
|
text-size-adjust: none;
|
|
box-sizing: border-box;
|
|
|
|
.icon-AppTitle {
|
|
width: 100px !important;
|
|
}
|
|
|
|
.icon-Sidebar {
|
|
width: 1.2rem;
|
|
height: 1.2rem;
|
|
}
|
|
|
|
&-toolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--gap-small);
|
|
.tp__icon-button {
|
|
.svg-icon {
|
|
min-width: 1.5rem;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.tp__app-main__header {
|
|
padding-left: var(--padding-micro);
|
|
}
|
|
.tp__app-sidebar__header {
|
|
padding-left: var(--padding-micro);
|
|
min-width: var(--sidebar-width-collapsed);
|
|
}
|
|
|
|
@media (max-width: size.$mobile-breakpoint) {
|
|
.tp__app-main__header {
|
|
padding-left: $mobile-header-sidebar-offset;
|
|
}
|
|
}
|