From aa8b1543be2b082320f9342c4226c3cda417b33e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 23 Jan 2014 14:01:59 -0800 Subject: [PATCH 1/2] add WCAG color guideline to CONTRIBUTING.md --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 94eb110ae5..7a7b42ce00 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -172,6 +172,7 @@ license your work under the terms of the [MIT License](LICENSE.md). - Attribute selectors should only be used where absolutely necessary (e.g., form controls) and should be avoided on custom components for performance and explicitness. - Series of classes for a component should include a base class (e.g., `.component`) and use the base class as a prefix for modifier and sub-components (e.g., `.component-lg`). - Avoid inheritance and over nesting—use single, explicit classes whenever possible. +- When feasible, default color palettes should comply with [WCAG color contrast guidelines](http://www.w3.org/TR/WCAG20/#visual-audio-contrast). ### JS From b30cff488876531424bf2ff248ae5900472052b5 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 23 Jan 2014 17:23:57 -0800 Subject: [PATCH 2/2] Add ref in Less to docs regarding box-sizing conflicts Refs #12351 --- less/scaffolding.less | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/less/scaffolding.less b/less/scaffolding.less index c4869139be..2fa0fdec7c 100644 --- a/less/scaffolding.less +++ b/less/scaffolding.less @@ -4,7 +4,10 @@ // Reset the box-sizing - +// +// Heads up! This reset may cause conflicts with some third-party widgets. +// For recommendations on resolving such conflicts, see +// http://getbootstrap.com/getting-started/#third-box-sizing * { .box-sizing(border-box); }