[Koha-bugs] [Bug 20654] New: Omnibus: Update two-column templates to use Bootstrap grid

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Apr 24 18:42:17 CEST 2018


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20654

            Bug ID: 20654
           Summary: Omnibus: Update two-column templates to use Bootstrap
                    grid
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: ASSIGNED
          Severity: enhancement
          Priority: P5 - low
         Component: Templates
          Assignee: oleonard at myacpl.org
          Reporter: oleonard at myacpl.org
        QA Contact: testopia at bugs.koha-community.org
                CC: testopia at bugs.koha-community.org
            Blocks: 14546

This omnibus bug will cover bugs which update two-column template grid markup
from YUI to Bootstrap.

Typical markup to be replaced:

<div id="doc3" class="yui-t2">
    <div id="bd">
        <div id="yui-main">
            <div class="yui-b">
                <!-- Main body of the page -->
            </div>
        </div>
        <div class="yui-b">
            <!-- Left-hand sidebar -->
        </div>
    </div>
</div>

Replacement:

<div class="main container-fluid">
    <div class="row">
        <div class="col-sm-10 col-sm-push-2">
            <!-- Main body of the page -->
        </div>
        <div class="col-sm-2 col-sm-pull-10">
            <!-- Left-hand sidebar -->
        </div>
    </div>
</div>

Note that "col-sm-push-2" and "col-sm-pull-10" are the classes that reverse the
visible column order in the desktop layout.


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14546
[Bug 14546] Make staff client templates responsive
-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list