File size: 2,185 Bytes
e636070 92e6753 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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
/* 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;
}
/* 设定模块样式 */
.settings-content {
max-height: 300px;
overflow-y: auto;
}
.setting-item {
background-color: #fdf5ee;
padding: 10px;
border-radius: 6px;
margin-bottom: 8px;
}
.setting-term {
font-weight: bold;
color: #5f3737;
margin-bottom: 4px;
}
.setting-nature {
color: #666;
font-size: 0.9em;
margin-bottom: 4px;
}
.setting-detail {
color: #666;
line-height: 1.4;
}
.no-settings {
color: #666;
font-style: italic;
text-align: center;
padding: 10px;
}
/* 滚动条样式 */
.settings-content::-webkit-scrollbar {
width: 6px;
}
.settings-content::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}
.settings-content::-webkit-scrollbar-thumb {
background: #888;
border-radius: 3px;
}
.settings-content::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* 状态指示器 */
.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;
}
|