[Rt-commit] rt branch, 5.0/fix-long-value-overlap, created. rt-5.0.0-206-g51cd268202

Blaine Motsinger blaine at bestpractical.com
Thu Jan 7 16:51:47 EST 2021


The branch, 5.0/fix-long-value-overlap has been created
        at  51cd268202c01c2f8731a0414793c6333c651c45 (commit)

- Log -----------------------------------------------------------------
commit 51cd268202c01c2f8731a0414793c6333c651c45
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Thu Jan 7 15:44:05 2021 -0600

    Fix long long value overlap
    
    Bootstrap sets the height of a value in a form-row to a static
    height, which means long values are then cut off if then wrap to a
    second line.
    
    In the elevator themes, we use a combination of the classes
    current-value and form-control for these values in a form-row.
    This commit sets height: auto for those specific values so long
    lines that overlap will not be cut off by the next line.

diff --git a/share/static/css/elevator-light/forms.css b/share/static/css/elevator-light/forms.css
index 766747cdc5..0a40072db9 100644
--- a/share/static/css/elevator-light/forms.css
+++ b/share/static/css/elevator-light/forms.css
@@ -307,6 +307,7 @@ div[id^="TitleBox--_Ticket_ModifyPeople_html"] .list-group-item {
 span.current-value.form-control {
   border: none;
   padding-left: 0;
+  height: auto;
 }
 
 .list-group-item label {

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


More information about the rt-commit mailing list