diff --git a/config.py b/config.py index edb1d78..c0d56dc 100644 --- a/config.py +++ b/config.py @@ -9,7 +9,7 @@ DATA_PATH = BASE_DIR / "data" / "entries.csv" DEFAULT_DATABASE_URL = f"sqlite:///{BASE_DIR / 'data' / 'boker-dev.sqlite3'}" ELIGIBLE_MIN_SESSIONS = 3 -APP_VERSION = "2.3.1" +APP_VERSION = "2.4.0" def load_local_env(env_path: Path) -> None: diff --git a/static/css/style.css b/static/css/style.css index f213241..ca76ef1 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -2346,6 +2346,29 @@ select.control { cursor: pointer; } } /* Session create form — horizontal 3-col grid */ +.sessions-search-bar { + display: flex; + align-items: center; + gap: 8px; + padding: 10px 16px; + border-bottom: 1px solid var(--border); + background: var(--surface-sunk); +} +.sessions-search-bar__icon { + color: var(--faintest); + flex-shrink: 0; +} +.sessions-search-bar__input { + flex: 1; + background: none; + border: none; + outline: none; + font-size: .85rem; + color: var(--text); + font-family: inherit; +} +.sessions-search-bar__input::placeholder { color: var(--faintest); } + .session-create-row { display: grid; grid-template-columns: 1fr 1fr 1fr; diff --git a/templates/league_sessions.html b/templates/league_sessions.html index 60f5d50..b6c64da 100644 --- a/templates/league_sessions.html +++ b/templates/league_sessions.html @@ -48,7 +48,7 @@