[Rt-commit] rt branch, 4.6/fix-multi-line-search-result-formats, created. rt-4.4.4-701-g40c92bef52

Blaine Motsinger blaine at bestpractical.com
Thu Jan 16 14:31:34 EST 2020


The branch, 4.6/fix-multi-line-search-result-formats has been created
        at  40c92bef521d3793d3a3041514fc50edc825ce8c (commit)

- Log -----------------------------------------------------------------
commit ec26a45a9266beb56529a664f1b12d856241863a
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Tue Jan 14 15:22:10 2020 -0600

    Remove border from table row if multi-line
    
    For the second line in multi-line rows within a table collection
    we don't want borders.  This commit restores similar styling from
    4.4 for the new elevator themes so evenline and oddline sets aren't
    divided by top and bottom borders.

diff --git a/share/static/css/elevator-light/misc.css b/share/static/css/elevator-light/misc.css
index f5e0d21cc0..3b0f99db21 100644
--- a/share/static/css/elevator-light/misc.css
+++ b/share/static/css/elevator-light/misc.css
@@ -129,6 +129,10 @@ svg.icon-helper {
     background-color: rgba(0, 0, 0, 0.05);
 }
 
+tr.evenline+tr.evenline td, tr.oddline+tr.oddline td {
+    border: none;
+}
+
 .cke_toolgroup a.cke_button {
     padding-left: 3px;
     padding-right: 3px;

commit 09175b7702285413e5fcde762c3dcad5c6d758dd
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Tue Jan 14 15:38:21 2020 -0600

    Tighten padding for table row if multi-line

diff --git a/share/static/css/elevator-light/misc.css b/share/static/css/elevator-light/misc.css
index 3b0f99db21..49debc2e99 100644
--- a/share/static/css/elevator-light/misc.css
+++ b/share/static/css/elevator-light/misc.css
@@ -131,6 +131,7 @@ svg.icon-helper {
 
 tr.evenline+tr.evenline td, tr.oddline+tr.oddline td {
     border: none;
+    padding-top: 0;
 }
 
 .cke_toolgroup a.cke_button {

commit 40c92bef521d3793d3a3041514fc50edc825ce8c
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Wed Jan 15 17:04:47 2020 -0600

    Tighten padding for table heading if multi-line

diff --git a/share/static/css/elevator-light/misc.css b/share/static/css/elevator-light/misc.css
index 49debc2e99..20118deb74 100644
--- a/share/static/css/elevator-light/misc.css
+++ b/share/static/css/elevator-light/misc.css
@@ -124,6 +124,10 @@ svg.icon-helper {
     color: #666;
 }
 
+tr.collection-as-table+tr.collection-as-table th, tr.collection-as-table+tr.collection-as-table th {
+    padding-top: 0;
+}
+
 /* row colouring */
 .oddline {
     background-color: rgba(0, 0, 0, 0.05);

-----------------------------------------------------------------------


More information about the rt-commit mailing list