Fix border curve styling.
This commit is contained in:
+11
-1
@@ -1790,6 +1790,16 @@ export class FrigateCard extends LitElement {
|
|||||||
!!this._isTriggered() && this._getConfig().view.scan.show_trigger_status,
|
!!this._isTriggered() && this._getConfig().view.scan.show_trigger_status,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const mainClasses = {
|
||||||
|
main: true,
|
||||||
|
'curve-top':
|
||||||
|
this._getConfig().menu.style !== 'outside' ||
|
||||||
|
this._getConfig().menu.position !== 'top',
|
||||||
|
'curve-bottom':
|
||||||
|
this._getConfig().menu.style !== 'outside' ||
|
||||||
|
this._getConfig().menu.position === 'top',
|
||||||
|
};
|
||||||
|
|
||||||
const actions = this._getMergedActions();
|
const actions = this._getMergedActions();
|
||||||
const renderMenuAbove =
|
const renderMenuAbove =
|
||||||
this._getConfig().menu.style === 'outside' &&
|
this._getConfig().menu.style === 'outside' &&
|
||||||
@@ -1816,7 +1826,7 @@ export class FrigateCard extends LitElement {
|
|||||||
@frigate-card:render=${() => this.requestUpdate()}
|
@frigate-card:render=${() => this.requestUpdate()}
|
||||||
>
|
>
|
||||||
${renderMenuAbove ? this._renderMenu() : ''}
|
${renderMenuAbove ? this._renderMenu() : ''}
|
||||||
<div ${ref(this._refMain)} class="main">
|
<div ${ref(this._refMain)} class="${classMap(mainClasses)}">
|
||||||
${this._cameras === undefined && !this._message
|
${this._cameras === undefined && !this._message
|
||||||
? until(
|
? until(
|
||||||
(async () => {
|
(async () => {
|
||||||
|
|||||||
+18
-10
@@ -7,6 +7,10 @@
|
|||||||
// Different browsers use different colors as their fullscreen background,
|
// Different browsers use different colors as their fullscreen background,
|
||||||
// this ensures the same experience across all browsers.
|
// this ensures the same experience across all browsers.
|
||||||
background-color: var(--card-background-color);
|
background-color: var(--card-background-color);
|
||||||
|
|
||||||
|
// The primary border-radius used is the div.main. This is only useful for
|
||||||
|
// keeping the background-color within the radius.
|
||||||
|
border-radius: var(--ha-card-border-radius, 4px);
|
||||||
}
|
}
|
||||||
|
|
||||||
:host([dark]) {
|
:host([dark]) {
|
||||||
@@ -22,11 +26,6 @@ div.main {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
// Need to apply the border radius on the container level, as the ha-card has
|
|
||||||
// overflow visible in order to allow a submenu to extend beyond the card
|
|
||||||
// boundary.
|
|
||||||
border-radius: var(--ha-card-border-radius, 4px);
|
|
||||||
|
|
||||||
// Necessary to get Safari to show border-radius correctly.
|
// Necessary to get Safari to show border-radius correctly.
|
||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
|
|
||||||
@@ -45,6 +44,20 @@ div.main::-webkit-scrollbar {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Need to apply the border radius on the container level, as the ha-card has
|
||||||
|
// overflow visible in order to allow a submenu to extend beyond the card
|
||||||
|
// boundary. Need to be able to selectively curve top or bottom depending on
|
||||||
|
// whether the outside menu is being shown. There's no way to select 'preceding
|
||||||
|
// element' in CSS, so this must be implemented in JS.
|
||||||
|
div.main.curve-top {
|
||||||
|
border-top-left-radius: var(--ha-card-border-radius, 4px);
|
||||||
|
border-top-right-radius: var(--ha-card-border-radius, 4px);
|
||||||
|
}
|
||||||
|
div.main.curve-bottom {
|
||||||
|
border-bottom-left-radius: var(--ha-card-border-radius, 4px);
|
||||||
|
border-bottom-right-radius: var(--ha-card-border-radius, 4px);
|
||||||
|
}
|
||||||
|
|
||||||
/* The 'hover' menu mode is styling applied outside of the menu itself */
|
/* The 'hover' menu mode is styling applied outside of the menu itself */
|
||||||
frigate-card-menu[data-style='hover'] {
|
frigate-card-menu[data-style='hover'] {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
@@ -69,11 +82,6 @@ ha-card {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
position: static;
|
position: static;
|
||||||
color: var(--secondary-text-color, white);
|
color: var(--secondary-text-color, white);
|
||||||
|
|
||||||
// The primary border-radius used is the div.main, since this one has overflow
|
|
||||||
// explicitly visible this is only useful for keeping the background-color
|
|
||||||
// within the radius.
|
|
||||||
border-radius: var(--ha-card-border-radius, 4px);
|
|
||||||
}
|
}
|
||||||
ha-card.triggered {
|
ha-card.triggered {
|
||||||
@keyframes warning-pulse {
|
@keyframes warning-pulse {
|
||||||
|
|||||||
Reference in New Issue
Block a user