summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-01-19 10:51:08 +0300
committerAndrew Dolgov <[email protected]>2020-01-19 10:51:08 +0300
commitaa56bcaf441ca59f94c8529018ebb4e94844d1d6 (patch)
treeaf7c3a2110f2f64647f0312191cd0837ad7c3762 /css
parent303f8fb329ff75e41559806c9affd8c3c49504b0 (diff)
support night mode when using share by URL
Diffstat (limited to 'css')
-rw-r--r--css/default.css4
-rw-r--r--css/utility.less4
-rw-r--r--css/zoom.less12
3 files changed, 10 insertions, 10 deletions
diff --git a/css/default.css b/css/default.css
index 4398315ac..7a205e77d 100644
--- a/css/default.css
+++ b/css/default.css
@@ -1864,7 +1864,7 @@ body.ttrss_zoom div.post .attachments {
}
body.ttrss_zoom div.post div.header {
padding-bottom: 10px;
- border: 0px solid #eee;
+ border: 0px solid #ddd;
border-bottom-width: 1px;
background: white;
font-size: 12px;
@@ -1897,7 +1897,7 @@ body.ttrss_zoom div.post div.content blockquote {
margin: 5px 0px 5px 0px;
color: #555;
padding-left: 10px;
- border: 0px solid #ccc;
+ border: 0px solid #ddd;
border-left-width: 4px;
}
body.ttrss_zoom div.post div.content code {
diff --git a/css/utility.less b/css/utility.less
index 17d403ade..087c4ced3 100644
--- a/css/utility.less
+++ b/css/utility.less
@@ -10,8 +10,8 @@ body.ttrss_utility {
margin : 4em;
.content {
- background : white;
- border : 1px solid #ddd;
+ background : @default-bg;
+ border : 1px solid @border-default;
padding : 20px;
box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
diff --git a/css/zoom.less b/css/zoom.less
index 5ada0caff..ae8de7dba 100644
--- a/css/zoom.less
+++ b/css/zoom.less
@@ -3,8 +3,8 @@ body.ttrss_zoom {
margin : 2em auto;
div.post {
- border : 1px solid #ddd;
- background : white;
+ border : 1px solid @border-default;
+ background : @default-bg;
box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
.attachments {
@@ -13,11 +13,11 @@ body.ttrss_zoom {
div.header {
padding-bottom : 10px;
- border: 0px solid #eee;
+ border: 0px solid @border-default;
border-bottom-width: 1px;
- background : white;
+ background : @default-bg;
font-size : 12px;
- color : #555;
+ color : @default-text;
.row {
display : flex;
@@ -49,7 +49,7 @@ body.ttrss_zoom {
margin : 5px 0px 5px 0px;
color : @default-text;
padding-left : 10px;
- border: 0px solid #ccc;
+ border: 0px solid @border-default;
border-left-width: 4px;
}