From 703396e18a9cac98f36779729df03f8d02849b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Thu, 3 Jul 2025 23:09:07 +0200 Subject: [PATCH] zmiany ux --- templates/list_guest.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/templates/list_guest.html b/templates/list_guest.html index 01b7fbf..174e7b3 100644 --- a/templates/list_guest.html +++ b/templates/list_guest.html @@ -1,5 +1,5 @@ {% extends 'base.html' %} -{% block title %}{{ list.title }} (Gość){% endblock %} +{% block title %}Lista: {{ list.title }}{% endblock %} {% block content %}
@@ -108,8 +108,18 @@ cursor: pointer; transition: background 0.2s; } + input[type="file"]::file-selector-button:hover { - background-color: #218838; + background-color: #218838; /* Ciemniejszy zielony przy hover */ + color: #fff; + opacity: 1; } + + input[type="file"]::file-selector-button:active { + background-color: #1e7e34; + color: #fff; + opacity: 1; + } + {% endblock %}