You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/12/13 17:53:38 UTC

[incubator-ponymail-foal] branch master updated: more css tweaks to list view borders and placement

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new 9dac6f8  more css tweaks to list view borders and placement
9dac6f8 is described below

commit 9dac6f8b49cf9f16dfe3468f40e1b784b0a3bf9f
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Dec 13 18:53:29 2021 +0100

    more css tweaks to list view borders and placement
---
 webui/css/scaffolding.css | 37 +++++++++++++++++++++++--------------
 1 file changed, 23 insertions(+), 14 deletions(-)

diff --git a/webui/css/scaffolding.css b/webui/css/scaffolding.css
index b8e26b1..16966df 100644
--- a/webui/css/scaffolding.css
+++ b/webui/css/scaffolding.css
@@ -452,7 +452,7 @@ a.dropdown-toggle {
 
 #list_picker_ul > li {
     display: inline-block;
-    border: 1px solid #6666;
+    border: 1px solid #E0E0E0;
     background: #F9F9F9;
     border-radius: 0px;
     margin: 0px;
@@ -469,8 +469,8 @@ a.dropdown-toggle {
     text-overflow: ellipsis;
     border-top-left-radius: 3px;
     border-top-right-radius: 3px;
-    border-top: 3px solid #6666;
-    border-bottom: 1px solid #6666;
+    border-top: 3px solid #E0E0E0;
+    border-bottom: 1px solid #E0E0E0;
 }
 
 #list_picker li.active {
@@ -511,7 +511,7 @@ a.dropdown-toggle {
 /* ListView email wrapper */
 #emails {
     background: #FFF;
-    border: 1.5px groove #FFF9;
+    border: 1px solid #E0E0E0;
     min-height: auto;
     position: relative;
     overflow-y: hidden;
@@ -527,8 +527,9 @@ a.dropdown-toggle {
     padding-top: 2px;
     font-size: 1.25rem;
     float: left;
-    width: 100%;
+    width: calc(100% - 4px);
     position: relative;
+    margin: 2px;
 }
 
 .listview_email_as {
@@ -557,17 +558,17 @@ a.dropdown-toggle {
     background: #FFF;
     border-left: 3px solid #AAA;
     border-top: none;
-    height: 24px;
-    line-height: 24px;
-    padding-top: 2px;
+    height: 20px;
+    line-height: 20px;
     font-size: 1.25rem;
     float: left;
-    width: 100%;
+    width: calc(100% - 4px);
+    margin: 2px;
 }
 
 .listview_email_compact .listview_email_author {
-    height: 24px;
-    line-height: 24px;
+    height: 20px;
+    line-height: 20px;
 }
 
 .listview_email_compact .gravatar {
@@ -834,7 +835,7 @@ a.dropdown-toggle {
   text-overflow: ellipsis;
   white-space: nowrap;
   color: #1d4f75 !important;
-  line-height: 17px;
+  line-height: 20px;
 }
 
 
@@ -847,11 +848,19 @@ a.dropdown-toggle {
 }
 
 a > .listview_email_flat {
-    border-top: 1px solid #CCC9;
+    border-top: 1px solid #E0E0E0;
 }
 
 a > .listview_email_compact {
-    border-top: 1px solid #CCC9;
+    border-top: 1px solid #E0E0E0;
+}
+
+a:first-child > .listview_email_flat {
+    border-top: none;
+}
+
+a:first-child > .listview_email_compact {
+    border-top: none;
 }