v0.3.4 style fixes
This commit is contained in:
@@ -7,7 +7,7 @@ TZ=UTC
|
|||||||
# Copy this file to .env and customize
|
# Copy this file to .env and customize
|
||||||
|
|
||||||
# Image version to run (set by build.sh, or use 'latest')
|
# Image version to run (set by build.sh, or use 'latest')
|
||||||
JAMA_VERSION=0.3.3
|
JAMA_VERSION=0.3.4
|
||||||
|
|
||||||
# Default admin credentials (used on FIRST RUN only)
|
# Default admin credentials (used on FIRST RUN only)
|
||||||
ADMIN_NAME=Admin User
|
ADMIN_NAME=Admin User
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "jama-backend",
|
"name": "jama-backend",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"description": "TeamChat backend server",
|
"description": "TeamChat backend server",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
2
build.sh
2
build.sh
@@ -13,7 +13,7 @@
|
|||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
VERSION="${1:-0.3.3}"
|
VERSION="${1:-0.3.4}"
|
||||||
ACTION="${2:-}"
|
ACTION="${2:-}"
|
||||||
REGISTRY="${REGISTRY:-}"
|
REGISTRY="${REGISTRY:-}"
|
||||||
IMAGE_NAME="jama"
|
IMAGE_NAME="jama"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "jama-frontend",
|
"name": "jama-frontend",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -216,7 +216,11 @@
|
|||||||
padding: 0 2px;
|
padding: 0 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.out .mention { color: #afd0ff; background: rgba(255,255,255,0.15); }
|
/* Sender bubble — primary colour is the background, so mention must contrast against it */
|
||||||
|
.out .mention {
|
||||||
|
color: #ffffff;
|
||||||
|
background: rgba(255,255,255,0.22);
|
||||||
|
}
|
||||||
|
|
||||||
.msg-image {
|
.msg-image {
|
||||||
max-width: 240px;
|
max-width: 240px;
|
||||||
|
|||||||
@@ -379,3 +379,15 @@ a { color: inherit; text-decoration: none; }
|
|||||||
[data-theme="dark"] .msg-input-raw {
|
[data-theme="dark"] .msg-input-raw {
|
||||||
caret-color: var(--text-primary);
|
caret-color: var(--text-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Night mode: .in bubble (dark surface) — base mention colour is too dark, use light primary */
|
||||||
|
[data-theme="dark"] .in .mention {
|
||||||
|
color: #6ab0f5;
|
||||||
|
background: rgba(106,176,245,0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Night mode: .out bubble — white stays white, just ensure background tint works on darker primary */
|
||||||
|
[data-theme="dark"] .out .mention {
|
||||||
|
color: #ffffff;
|
||||||
|
background: rgba(255,255,255,0.25);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user