From a639846a26085cab820b374dad31ac15175d8af5 Mon Sep 17 00:00:00 2001 From: Daniel Naranjo Date: Mon, 18 Jan 2016 16:53:39 -0500 Subject: [PATCH] Reemplace property min-width value The min-width property accept only values | | inherit. to reset better set to 0. Properties documentation: https://www.w3.org/TR/CSS2/visudet.html#min-max-widths This error generates an invalid style, and, therefore, this value is set to 760px by: https://github.com/edx/edx-platform/blob/master/lms/static/sass/course/courseware/_courseware.scss#L50 --- lms/static/sass/base/_layouts.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/static/sass/base/_layouts.scss b/lms/static/sass/base/_layouts.scss index 6694e23db0..01afb7624d 100644 --- a/lms/static/sass/base/_layouts.scss +++ b/lms/static/sass/base/_layouts.scss @@ -72,7 +72,7 @@ body.view-in-course { // post-container footer (creative commons) .container-footer { max-width: none; - min-width: none; + min-width: 0; width: auto; }