aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-12-22 19:30:51 -0800
committerMark Otto <[email protected]>2014-12-22 19:30:51 -0800
commitb615bd938bccbebb7dc5f89081f4fa024784bf1f (patch)
tree1f7b9268215a84df935d1d06c3a2e7e95cc3f96c /less
parentc41970c5797cd1c3b61a5396031a3258c9c07705 (diff)
parent3668bde098e1bce289ba313119fe3cf05d01825b (diff)
downloadbootstrap-b615bd938bccbebb7dc5f89081f4fa024784bf1f.tar.xz
bootstrap-b615bd938bccbebb7dc5f89081f4fa024784bf1f.zip
Merge branch 'master' of https://github.com/twbs/bootstrap
Conflicts: dist/css/bootstrap.css.map
Diffstat (limited to 'less')
-rw-r--r--less/carousel.less1
-rw-r--r--less/close.less1
-rw-r--r--less/forms.less2
-rw-r--r--less/mixins/vendor-prefixes.less2
-rw-r--r--less/tables.less4
-rw-r--r--less/theme.less4
6 files changed, 8 insertions, 6 deletions
diff --git a/less/carousel.less b/less/carousel.less
index a28e397a5..4bbe946d3 100644
--- a/less/carousel.less
+++ b/less/carousel.less
@@ -196,6 +196,7 @@
// Internet Explorer 8-9 does not support clicks on elements without a set
// `background-color`. We cannot use `filter` since that's not viewed as a
// background color by the browser. Thus, a hack is needed.
+ // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
//
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
// set alpha transparency for the best results possible.
diff --git a/less/close.less b/less/close.less
index 9b4e74f2b..6d5bfe087 100644
--- a/less/close.less
+++ b/less/close.less
@@ -23,6 +23,7 @@
// Additional properties for button version
// iOS requires the button element instead of an anchor tag.
// If you want the anchor version, it requires `href="#"`.
+ // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
button& {
padding: 0;
cursor: pointer;
diff --git a/less/forms.less b/less/forms.less
index d2ea45036..bf15cc8a9 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -143,7 +143,7 @@ output {
fieldset[disabled] & {
cursor: @cursor-disabled;
background-color: @input-bg-disabled;
- opacity: 1; // iOS fix for unreadable disabled content
+ opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
}
// Reset height for `textarea`s
diff --git a/less/mixins/vendor-prefixes.less b/less/mixins/vendor-prefixes.less
index 31f8e2f7a..afd3331c3 100644
--- a/less/mixins/vendor-prefixes.less
+++ b/less/mixins/vendor-prefixes.less
@@ -102,7 +102,7 @@
// Firefox
&::-moz-placeholder {
color: @color;
- opacity: 1; // See https://github.com/twbs/bootstrap/pull/11526
+ opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
}
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
diff --git a/less/tables.less b/less/tables.less
index ba24498a3..3c801aedb 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -133,7 +133,7 @@ th {
// Reset default table behavior
table col[class*="col-"] {
- position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
+ position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
float: none;
display: table-column;
}
@@ -141,7 +141,7 @@ table {
td,
th {
&[class*="col-"] {
- position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
+ position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
float: none;
display: table-cell;
}
diff --git a/less/theme.less b/less/theme.less
index a15d16ecd..3673accc0 100644
--- a/less/theme.less
+++ b/less/theme.less
@@ -36,7 +36,7 @@
// Mixin for generating new styles
.btn-styles(@btn-color: #555) {
#gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));
- .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners
+ .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620
background-repeat: repeat-x;
border-color: darken(@btn-color, 14%);
@@ -130,7 +130,7 @@
// Inverted navbar
.navbar-inverse {
#gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);
- .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
+ .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257
.navbar-nav > .open > a,
.navbar-nav > .active > a {