File size: 1,296 Bytes
e636070 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
/* status-panel.css */
.status-container {
display: flex;
flex-direction: column;
gap: 20px;
}
.status-module {
background-color: white;
border-radius: 8px;
padding: 15px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.status-module h3 {
color: #5f3737;
margin: 0 0 10px 0;
font-size: 1.1em;
padding-bottom: 8px;
border-bottom: 2px solid #fdf5ee;
}
.module-content {
font-size: 0.9em;
}
/* 事件模块样式 */
.event-text {
color: #5f3737;
line-height: 1.4;
display: flex;
align-items: center;
}
/* 地点模块样式 */
.location-name {
font-weight: bold;
color: #5f3737;
margin-bottom: 5px;
}
.location-description {
color: #666;
line-height: 1.4;
}
/* 分组模块样式 */
.group-members {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.group-member {
background-color: #fdf5ee;
padding: 5px 10px;
border-radius: 15px;
font-size: 0.9em;
color: #5f3737;
}
.no-members {
color: #666;
font-style: italic;
}
/* 状态指示器 */
.status-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
margin-right: 8px;
display: inline-block;
}
.status-active {
background-color: #4CAF50;
}
.status-inactive {
background-color: #999;
}
|