revert: white cards, remove credentials from service tiles

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-21 08:13:38 +00:00
parent cdc30f126c
commit cc5d7b8476
2 changed files with 12 additions and 36 deletions
+12 -17
View File
@@ -837,31 +837,26 @@ button {
color: #174768;
}
/* Service tiles — glassmorphism */
/* Service tiles — clean white cards with depth */
.dashboard-page .tile {
backdrop-filter: blur(22px) saturate(160%) !important;
-webkit-backdrop-filter: blur(22px) saturate(160%) !important;
background: rgba(255, 255, 255, 0.22) !important;
border: 1px solid rgba(255, 255, 255, 0.42) !important;
backdrop-filter: none !important;
background: #ffffff !important;
border: 1px solid rgba(185, 215, 238, 0.7) !important;
box-shadow:
0 4px 18px rgba(15, 64, 103, 0.14),
0 1px 4px rgba(15, 64, 103, 0.07),
inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease !important;
color: #0c1e2f !important;
0 1px 3px rgba(15, 64, 103, 0.06),
0 6px 20px rgba(15, 64, 103, 0.09) !important;
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
}
.dashboard-page .tile-wrap:hover .tile {
transform: translateY(-5px) !important;
background: rgba(255, 255, 255, 0.34) !important;
border-color: rgba(255, 255, 255, 0.68) !important;
transform: translateY(-3px) !important;
border-color: rgba(42, 130, 210, 0.45) !important;
box-shadow:
0 12px 36px rgba(15, 64, 103, 0.2),
0 3px 8px rgba(15, 64, 103, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
0 2px 6px rgba(15, 64, 103, 0.08),
0 12px 32px rgba(15, 64, 103, 0.16) !important;
}
/* Icon box — compact accent square */
/* Icon box */
.dashboard-page .tile-icon-box {
width: min(100%, 336px) !important;
aspect-ratio: 1 / 1 !important;
-19
View File
@@ -100,25 +100,6 @@
</div>
<h3>{{ service.name }}</h3>
<div class="tile-info-area">
{% if service.svc_login or service.svc_password %}
<div class="svc-credentials">
{% if service.svc_login %}
<div class="svc-cred-row">
<span class="svc-cred-label">Логин</span>
<span class="svc-cred-value">{{ service.svc_login }}</span>
</div>
{% endif %}
{% if service.svc_password %}
<div class="svc-cred-row">
<span class="svc-cred-label">Пароль</span>
<span class="svc-cred-value svc-cred-masked">{{ service.svc_password }}</span>
</div>
{% endif %}
{% if service.svc_cred_hint %}
<p class="svc-cred-hint">{{ service.svc_cred_hint }}</p>
{% endif %}
</div>
{% endif %}
{% if service.comment %}
<div class="tile-comment">{{ service_comment_html.get(service.id, '') }}</div>
{% endif %}