blob: 4065e8897087abf73d03b5c8a5c101e07a5a1f93 (
plain) (
blame)
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
|
.settings-page {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
.add-feed-section {
background: #f9f9f9;
padding: 1.5rem;
border-radius: 8px;
margin-bottom: 2rem;
border: 1px solid #eee;
}
.add-feed-form {
display: flex;
gap: 1rem;
}
.feed-input {
flex: 1;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
}
.error-message {
color: #d32f2f;
margin-top: 1rem;
}
.settings-feed-list {
list-style: none;
padding: 0;
border: 1px solid #eee;
border-radius: 8px;
}
.settings-feed-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
border-bottom: 1px solid #eee;
}
.settings-feed-item:last-child {
border-bottom: none;
}
.feed-info {
display: flex;
flex-direction: column;
}
.feed-title {
font-weight: bold;
font-size: 1.1rem;
}
.feed-url {
color: #666;
font-size: 0.9rem;
}
.delete-btn {
background: #ff5252;
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
}
.delete-btn:hover {
background: #ff1744;
}
.delete-btn:disabled {
background: #ffcdd2;
cursor: not-allowed;
}
|