tam chat
This commit is contained in:
@@ -437,45 +437,291 @@ body {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.clock-display-summary {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.45rem;
|
||||
margin-bottom: 0.45rem;
|
||||
padding-bottom: 0.45rem;
|
||||
border-bottom: 1px dashed var(--border-color);
|
||||
flex: 0 0 auto;
|
||||
.card-title-row--shifts {
|
||||
margin-bottom: 0.2rem;
|
||||
flex-wrap: nowrap;
|
||||
gap: 0.35rem 0.5rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.clock-chip {
|
||||
.clock-inline {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.35rem;
|
||||
padding: 0.2rem 0.5rem;
|
||||
border-radius: 6px;
|
||||
border: 1px solid var(--border-color);
|
||||
background: var(--bg-subtle);
|
||||
font-size: 0.72rem;
|
||||
}
|
||||
|
||||
.clock-chip em {
|
||||
font-style: normal;
|
||||
flex-wrap: wrap;
|
||||
margin-left: auto;
|
||||
font-size: 0.68rem;
|
||||
color: var(--text-muted);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.clock-chip strong {
|
||||
.clock-inline-item {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.clock-inline-item strong {
|
||||
font-family: 'Share Tech Mono', monospace;
|
||||
font-size: 0.78rem;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.clock-chip--online strong {
|
||||
color: var(--online-color);
|
||||
.clock-inline-item strong.online { color: var(--online-color); }
|
||||
.clock-inline-item strong.offline { color: var(--offline-color); }
|
||||
|
||||
.clock-inline-dot {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.clock-chip--offline strong {
|
||||
color: var(--offline-color);
|
||||
.clock-inline-dot.online { background: var(--online-color); }
|
||||
.clock-inline-dot.offline { background: var(--offline-color); }
|
||||
|
||||
.clock-inline-sep {
|
||||
opacity: 0.35;
|
||||
font-size: 0.65rem;
|
||||
}
|
||||
|
||||
.card-title-row--shifts .card-title-sub {
|
||||
font-size: 0.62rem;
|
||||
margin-left: 0.35rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Student chat messenger */
|
||||
.student-chat-dock {
|
||||
position: fixed;
|
||||
right: 12px;
|
||||
bottom: 12px;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.student-chat-toast {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 64px;
|
||||
width: 260px;
|
||||
padding: 0.65rem 0.75rem;
|
||||
border-radius: 10px;
|
||||
background: #1e293b;
|
||||
color: #fff;
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
|
||||
font-size: 0.78rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.student-chat-fab {
|
||||
position: relative;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 50%;
|
||||
border: none;
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
font-size: 1.15rem;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
.student-chat-badge {
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
right: -2px;
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
padding: 0 4px;
|
||||
border-radius: 8px;
|
||||
background: #ef4444;
|
||||
color: #fff;
|
||||
font-size: 0.62rem;
|
||||
font-weight: 700;
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.student-chat-messenger {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 58px;
|
||||
width: min(520px, calc(100vw - 24px));
|
||||
height: min(400px, calc(100vh - 80px));
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.student-chat-messenger-head {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0.55rem 0.7rem;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
font-size: 0.82rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.student-chat-close {
|
||||
border: none;
|
||||
background: none;
|
||||
color: var(--text-muted);
|
||||
font-size: 1.1rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.student-chat-messenger-body {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.student-chat-sidebar {
|
||||
width: 150px;
|
||||
flex-shrink: 0;
|
||||
border-right: 1px solid var(--border-color);
|
||||
overflow-y: auto;
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.student-chat-conv-btn {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
border: none;
|
||||
background: transparent;
|
||||
padding: 0.55rem 0.5rem;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.student-chat-conv-btn.active {
|
||||
background: rgba(187, 33, 38, 0.12);
|
||||
border-left: 2px solid var(--accent);
|
||||
}
|
||||
|
||||
.student-chat-conv-name {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.student-chat-conv-unread {
|
||||
font-style: normal;
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
border-radius: 8px;
|
||||
padding: 0 5px;
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
|
||||
.student-chat-conv-preview {
|
||||
display: block;
|
||||
font-size: 0.65rem;
|
||||
color: var(--text-muted);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-top: 0.15rem;
|
||||
}
|
||||
|
||||
.student-chat-thread {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.student-chat-thread-head {
|
||||
padding: 0.45rem 0.65rem;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.student-chat-messages {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 0.55rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.4rem;
|
||||
background: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.student-chat-empty {
|
||||
font-size: 0.72rem;
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
padding: 1rem 0.5rem;
|
||||
}
|
||||
|
||||
.student-chat-bubble {
|
||||
max-width: 88%;
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
.student-chat-bubble--staff { align-self: flex-start; }
|
||||
.student-chat-bubble--student { align-self: flex-end; }
|
||||
|
||||
.student-chat-label {
|
||||
font-size: 0.6rem;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 0.1rem;
|
||||
}
|
||||
|
||||
.student-chat-body {
|
||||
padding: 0.4rem 0.55rem;
|
||||
border-radius: 10px;
|
||||
line-height: 1.35;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.student-chat-bubble--staff .student-chat-body {
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
border: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.student-chat-bubble--student .student-chat-body {
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.student-chat-time {
|
||||
font-size: 0.58rem;
|
||||
color: var(--text-muted);
|
||||
margin-top: 0.1rem;
|
||||
}
|
||||
|
||||
.student-chat-compose {
|
||||
display: flex;
|
||||
gap: 0.35rem;
|
||||
padding: 0.45rem 0.55rem;
|
||||
border-top: 1px solid var(--border-color);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.student-chat-compose input {
|
||||
flex: 1;
|
||||
font-size: 0.74rem;
|
||||
padding: 0.4rem 0.5rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--border-color);
|
||||
background: var(--bg-base);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.student-chat-compose input:disabled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.shifts-wrap {
|
||||
@@ -622,15 +868,15 @@ body {
|
||||
.clocks-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.4rem;
|
||||
gap: 0.3rem;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
padding: 0.75rem 0.85rem;
|
||||
padding: 0.5rem 0.65rem;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-size: 0.85rem;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 700;
|
||||
color: var(--text-primary);
|
||||
letter-spacing: -0.2px;
|
||||
|
||||
Reference in New Issue
Block a user