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: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
CC: [email protected]
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/