Skip to content
Snippets Groups Projects
Commit dc3df7bc authored by HJ's avatar HJ :fire:
Browse files

fixes

parent acf414e4
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@
right: 0;
left: 0;
bottom: 0;
pointer-events: none;
}
&.unseen {
......
......@@ -154,7 +154,7 @@
margin-left: $fallback--attachmentRadius;
margin-left: var(--attachmentRadius, $fallback--attachmentRadius);
background-color: $fallback--fg;
background-color: var(--fg, $fallback--fg);
background-color: var(--btn, $fallback--fg);
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
......@@ -292,7 +292,7 @@
&.highlighted {
background-color: $fallback--fg;
background-color: var(--fg, $fallback--fg);
background-color: var(--lightBg, $fallback--fg);
}
}
}
......
......@@ -75,6 +75,6 @@
padding: 10px;
z-index: 1;
background-color: $fallback--fg;
background-color: var(--fg, $fallback--fg);
background-color: var(--panel, $fallback--fg);
}
</style>
import StillImage from '../still-image/still-image.vue'
import { hex2rgb } from '../../services/color_convert/color_convert.js'
export default {
props: [ 'user', 'switcher', 'selected', 'hideBio' ],
computed: {
headingStyle () {
const rgb = this.$store.state.config.customTheme.colors.bg
if (rgb) {
const color = this.$store.state.config.customTheme.colors.bg
if (color) {
const rgb = (typeof color === 'string') ? hex2rgb(color) : color
const tintColor = `rgba(${Math.floor(rgb.r)}, ${Math.floor(rgb.g)}, ${Math.floor(rgb.b)}, .5)`
return {
backgroundColor: `rgb(${Math.floor(rgb.r * 0.53)}, ${Math.floor(rgb.g * 0.56)}, ${Math.floor(rgb.b * 0.59)})`,
......
......@@ -202,6 +202,9 @@ const generateColors = (input) => {
colors[k + 'Link'].a = v
colors['panelFaint'].a = v
}
if (k === 'bg') {
colors['lightBg'].a = v
}
if (colors[k]) {
colors[k].a = v
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment