-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.html
291 lines (251 loc) · 5.91 KB
/
sidebar.html
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>阅读列表管理</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
padding-top: 180px;
/* 增加顶部内边距,确保内容不被遮挡 */
padding-bottom: 60px;
height: 100vh;
overflow: hidden;
/* 防止整个页面滚动 */
}
/* 顶部固定区域 */
.fixed-header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: white;
z-index: 100;
border-bottom: 1px solid #eee;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* 搜索框容器 */
.search-container {
padding: 10px;
background: white;
}
#search-input {
width: 100%;
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
}
#search-input:focus {
outline: none;
border-color: #4CAF50;
box-shadow: 0 0 3px rgba(76, 175, 80, 0.3);
}
/* 排序控件 */
.sort-controls {
padding: 10px;
display: flex;
gap: 10px;
background: white;
}
.sort-btn {
padding: 6px 12px;
background-color: #f0f0f0;
border: 1px solid #ddd;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
}
.sort-btn.active {
background-color: #4CAF50;
color: white;
border-color: #4CAF50;
}
/* 标签页区域 */
.tabs-section {
background: white;
padding: 0 10px;
display: flex;
flex-direction: column;
}
.tabs {
display: flex;
border-bottom: 1px solid #ddd;
}
.tab {
padding: 8px 16px;
cursor: pointer;
border: 1px solid transparent;
border-bottom: none;
margin-bottom: -1px;
font-size: 14px;
}
.tab.active {
background-color: white;
border-color: #ddd;
border-bottom-color: white;
color: #4CAF50;
}
.stats-readmanage {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
}
.stats {
font-size: 13px;
color: #666;
}
.readmanagebutton {
display: flex;
gap: 10px;
}
.readmanagebutton .action-btn {
padding: 6px 12px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
color: white;
}
#alreadyread {
background-color: #dc3545; /* 红色 */
}
#havenotread {
background-color: #28a745; /* 绿色 */
}
/* 内容区域 */
#reading-list {
height: calc(100vh - 220px);
/* 计算剩余可用高度 */
overflow-y: auto;
/* 只允许内容区域滚动 */
padding: 10px;
padding-top: 15px;
/* 移除顶部内边距 */
}
.reading-item {
padding: 12px;
border-bottom: 1px solid #eee;
position: relative;
}
.reading-item:hover {
background-color: #f8f8f8;
}
.reading-item a {
color: #1a73e8;
text-decoration: none;
font-size: 15px;
display: block;
margin-bottom: 4px;
}
.reading-item.read {
opacity: 0.7;
}
.reading-item.read a {
color: #666;
}
.read-toggle,
.delete-btn {
color: #666;
cursor: pointer;
padding: 2px 6px;
border-radius: 3px;
font-size: 12px;
margin-right: 8px;
}
.read-toggle:hover,
.delete-btn:hover {
background-color: #f0f0f0;
}
.delete-btn {
color: #dc3545;
}
.time-info {
font-size: 12px;
color: #666;
margin-top: 4px;
}
/* 底部固定区域 */
.fixed-footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 10px;
background: white;
border-top: 1px solid #eee;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
#add-current {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.2s;
}
#add-current:hover {
background-color: #45a049;
}
#add-current:disabled {
background-color: #cccccc;
cursor: not-allowed;
}
.highlight {
background-color: #fff3cd;
padding: 2px;
border-radius: 2px;
}
.no-results {
padding: 20px;
text-align: center;
color: #666;
}
.reading-item:first-child {
border-top: none;
/* 移除第一个项目的顶部边框 */
padding-top: 0;
/* 移除第一个项目的顶部内边距 */
}
</style>
</head>
<body>
<div class="fixed-header">
<div class="search-container">
<input type="text" id="search-input" placeholder="搜索标题或网址...">
</div>
<div class="sort-controls">
<button class="sort-btn" data-sort="creationTime" data-order="desc">创建时间 ▼</button>
<button class="sort-btn" data-sort="lastUpdateTime" data-order="desc">更新时间 ▼</button>
</div>
<div class="tabs-section">
<div class="tabs">
<div class="tab active" data-tab="all">全部</div>
<div class="tab" data-tab="unread">未读</div>
<div class="tab" data-tab="read">已读</div>
</div>
<div class="stats-readmanage">
<div class="stats"></div>
<div class="readmanagebutton">
<button id="alreadyread" class="action-btn read-all">全部已读</button>
<button id="havenotread" class="action-btn unread-all">全部未读</button>
</div>
</div>
</div>
</div>
<div id="reading-list"></div>
<div class="fixed-footer">
<button id="add-current">添加当前标签页</button>
</div>
<script src="sidebar.js"></script>
</body>
</html>