mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 00:30:02 +00:00
a79a7ff8e8
* Update Typescript to 4.9.0 * Update Angular to v15 * Update Angular Flex Layout to v15 * Update Angular CDK to v15 * Update Angular CDK to v15 * Update Angular Material to v15 * WIP: Update Angular Material to v15 * Fix progress bar colors * Fix company logos size * Update angular minor version * Update mat-table-filter Update @angular/youtube-player * Update rxjs * Fix search-bar layout Fix autocomplete layout Change mat-icon-button to mat-fab in game-detail-view * Fix sort selector drop-down checkmark
60 lines
1.4 KiB
SCSS
60 lines
1.4 KiB
SCSS
@use 'sass:map';
|
|
@use '@angular/material' as mat;
|
|
@import 'src/app/themes/dark-theme';
|
|
|
|
.fullscreen-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
background: rgba(0, 0, 0, 0.15);
|
|
z-index: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.library-management-hint {
|
|
|
|
@include mat.elevation(16);
|
|
|
|
position: absolute;
|
|
right: 56px;
|
|
top: 72px;
|
|
width: 250px;
|
|
border-radius: 6px;
|
|
|
|
p {
|
|
padding: 0 12px 12px 16px;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
padding: 16px;
|
|
}
|
|
|
|
.filter-category-title {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/*TODO(mdc-migration): The following rule targets internal classes of checkbox that may no longer apply for the MDC version.*/
|
|
::ng-deep .mat-mdc-text-field-wrapper {
|
|
$config: mat.get-color-config($dark-theme);
|
|
$primary-palette: map.get($config, 'primary');
|
|
border-color: mat.get-color-from-palette($primary-palette, 500) !important;
|
|
}
|
|
|
|
/*TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
|
|
::ng-deep .mat-form-field-underline {
|
|
$config: mat.get-color-config($dark-theme);
|
|
$primary-palette: map.get($config, 'primary');
|
|
background-color: mat.get-color-from-palette($primary-palette, 500) !important;
|
|
}
|
|
|
|
.sticky {
|
|
position: sticky;
|
|
align-self: flex-start;
|
|
top: 80px; //64px height of app-header + 16px padding of content
|
|
}
|