[Rt-commit] rt branch, 4.6/fix-multi-line-search-result-formats, created. rt-4.4.4-699-g4c7915a2f4
Blaine Motsinger
blaine at bestpractical.com
Wed Jan 15 17:41:16 EST 2020
The branch, 4.6/fix-multi-line-search-result-formats has been created
at 4c7915a2f4ecf79d777269f62b41c788b528bbe2 (commit)
- Log -----------------------------------------------------------------
commit cd6ca0bc25817c7dac0a21ad349af357279098eb
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 4c7915a2f4ecf79d777269f62b41c788b528bbe2
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 {
-----------------------------------------------------------------------
More information about the rt-commit
mailing list