1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 13:15:24 +00:00

Fix menu context bakcground color

This commit is contained in:
Jeremie Pardou 2025-03-19 11:19:44 +01:00
parent f8bc11ce51
commit 59c7aaddb3
4 changed files with 40 additions and 4 deletions
web-frontend/modules
builder
components/elements/components
themeConfigBlockTypes.js
core
assets/scss/components/builder/elements
utils

View file

@ -67,11 +67,10 @@
@shown="toggleExpanded(item.id)" @shown="toggleExpanded(item.id)"
@hidden="toggleExpanded(item.id)" @hidden="toggleExpanded(item.id)"
> >
<ThemeProvider> <ThemeProvider class="menu-element__sub-links">
<div <div
v-for="child in item.children" v-for="child in item.children"
:key="child.id" :key="child.id"
class="menu-element__sub-links"
:style="getStyleOverride('menu')" :style="getStyleOverride('menu')"
> >
<ABLink <ABLink
@ -205,7 +204,7 @@ export default {
contextRef.hide() contextRef.hide()
} else { } else {
const containerRef = event.currentTarget const containerRef = event.currentTarget
contextRef.show(containerRef, 'bottom', 'left', 0) contextRef.show(containerRef, 'bottom', 'left', 10)
} }
}, },
getItemUrl(item) { getItemUrl(item) {

View file

@ -11,6 +11,7 @@ import { FONT_WEIGHTS } from '@baserow/modules/builder/fontWeights'
import { import {
resolveColor, resolveColor,
colorRecommendation, colorRecommendation,
colorContrast,
} from '@baserow/modules/core/utils/colors' } from '@baserow/modules/core/utils/colors'
import { import {
WIDTHS_NEW, WIDTHS_NEW,
@ -50,6 +51,12 @@ export class ThemeStyle {
) )
} }
addColorContrastIfExists(theme, propName, styleName) {
return this.addIfExists(theme, propName, styleName, (v) =>
colorContrast(resolveColor(v, this.colorVariables))
)
}
addFontFamilyIfExists(theme, propName, styleName) { addFontFamilyIfExists(theme, propName, styleName) {
return this.addIfExists(theme, propName, styleName, (v) => { return this.addIfExists(theme, propName, styleName, (v) => {
const fontFamilyType = this.$registry.get('fontFamily', v) const fontFamilyType = this.$registry.get('fontFamily', v)
@ -647,6 +654,16 @@ export class PageThemeConfigBlockType extends ThemeConfigBlockType {
$registry: this.app.$registry, $registry: this.app.$registry,
}) })
style.addColorIfExists(theme, 'page_background_color') style.addColorIfExists(theme, 'page_background_color')
style.addColorRecommendationIfExists(
theme,
'page_background_color',
'--page-background-color-complement'
)
style.addColorContrastIfExists(
theme,
'page_background_color',
'--page-background-color-contrast'
)
style.addIfExists( style.addIfExists(
theme, theme,
'page_background_file', 'page_background_file',

View file

@ -61,6 +61,10 @@
width: 100%; width: 100%;
gap: 10px; gap: 10px;
padding: 5px; padding: 5px;
border-radius: 6px;
// We want the same color as page background
background-color: var(--page-background-color, #fff);
} }
.menu-element__sub-link { .menu-element__sub-link {
@ -71,5 +75,5 @@
} }
.menu-element__sub-link:hover { .menu-element__sub-link:hover {
background: $palette-neutral-100; background: var(--page-background-color-contrast, $palette-neutral-100);
} }

View file

@ -263,3 +263,19 @@ export const colorRecommendation = (hexColor) => {
return 'white' return 'white'
} }
} }
/**
* Return the color lighten or darken depending on the initial color.
* @param {string} hexColor The hex string of the color.
* @returns The contrasted color.
*/
export const colorContrast = (hexColor, amount = 10) => {
// l is the luminance
const hsl = conversionsMap.hex.hsl(hexColor)
if (hsl.l > 0.5) {
hsl.l -= amount / 100
} else {
hsl.l += amount / 100
}
return conversionsMap.hsl.hex(hsl)
}