aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/assets/css/docs.css3
-rw-r--r--less/.csslintrc1
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index 58e6fa64a..fdbca1818 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -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 */
diff --git a/less/.csslintrc b/less/.csslintrc
index 8cf2f846d..005b86236 100644
--- a/less/.csslintrc
+++ b/less/.csslintrc
@@ -11,6 +11,7 @@
"outline-none": false,
"qualified-headings": false,
"regex-selectors": false,
+ "shorthand": false,
"text-indent": false,
"unique-headings": false,
"universal-selector": false,