From 0b2b286f9b1cf1cf806d02595e048d4484f3b023 Mon Sep 17 00:00:00 2001 From: taoshihan <630892807@qq.com> Date: Sun, 5 Jun 2022 23:20:26 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BF=E5=AE=A2=E7=95=8C=E9=9D=A2=E5=90=8C?= =?UTF-8?q?=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/css/common.css | 29 +++++++++++ static/images/fire.svg | 1 + static/templates/chat_page.html | 85 +++++++++++++++++---------------- 3 files changed, 73 insertions(+), 42 deletions(-) create mode 100644 static/images/fire.svg diff --git a/static/css/common.css b/static/css/common.css index c272c95..f10a203 100644 --- a/static/css/common.css +++ b/static/css/common.css @@ -484,6 +484,13 @@ a{color: #07a9fe;text-decoration: none;} bottom: -5px; top: unset; } +.chatEntBox{ + height: 100%; + position: relative; +} +.chatArticle{ + display: none; +} @media screen and (min-width: 900px) { .chatCenter { max-height: 800px; @@ -504,6 +511,28 @@ a{color: #07a9fe;text-decoration: none;} -ms-flex-align: center; align-items: center; } + .chatEntBox { + width: calc(100% - 270px); + float: left; + border-right: 1px solid #e6e6e6; + } + .chatArticle { + display: block; + width: 260px; + float: right; + overflow-y: auto; + } + .hotQuestionTitle { + padding: 15px 10px 10px 10px; + border-bottom: 1px solid rgba(0,0,0,.09); + font-size: 16px; + display: flex; + } + .hotQuestionTitle .fire { + width: 20px; + margin-right: 10px; + color: rgb(250, 84, 28); + } } .visitorEditorArea{ margin: 0 5px; diff --git a/static/images/fire.svg b/static/images/fire.svg new file mode 100644 index 0000000..e5b26f9 --- /dev/null +++ b/static/images/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/templates/chat_page.html b/static/templates/chat_page.html index 9ef0463..a93dc32 100644 --- a/static/templates/chat_page.html +++ b/static/templates/chat_page.html @@ -30,55 +30,56 @@