[Rt-commit] rtir branch, 4.0/rtir-sidebyside-layout, created. 4.0.0-58-g99065a4

Jim Brandt jbrandt at bestpractical.com
Thu Aug 31 15:12:57 EDT 2017


The branch, 4.0/rtir-sidebyside-layout has been created
        at  99065a4adae9f1ae8b1453a3fc07d8e679027a29 (commit)

- Log -----------------------------------------------------------------
commit 99065a4adae9f1ae8b1453a3fc07d8e679027a29
Author: Jim Brandt <jbrandt at bestpractical.com>
Date:   Thu Aug 31 15:03:02 2017 -0400

    Scope side by side layout to still allow the single column option
    
    RT added the side by side layout in the 3.8 series as the default,
    but still allowed the single column with a configuration option and
    a user preference. In RT, 4c22c70dc moved this to a css class to
    accomodate squished css files. Mirror this change in RTIR to still
    allow the single column option for Incident and Investigation
    create pages.

diff --git a/static/css/rtir-styles.css b/static/css/rtir-styles.css
index 5b8b7c9..98de11e 100644
--- a/static/css/rtir-styles.css
+++ b/static/css/rtir-styles.css
@@ -93,26 +93,26 @@ body.rtir #ticket-create-investigation input[type=text]
     width: 90%;
 }
 
-body.rtir #ticket-create-incident .ticket-create-basics,
-body.rtir #ticket-create-investigation .ticket-create-basics
+body.sidebyside.rtir #ticket-create-incident .ticket-create-basics,
+body.sidebyside.rtir #ticket-create-investigation .ticket-create-basics
 {
     float: right;
     width: 40%;
     clear: right;
 }
 
-body.rtir #ticket-create-incident .ticket-create-details,
-body.rtir #ticket-create-investigation .ticket-create-details
+body.sidebyside.rtir #ticket-create-incident .ticket-create-details,
+body.sidebyside.rtir #ticket-create-investigation .ticket-create-details
 {
     float: left;
     width: 58%;
     clear: left;
 }
 @media (max-width: 950px) {
-    body.rtir #ticket-create-incident .ticket-create-basics,
-    body.rtir #ticket-create-investigation .ticket-create-basics,
-    body.rtir #ticket-create-incident .ticket-create-details,
-    body.rtir #ticket-create-investigation .ticket-create-details
+    body.sidebyside.rtir #ticket-create-incident .ticket-create-basics,
+    body.sidebyside.rtir #ticket-create-investigation .ticket-create-basics,
+    body.sidebyside.rtir #ticket-create-incident .ticket-create-details,
+    body.sidebyside.rtir #ticket-create-investigation .ticket-create-details
     {
         float: none;
         width: auto;

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


More information about the rt-commit mailing list