From fb7f4b112f623716f9b2c4a36939f0e3b65f1403 Mon Sep 17 00:00:00 2001 From: Renard Date: Sun, 29 Sep 2019 21:14:09 -0300 Subject: Nightmode threadList --- src/App.css | 17 +++++++++++++ src/ThreadList.js | 74 ++++++++++++++++++++++++++++++------------------------- 2 files changed, 57 insertions(+), 34 deletions(-) (limited to 'src') diff --git a/src/App.css b/src/App.css index f347b78..73001f9 100644 --- a/src/App.css +++ b/src/App.css @@ -165,4 +165,21 @@ transform: translatex(-50%) translatey(-50%); background-size: cover; transition: 1s opacity; +} + +.ui.items>.item>.content>.description.inverted { + color: rgba(255, 255, 255, 0.9); +} + +.ui.items>.item .meta.inverted :last-child { + color: rgba(255, 255, 255, 0.7); +} + +.ui.items>.item .extra.inverted { + color: rgba(255, 255, 255, 0.7); +} + +.ui.items>.item>.content>a.header.inverted { + color: #4183C4; + ; } \ No newline at end of file diff --git a/src/ThreadList.js b/src/ThreadList.js index fe597c3..56f9ab2 100644 --- a/src/ThreadList.js +++ b/src/ThreadList.js @@ -1,5 +1,5 @@ import React, { Component } from "react"; -import { Loader, Icon, Item } from "semantic-ui-react"; +import { Loader, Icon, Item, Segment } from "semantic-ui-react"; import { Link } from "@reach/router"; import Moment from "react-moment"; import "moment/locale/es"; @@ -24,7 +24,7 @@ class ThreadList extends Component { } render() { - const { dir, boardList } = this.props; + const { dir, boardList, nightMode } = this.props; const { threadList, isLoading } = this.state; const currentBoard = boardList.find(board => { @@ -44,38 +44,44 @@ class ThreadList extends Component { ); return ( - - {threadList.map((thread, index) => { - return ( - - {currentBoard.allow_images === 1 && ( - - )} - - - {thread.subject} - - - - - - - - {thread.message.replace(stripHtml, "").substring(0, 200) + - " ..."} - - - - {thread.total_replies} Respuestas - - - - ); - })} - + + + {threadList.map((thread, index) => { + return ( + + {currentBoard.allow_images === 1 && ( + + )} + + + {thread.subject} + + + + + + + + {thread.message.replace(stripHtml, "").substring(0, 200) + + " ..."} + + + + {thread.total_replies} Respuestas + + + + ); + })} + + ); } } -- cgit v1.2.1-18-gbd029