35 lines
700 B
CSS
35 lines
700 B
CSS
.planner-users-online-item {
|
|
margin-left: -8px;
|
|
border: 2px solid white;
|
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
cursor: pointer;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.planner-users-online-img:hover {
|
|
transform: translateY(-2px);
|
|
z-index: 10;
|
|
border-color: #cbd5e1;
|
|
}
|
|
|
|
.planner-users-online-count-circle {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
background-color: #f1f5f9;
|
|
color: #475569;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
z-index: 5;
|
|
}
|
|
|
|
.planner-users-online-profile-card {
|
|
min-width: 260px;
|
|
padding: 16px;
|
|
}
|
|
.planner-users-online-tooltip {
|
|
border: 1px solid #e2e8f0;
|
|
} |