diff --git a/lms/static/sass/bourbon/css3/_box-sizing.scss b/lms/static/sass/bourbon/css3/_box-sizing.scss index 3f3f7cca9a..42aaaf6fc7 100644 --- a/lms/static/sass/bourbon/css3/_box-sizing.scss +++ b/lms/static/sass/bourbon/css3/_box-sizing.scss @@ -3,4 +3,5 @@ -webkit-box-sizing: $box; -moz-box-sizing: $box; box-sizing: $box; + box-sizing: $box; *behavior: url(/static/scripts/boxsizing.htc); } diff --git a/lms/static/sass/ie.scss b/lms/static/sass/ie.scss index a873a1fd02..11072570ec 100644 --- a/lms/static/sass/ie.scss +++ b/lms/static/sass/ie.scss @@ -154,4 +154,32 @@ header.global ol.user > li.primary a.dropdown { .ie-banner { display: block !important; +} + +div.course-wrapper { + display: block !important; + + section.course-content, + section.course-index { + display: block !important; + float: left; + } + + section.course-content { + width: 71.27%; + } +} + +.sidebar { + float: left !important; + display: block !important; +} + +.sequence-nav ol { + display: block !important; + + li { + float: left !important; + width: 50px; + } } \ No newline at end of file diff --git a/lms/static/scripts/boxsizing.htc b/lms/static/scripts/boxsizing.htc new file mode 100644 index 0000000000..43bd86fae1 --- /dev/null +++ b/lms/static/scripts/boxsizing.htc @@ -0,0 +1,501 @@ +/** +* box-sizing Polyfill +* +* A polyfill for box-sizing: border-box for IE6 & IE7. +* +* JScript +* +* This program is free software: you can redistribute it and/or modify +* it under the terms of the GNU Lesser General Public License as published +* by the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU Lesser General Public License for more details. +* +* See +* +* @category JScript +* @package box-sizing-polyfill +* @author Christian Schepp Schaefer +* @copyright 2012 Christian Schepp Schaefer +* @license http://www.gnu.org/copyleft/lesser.html The GNU LESSER GENERAL PUBLIC LICENSE, Version 3.0 +* @link http://github.com/Schepp/box-sizing-polyfill +* +* PREFACE: +* +* This box-sizing polyfill is based on previous work done by Erik Arvidsson, +* which he published in 2002 on http://webfx.eae.net/dhtml/boxsizing/boxsizing.html. +* +* USAGE: +* +* Add the behavior/HTC after every `box-sizing: border-box;` that you assign: +* +* box-sizing: border-box; +* *behavior: url(/scripts/boxsizing.htc);` +* +* Prefix the `behavior` property with a star, like seen above, so it will only be seen by +* IE6 & IE7, not by IE8+ who already implement box-sizing. +* +* The URL to the HTC file must be relative to your HTML(!) document, not relative to your CSS. +* That's why I'd advise you to use absolute paths like in the example. +* +*/ + + + + + + \ No newline at end of file