revert: white cards, remove credentials from service tiles
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+12
-17
@@ -837,31 +837,26 @@ button {
|
|||||||
color: #174768;
|
color: #174768;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Service tiles — glassmorphism */
|
/* Service tiles — clean white cards with depth */
|
||||||
.dashboard-page .tile {
|
.dashboard-page .tile {
|
||||||
backdrop-filter: blur(22px) saturate(160%) !important;
|
backdrop-filter: none !important;
|
||||||
-webkit-backdrop-filter: blur(22px) saturate(160%) !important;
|
background: #ffffff !important;
|
||||||
background: rgba(255, 255, 255, 0.22) !important;
|
border: 1px solid rgba(185, 215, 238, 0.7) !important;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.42) !important;
|
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 4px 18px rgba(15, 64, 103, 0.14),
|
0 1px 3px rgba(15, 64, 103, 0.06),
|
||||||
0 1px 4px rgba(15, 64, 103, 0.07),
|
0 6px 20px rgba(15, 64, 103, 0.09) !important;
|
||||||
inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
|
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
|
||||||
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease !important;
|
|
||||||
color: #0c1e2f !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dashboard-page .tile-wrap:hover .tile {
|
.dashboard-page .tile-wrap:hover .tile {
|
||||||
transform: translateY(-5px) !important;
|
transform: translateY(-3px) !important;
|
||||||
background: rgba(255, 255, 255, 0.34) !important;
|
border-color: rgba(42, 130, 210, 0.45) !important;
|
||||||
border-color: rgba(255, 255, 255, 0.68) !important;
|
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 12px 36px rgba(15, 64, 103, 0.2),
|
0 2px 6px rgba(15, 64, 103, 0.08),
|
||||||
0 3px 8px rgba(15, 64, 103, 0.1),
|
0 12px 32px rgba(15, 64, 103, 0.16) !important;
|
||||||
inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Icon box — compact accent square */
|
/* Icon box */
|
||||||
.dashboard-page .tile-icon-box {
|
.dashboard-page .tile-icon-box {
|
||||||
width: min(100%, 336px) !important;
|
width: min(100%, 336px) !important;
|
||||||
aspect-ratio: 1 / 1 !important;
|
aspect-ratio: 1 / 1 !important;
|
||||||
|
|||||||
@@ -100,25 +100,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<h3>{{ service.name }}</h3>
|
<h3>{{ service.name }}</h3>
|
||||||
<div class="tile-info-area">
|
<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 %}
|
{% if service.comment %}
|
||||||
<div class="tile-comment">{{ service_comment_html.get(service.id, '') }}</div>
|
<div class="tile-comment">{{ service_comment_html.get(service.id, '') }}</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user