Update live to use the new surround.
This commit is contained in:
@@ -116,9 +116,9 @@ export class BrowseMediaUtil {
|
|||||||
static getBrowseMediaQueryParameters(
|
static getBrowseMediaQueryParameters(
|
||||||
mediaType: 'clips' | 'snapshots',
|
mediaType: 'clips' | 'snapshots',
|
||||||
cameraConfig?: CameraConfig,
|
cameraConfig?: CameraConfig,
|
||||||
): BrowseMediaQueryParameters | undefined {
|
): BrowseMediaQueryParameters | null {
|
||||||
if (!cameraConfig || !cameraConfig.camera_name) {
|
if (!cameraConfig || !cameraConfig.camera_name) {
|
||||||
return undefined;
|
return null;
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
mediaType: mediaType,
|
mediaType: mediaType,
|
||||||
@@ -137,9 +137,9 @@ export class BrowseMediaUtil {
|
|||||||
node: HTMLElement,
|
node: HTMLElement,
|
||||||
view: View,
|
view: View,
|
||||||
cameraConfig: CameraConfig,
|
cameraConfig: CameraConfig,
|
||||||
): BrowseMediaQueryParameters | undefined {
|
): BrowseMediaQueryParameters | null {
|
||||||
if (!view.isClipRelatedView() && !view.isSnapshotRelatedView()) {
|
if (!view.isClipRelatedView() && !view.isSnapshotRelatedView()) {
|
||||||
return undefined;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Verify there is a camera name, otherwise getBrowseMediaQueryParameters()
|
// Verify there is a camera name, otherwise getBrowseMediaQueryParameters()
|
||||||
@@ -149,7 +149,7 @@ export class BrowseMediaUtil {
|
|||||||
node,
|
node,
|
||||||
localize('error.no_camera_name') + `: ${JSON.stringify(cameraConfig)}`,
|
localize('error.no_camera_name') + `: ${JSON.stringify(cameraConfig)}`,
|
||||||
);
|
);
|
||||||
return undefined;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return BrowseMediaUtil.getBrowseMediaQueryParameters(
|
return BrowseMediaUtil.getBrowseMediaQueryParameters(
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import EmblaCarousel, {
|
|||||||
EmblaOptionsType,
|
EmblaOptionsType,
|
||||||
EmblaPluginType,
|
EmblaPluginType,
|
||||||
} from 'embla-carousel';
|
} from 'embla-carousel';
|
||||||
import { WheelGesturesPlugin } from 'embla-carousel-wheel-gestures'
|
import { WheelGesturesPlugin } from 'embla-carousel-wheel-gestures';
|
||||||
|
|
||||||
import { TransitionEffect } from '../types';
|
import { TransitionEffect } from '../types';
|
||||||
import { dispatchFrigateCardEvent } from '../common';
|
import { dispatchFrigateCardEvent } from '../common';
|
||||||
@@ -78,11 +78,13 @@ export class FrigateCardCarousel extends LitElement {
|
|||||||
* @returns An EmblaOptionsType object or undefined for no options.
|
* @returns An EmblaOptionsType object or undefined for no options.
|
||||||
*/
|
*/
|
||||||
protected _getPlugins(): EmblaPluginType[] {
|
protected _getPlugins(): EmblaPluginType[] {
|
||||||
return [WheelGesturesPlugin({
|
return [
|
||||||
// Whether the carousel is vertical or horizontal, interpret y-axis wheel
|
WheelGesturesPlugin({
|
||||||
// gestures as scrolling for the carousel.
|
// Whether the carousel is vertical or horizontal, interpret y-axis wheel
|
||||||
forceWheelAxis: 'y',
|
// gestures as scrolling for the carousel.
|
||||||
})];
|
forceWheelAxis: 'y',
|
||||||
|
}),
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
protected _destroyCarousel(): void {
|
protected _destroyCarousel(): void {
|
||||||
@@ -112,9 +114,10 @@ export class FrigateCardCarousel extends LitElement {
|
|||||||
carouselNode,
|
carouselNode,
|
||||||
{
|
{
|
||||||
axis: this.direction == 'horizontal' ? 'x' : 'y',
|
axis: this.direction == 'horizontal' ? 'x' : 'y',
|
||||||
...this._getOptions()
|
...this._getOptions(),
|
||||||
},
|
},
|
||||||
plugins);
|
plugins,
|
||||||
|
);
|
||||||
this._carousel.on('init', () => dispatchFrigateCardEvent(this, 'carousel:init'));
|
this._carousel.on('init', () => dispatchFrigateCardEvent(this, 'carousel:init'));
|
||||||
this._carousel.on('select', () => {
|
this._carousel.on('select', () => {
|
||||||
const selected = this.carouselSelected();
|
const selected = this.carouselSelected();
|
||||||
|
|||||||
+17
-72
@@ -120,79 +120,12 @@ export class FrigateCardLive extends LitElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Render thumbnails carousel.
|
|
||||||
* @returns A rendered template or void.
|
|
||||||
*/
|
|
||||||
protected renderThumbnails(config: LiveConfig): TemplateResult | void {
|
|
||||||
if (!this.liveConfig || !this.view) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const fetchThumbnailsThenRender = async (): Promise<TemplateResult | void> => {
|
|
||||||
if (!this.hass || !this.cameras || !this.view) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const browseMediaParams = BrowseMediaUtil.getBrowseMediaQueryParameters(
|
|
||||||
config.controls.thumbnails.media,
|
|
||||||
this.cameras.get(this.view.camera),
|
|
||||||
);
|
|
||||||
if (!browseMediaParams) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
let parent: FrigateBrowseMediaSource | null;
|
|
||||||
try {
|
|
||||||
parent = await BrowseMediaUtil.browseMediaQuery(this.hass, browseMediaParams);
|
|
||||||
} catch (e) {
|
|
||||||
return dispatchErrorMessageEvent(this, (e as Error).message);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (BrowseMediaUtil.getFirstTrueMediaChildIndex(parent) != null) {
|
|
||||||
return html`<frigate-card-thumbnail-carousel
|
|
||||||
.target=${parent}
|
|
||||||
.view=${this.view}
|
|
||||||
.config=${config.controls.thumbnails}
|
|
||||||
.highlight_selected=${false}
|
|
||||||
@frigate-card:carousel:tap=${(ev: CustomEvent<ThumbnailCarouselTap>) => {
|
|
||||||
const mediaType = browseMediaParams.mediaType;
|
|
||||||
if (mediaType && this.view && ['snapshots', 'clips'].includes(mediaType)) {
|
|
||||||
new View({
|
|
||||||
view: mediaType === 'clips' ? 'clip' : 'snapshot',
|
|
||||||
camera: this.view.camera,
|
|
||||||
target: ev.detail.target,
|
|
||||||
childIndex: ev.detail.childIndex,
|
|
||||||
}).dispatchChangeEvent(this);
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
</frigate-card-thumbnail-carousel>`;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const fillerStyle = {
|
|
||||||
height: config.controls.thumbnails.size,
|
|
||||||
};
|
|
||||||
|
|
||||||
// As the live carousel moves, thumbnails are re-fetched. This is an async
|
|
||||||
// request, so it can jarring to the user to have the main camera view nudge
|
|
||||||
// up/down as the thumbnails disappear and re-appear. Instead, if there was
|
|
||||||
// previously a thumbnail carousel rendered, use a filler that is the same
|
|
||||||
// size until it is replaced with a real carousel (or empty, if no carousel
|
|
||||||
// is rendered for the next camera).
|
|
||||||
return html`${until(
|
|
||||||
fetchThumbnailsThenRender(),
|
|
||||||
this._thumbnailCarousel
|
|
||||||
? html` <div style="${styleMap(fillerStyle)}"></div>`
|
|
||||||
: html``,
|
|
||||||
)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Master render method.
|
* Master render method.
|
||||||
* @returns A rendered template.
|
* @returns A rendered template.
|
||||||
*/
|
*/
|
||||||
protected render(): TemplateResult | void {
|
protected render(): TemplateResult | void {
|
||||||
if (!this.hass || !this.liveConfig || !this.cameras) {
|
if (!this.hass || !this.liveConfig || !this.cameras || !this.view) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -202,11 +135,24 @@ export class FrigateCardLive extends LitElement {
|
|||||||
this.conditionState,
|
this.conditionState,
|
||||||
) as LiveConfig;
|
) as LiveConfig;
|
||||||
|
|
||||||
|
const browseMediaParams = BrowseMediaUtil.getBrowseMediaQueryParameters(
|
||||||
|
config.controls.thumbnails.media,
|
||||||
|
this.cameras.get(this.view.camera),
|
||||||
|
);
|
||||||
|
if (!browseMediaParams) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Note use of liveConfig and not config below -- the carousel will
|
// Note use of liveConfig and not config below -- the carousel will
|
||||||
// independently override the liveconfig to reflect the camera in the
|
// independently override the liveconfig to reflect the camera in the
|
||||||
// carousel (not necessarily the selected camera).
|
// carousel (not necessarily the selected camera).
|
||||||
return html`
|
return html` <frigate-card-surround-thumbnails
|
||||||
${config.controls.thumbnails.mode === 'above' ? this.renderThumbnails(config) : ''}
|
.hass=${this.hass}
|
||||||
|
.view=${this.view}
|
||||||
|
.config=${config.controls.thumbnails}
|
||||||
|
.targetView=${config.controls.thumbnails.media == 'clips' ? 'clip' : 'snapshot'}
|
||||||
|
.browseMediaParams=${browseMediaParams}
|
||||||
|
>
|
||||||
<frigate-card-live-carousel
|
<frigate-card-live-carousel
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.view=${this.view}
|
.view=${this.view}
|
||||||
@@ -228,8 +174,7 @@ export class FrigateCardLive extends LitElement {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
</frigate-card-live-carousel>
|
</frigate-card-live-carousel>
|
||||||
${config.controls.thumbnails.mode === 'below' ? this.renderThumbnails(config) : ''}
|
</frigate-card-surround-thumbnails>`;
|
||||||
`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
import { CSSResultGroup, LitElement, TemplateResult, html, unsafeCSS } from 'lit';
|
import { CSSResultGroup, LitElement, TemplateResult, html, unsafeCSS } from 'lit';
|
||||||
import { HomeAssistant } from 'custom-card-helpers';
|
import { HomeAssistant } from 'custom-card-helpers';
|
||||||
import { createRef, ref, Ref } from 'lit/directives/ref.js';
|
import { Task } from '@lit-labs/task';
|
||||||
import { customElement, property } from 'lit/decorators.js';
|
import { customElement, property, state } from 'lit/decorators.js';
|
||||||
|
|
||||||
|
import { BrowseMediaUtil } from '../browse-media-util.js';
|
||||||
import {
|
import {
|
||||||
|
BrowseMediaQueryParameters,
|
||||||
ExtendedHomeAssistant,
|
ExtendedHomeAssistant,
|
||||||
FrigateBrowseMediaSource,
|
FrigateBrowseMediaSource,
|
||||||
FrigateCardView,
|
FrigateCardView,
|
||||||
ThumbnailsControlConfig,
|
ThumbnailsControlConfig,
|
||||||
} from '../types.js';
|
} from '../types.js';
|
||||||
import {
|
|
||||||
FrigateCardThumbnailCarousel,
|
import { ThumbnailCarouselTap } from './thumbnail-carousel.js';
|
||||||
ThumbnailCarouselTap,
|
|
||||||
} from './thumbnail-carousel.js';
|
|
||||||
import { View } from '../view.js';
|
import { View } from '../view.js';
|
||||||
import { dispatchFrigateCardEvent } from '../common.js';
|
import { dispatchErrorMessageEvent, dispatchFrigateCardEvent } from '../common.js';
|
||||||
|
|
||||||
import './surround.js';
|
import './surround.js';
|
||||||
|
|
||||||
@@ -39,7 +39,48 @@ export class FrigateCardSurround extends LitElement {
|
|||||||
@property({ attribute: false })
|
@property({ attribute: false })
|
||||||
protected targetView?: FrigateCardView;
|
protected targetView?: FrigateCardView;
|
||||||
|
|
||||||
protected _refThumbnails: Ref<FrigateCardThumbnailCarousel> = createRef();
|
@property({ attribute: false })
|
||||||
|
protected browseMediaParams?: BrowseMediaQueryParameters;
|
||||||
|
|
||||||
|
@state()
|
||||||
|
protected _thumbnailTarget?: FrigateBrowseMediaSource;
|
||||||
|
|
||||||
|
@state()
|
||||||
|
protected _thumbnailSelected?: number | null;
|
||||||
|
|
||||||
|
// A task to await the load of the WebRTC component.
|
||||||
|
protected _browseTask = new Task(this, this._fetchMedia.bind(this), () => [
|
||||||
|
this.hass,
|
||||||
|
this.browseMediaParams,
|
||||||
|
]);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch thumbnail media.
|
||||||
|
* @param param Task parameters.
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
protected async _fetchMedia([hass, browseMediaParams]: (
|
||||||
|
| (HomeAssistant & ExtendedHomeAssistant)
|
||||||
|
| BrowseMediaQueryParameters
|
||||||
|
| undefined
|
||||||
|
)[]): Promise<void> {
|
||||||
|
hass = hass as HomeAssistant & ExtendedHomeAssistant;
|
||||||
|
browseMediaParams = browseMediaParams as BrowseMediaQueryParameters;
|
||||||
|
|
||||||
|
if (!hass || !browseMediaParams) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let parent: FrigateBrowseMediaSource | null;
|
||||||
|
try {
|
||||||
|
parent = await BrowseMediaUtil.browseMediaQuery(hass, browseMediaParams);
|
||||||
|
} catch (e) {
|
||||||
|
return dispatchErrorMessageEvent(this, (e as Error).message);
|
||||||
|
}
|
||||||
|
if (BrowseMediaUtil.getFirstTrueMediaChildIndex(parent) != null) {
|
||||||
|
this._thumbnailTarget = parent;
|
||||||
|
this._thumbnailSelected = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Master render method.
|
* Master render method.
|
||||||
@@ -52,10 +93,8 @@ export class FrigateCardSurround extends LitElement {
|
|||||||
|
|
||||||
return html` <frigate-card-surround
|
return html` <frigate-card-surround
|
||||||
@frigate-card:thumbnails:set=${(ev: CustomEvent<FrigateCardThumbnailsSet>) => {
|
@frigate-card:thumbnails:set=${(ev: CustomEvent<FrigateCardThumbnailsSet>) => {
|
||||||
if (this._refThumbnails.value) {
|
this._thumbnailTarget = ev.detail.target;
|
||||||
this._refThumbnails.value.target = ev.detail.target;
|
this._thumbnailSelected = ev.detail.childIndex;
|
||||||
this._refThumbnails.value.selected = ev.detail.childIndex ?? undefined;
|
|
||||||
}
|
|
||||||
}}
|
}}
|
||||||
@frigate-card:thumbnails:open=${(ev: CustomEvent) => {
|
@frigate-card:thumbnails:open=${(ev: CustomEvent) => {
|
||||||
if (this.config && ['left', 'right'].includes(this.config.mode)) {
|
if (this.config && ['left', 'right'].includes(this.config.mode)) {
|
||||||
@@ -73,19 +112,17 @@ export class FrigateCardSurround extends LitElement {
|
|||||||
${this.config?.mode !== 'none'
|
${this.config?.mode !== 'none'
|
||||||
? html` <frigate-card-thumbnail-carousel
|
? html` <frigate-card-thumbnail-carousel
|
||||||
slot=${this.config.mode}
|
slot=${this.config.mode}
|
||||||
${ref(this._refThumbnails)}
|
|
||||||
.config=${this.config}
|
.config=${this.config}
|
||||||
.highlight_selected=${true}
|
.target=${this._thumbnailTarget}
|
||||||
|
.selected=${this._thumbnailSelected ?? null}
|
||||||
@frigate-card:carousel:tap=${(ev: CustomEvent<ThumbnailCarouselTap>) => {
|
@frigate-card:carousel:tap=${(ev: CustomEvent<ThumbnailCarouselTap>) => {
|
||||||
if (ev.detail.target && ev.detail.childIndex) {
|
this.view
|
||||||
this.view
|
?.evolve({
|
||||||
?.evolve({
|
...(this.targetView && { view: this.targetView }),
|
||||||
...(this.targetView && { view: this.targetView }),
|
target: ev.detail.target,
|
||||||
target: ev.detail.target,
|
childIndex: ev.detail.childIndex,
|
||||||
childIndex: ev.detail.childIndex,
|
})
|
||||||
})
|
.dispatchChangeEvent(this);
|
||||||
.dispatchChangeEvent(this);
|
|
||||||
}
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
</frigate-card-thumbnail-carousel>`
|
</frigate-card-thumbnail-carousel>`
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import {
|
|||||||
stopEventFromActivatingCardWideActions,
|
stopEventFromActivatingCardWideActions,
|
||||||
} from '../common.js';
|
} from '../common.js';
|
||||||
|
|
||||||
import "./thumbnail.js";
|
import './thumbnail.js';
|
||||||
|
|
||||||
import thumbnailCarouselStyle from '../scss/thumbnail-carousel.scss';
|
import thumbnailCarouselStyle from '../scss/thumbnail-carousel.scss';
|
||||||
|
|
||||||
@@ -28,8 +28,24 @@ export class FrigateCardThumbnailCarousel extends FrigateCardCarousel {
|
|||||||
@property({ attribute: false, hasChanged: contentsChanged })
|
@property({ attribute: false, hasChanged: contentsChanged })
|
||||||
public target?: FrigateBrowseMediaSource;
|
public target?: FrigateBrowseMediaSource;
|
||||||
|
|
||||||
@property({ attribute: false, reflect: true })
|
// Thumbnail carousels can expand (e.g. drawer-based carousels after the main
|
||||||
public selected?: number | null;
|
// media loads). The carousel must be re-initialized in these cases, or the
|
||||||
|
// dynamic sizing fails (and users can scroll past the end of the carousel).
|
||||||
|
protected _resizeObserver: ResizeObserver;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
this._resizeObserver = new ResizeObserver(this._resizeHandler.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
@property({ attribute: false })
|
||||||
|
set selected(selected: number | null) {
|
||||||
|
this._selected = selected;
|
||||||
|
if (selected !== null) {
|
||||||
|
// If there is a selection, 'dim' all the other slides.
|
||||||
|
this.style.setProperty('--frigate-card-carousel-thumbnail-opacity', '0.4');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@property({ attribute: false })
|
@property({ attribute: false })
|
||||||
set config(config: ThumbnailsControlConfig) {
|
set config(config: ThumbnailsControlConfig) {
|
||||||
@@ -40,12 +56,32 @@ export class FrigateCardThumbnailCarousel extends FrigateCardCarousel {
|
|||||||
@state()
|
@state()
|
||||||
protected _config?: ThumbnailsControlConfig;
|
protected _config?: ThumbnailsControlConfig;
|
||||||
|
|
||||||
@property({ attribute: false })
|
@state()
|
||||||
set highlight_selected(value: boolean) {
|
protected _selected?: number | null;
|
||||||
this.style.setProperty(
|
|
||||||
'--frigate-card-carousel-thumbnail-opacity',
|
/**
|
||||||
value ? '0.4' : '1.0',
|
* Handle gallery resize.
|
||||||
);
|
*/
|
||||||
|
protected _resizeHandler(): void {
|
||||||
|
if (this._carousel) {
|
||||||
|
this._carousel.reInit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Component connected callback.
|
||||||
|
*/
|
||||||
|
connectedCallback(): void {
|
||||||
|
super.connectedCallback();
|
||||||
|
this._resizeObserver.observe(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Component disconnected callback.
|
||||||
|
*/
|
||||||
|
disconnectedCallback(): void {
|
||||||
|
this._resizeObserver.disconnect();
|
||||||
|
super.disconnectedCallback();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -120,27 +156,26 @@ export class FrigateCardThumbnailCarousel extends FrigateCardCarousel {
|
|||||||
|
|
||||||
const classes = {
|
const classes = {
|
||||||
embla__slide: true,
|
embla__slide: true,
|
||||||
'slide-selected': this.selected == childIndex,
|
'slide-selected': this.selected === childIndex,
|
||||||
};
|
};
|
||||||
|
|
||||||
return html`
|
return html` <frigate-card-thumbnail
|
||||||
<frigate-card-thumbnail
|
.media=${mediaToRender}
|
||||||
.media=${mediaToRender}
|
?details=${this._config?.show_details}
|
||||||
?details=${this._config?.show_details}
|
thumbnail_size=${ifDefined(this._config?.size)}
|
||||||
thumbnail_size=${ifDefined(this._config?.size)}
|
class="${classMap(classes)}"
|
||||||
class="${classMap(classes)}"
|
@click=${(ev) => {
|
||||||
@click=${(ev) => {
|
if (this._carousel && this._carousel.clickAllowed()) {
|
||||||
if (this._carousel && this._carousel.clickAllowed()) {
|
dispatchFrigateCardEvent<ThumbnailCarouselTap>(this, 'carousel:tap', {
|
||||||
dispatchFrigateCardEvent<ThumbnailCarouselTap>(this, 'carousel:tap', {
|
slideIndex: slideIndex,
|
||||||
slideIndex: slideIndex,
|
target: parent,
|
||||||
target: parent,
|
childIndex: childIndex,
|
||||||
childIndex: childIndex,
|
});
|
||||||
});
|
}
|
||||||
}
|
stopEventFromActivatingCardWideActions(ev);
|
||||||
stopEventFromActivatingCardWideActions(ev);
|
}}
|
||||||
}}
|
>
|
||||||
>
|
</frigate-card-thumbnail>`;
|
||||||
</frigate-card-thumbnail>`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -23,17 +23,15 @@ img,video {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-webkit-touch-callout: none;
|
-webkit-touch-callout: none;
|
||||||
-khtml-user-select: none;
|
-khtml-user-select: none;
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
}
|
}
|
||||||
:host([direction="vertical"]) .embla__container {
|
:host([direction=vertical]) .embla__container {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
:host([direction="horizontal"]) .embla__container {
|
:host([direction=horizontal]) .embla__container {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,10 +58,10 @@ img,video {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
:host([direction="vertical"]) .embla__slide {
|
:host([direction=vertical]) .embla__slide {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
:host([direction="horizontal"]) .embla__slide {
|
:host([direction=horizontal]) .embla__slide {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
.embla__slide img,video {
|
.embla__slide img,video {
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ side-drawer {
|
|||||||
div.control-surround {
|
div.control-surround {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 50%;
|
bottom: 50%;
|
||||||
|
transform: translateY(50%);
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
padding-top: $drawer-padding-extend;
|
padding-top: $drawer-padding-extend;
|
||||||
padding-bottom: $drawer-padding-extend;
|
padding-bottom: $drawer-padding-extend;
|
||||||
@@ -29,19 +30,20 @@ div.control-surround {
|
|||||||
|
|
||||||
ha-icon.control {
|
ha-icon.control {
|
||||||
color: var(--secondary-color, white);
|
color: var(--secondary-color, white);
|
||||||
background-color: rgba(0, 0, 0, 0.6);
|
background-color: rgba(0, 0, 0, 0.7);
|
||||||
opacity: 0.6;
|
opacity: 0.7;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
|
|
||||||
--mdc-icon-size: #{$drawer-icon-size};
|
--mdc-icon-size: #{$drawer-icon-size};
|
||||||
padding-top: $drawer-padding-extend;
|
padding-top: $drawer-padding-extend;
|
||||||
padding-bottom: $drawer-padding-extend;
|
padding-bottom: $drawer-padding-extend;
|
||||||
|
|
||||||
transition: opacity 1s ease;
|
transition: opacity 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
:host([open]) ha-icon.control {
|
:host([open]) ha-icon.control, ha-icon.control:hover {
|
||||||
// When the drawer is open make the button to close it more prominent.
|
// When the drawer is open or hovered make the button to close it more
|
||||||
|
// prominent.
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
background-color: black;
|
background-color: black;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
// So the drawer is relative to this host.
|
// Set the drawer relative to this host.
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
:host {
|
:host {
|
||||||
--frigate-card-carousel-thumbnail-opacity: 0.8;
|
--frigate-card-carousel-thumbnail-opacity: 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
:host([direction=vertical]) {
|
:host([direction=vertical]) {
|
||||||
|
|||||||
Reference in New Issue
Block a user