From 3ba71500bc2d60a00ca81b9439305029670f4d52 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 06:55:21 -0800 Subject: Implement Frontend Feed Items View with tests --- .../coverage/src/components/FeedItems.css.html | 262 +++++++++++++++++++++ 1 file changed, 262 insertions(+) create mode 100644 frontend/coverage/src/components/FeedItems.css.html (limited to 'frontend/coverage/src/components/FeedItems.css.html') diff --git a/frontend/coverage/src/components/FeedItems.css.html b/frontend/coverage/src/components/FeedItems.css.html new file mode 100644 index 0000000..3951ead --- /dev/null +++ b/frontend/coverage/src/components/FeedItems.css.html @@ -0,0 +1,262 @@ + + + + + + Code coverage report for src/components/FeedItems.css + + + + + + + + + +
+
+

All files / src/components FeedItems.css

+
+ +
+ 0% + Statements + 0/0 +
+ + +
+ 0% + Branches + 0/0 +
+ + +
+ 0% + Functions + 0/0 +
+ + +
+ 0% + Lines + 0/0 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
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  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  + 
.feed-items {
+    padding: 1rem;
+}
+ 
+.feed-items h2 {
+    margin-top: 0;
+    border-bottom: 2px solid #eee;
+    padding-bottom: 0.5rem;
+}
+ 
+.item-list {
+    list-style: none;
+    padding: 0;
+}
+ 
+.item {
+    border-bottom: 1px solid #f0f0f0;
+    padding: 1rem 0;
+}
+ 
+.item.read .item-title {
+    color: #888;
+    font-weight: normal;
+}
+ 
+.item.unread .item-title {
+    font-weight: bold;
+}
+ 
+.item-title {
+    font-size: 1.2rem;
+    text-decoration: none;
+    color: #333;
+    display: block;
+    margin-bottom: 0.5rem;
+}
+ 
+.item-title:hover {
+    text-decoration: underline;
+    color: #007bff;
+}
+ 
+.item-meta {
+    font-size: 0.85rem;
+    color: #666;
+    margin-bottom: 0.5rem;
+}
+ 
+.item-description {
+    color: #444;
+    line-height: 1.5;
+    font-size: 0.95rem;
+}
+ 
+.item-description img {
+    max-width: 100%;
+    height: auto;
+    display: block;
+    margin: 1rem 0;
+}
+ +
+
+ + + + + + + + \ No newline at end of file -- cgit v1.2.3