make CSSLint happier; refs #12094

This commit is contained in:
Chris Rebert 2014-01-05 21:28:52 -08:00
parent 938bc12c58
commit 9fa2c95d78
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,4 @@
/*csslint ids: false, overqualified-elements: false*/
/*!
* Copyright 2013 Twitter, Inc.
*
@ -1095,6 +1096,7 @@ h1[id] {
word-wrap: break-word; /* Help out IE10+ with class names */
}
.bs-glyphicons li:hover {
background-color: rgb(86,61,124);
background-color: rgba(86,61,124,.1);
}
@ -1217,6 +1219,7 @@ h1[id] {
/* Pseudo :focus state for showing how it looks in the docs */
#focusedInput {
border-color: rgb(204,204,204); /* Restate unfocused value to make CSSLint happy that there's a pre-CSS3 fallback*/
border-color: rgba(82,168,236,.8);
outline: 0;
outline: thin dotted \9; /* IE6-9 */

View File

@ -11,6 +11,7 @@
"outline-none": false,
"qualified-headings": false,
"regex-selectors": false,
"shorthand": false,
"text-indent": false,
"unique-headings": false,
"universal-selector": false,