Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss')
-rw-r--r--scss/_buttons.scss8
-rw-r--r--scss/_forms.scss6
-rw-r--r--scss/_jumbotron.scss2
-rw-r--r--scss/_modal.scss5
-rw-r--r--scss/_nav.scss2
-rw-r--r--scss/_scaffolding.scss11
-rw-r--r--scss/_tooltip.scss1
-rw-r--r--scss/_variables.scss4
-rw-r--r--scss/mixins/_background-variant.scss2
-rw-r--r--scss/mixins/_responsive-visibility.scss2
-rw-r--r--scss/mixins/_text-emphasis.scss2
11 files changed, 33 insertions, 12 deletions
diff --git a/scss/_buttons.scss b/scss/_buttons.scss
index 5f4b3bc426..b33081868b 100644
--- a/scss/_buttons.scss
+++ b/scss/_buttons.scss
@@ -46,11 +46,17 @@
&.disabled,
&:disabled,
fieldset[disabled] & {
- pointer-events: none; // Future-proof disabling of clicks
cursor: $cursor-disabled;
opacity: .65;
@include box-shadow(none);
}
+
+ a& {
+ &.disabled,
+ fieldset[disabled] & {
+ pointer-events: none; // Future-proof disabling of clicks on `<a>` elements
+ }
+ }
}
diff --git a/scss/_forms.scss b/scss/_forms.scss
index 4e0a45f9f1..8b58835a7b 100644
--- a/scss/_forms.scss
+++ b/scss/_forms.scss
@@ -377,12 +377,14 @@ input[type="checkbox"] {
text-align: center;
pointer-events: none;
}
-.input-lg + .form-control-feedback {
+.input-lg + .form-control-feedback,
+.input-group-lg + .form-control-feedback {
width: $input-height-lg;
height: $input-height-lg;
line-height: $input-height-lg;
}
-.input-sm + .form-control-feedback {
+.input-sm + .form-control-feedback,
+.input-group-sm + .form-control-feedback {
width: $input-height-sm;
height: $input-height-sm;
line-height: $input-height-sm;
diff --git a/scss/_jumbotron.scss b/scss/_jumbotron.scss
index f826cd6160..d60793efd2 100644
--- a/scss/_jumbotron.scss
+++ b/scss/_jumbotron.scss
@@ -25,7 +25,7 @@
}
.jumbotron-heading {
- font-size: ($font-size-base * 4.5);
+ font-size: $jumbotron-heading-font-size;
}
}
diff --git a/scss/_modal.scss b/scss/_modal.scss
index da3b90c0b4..ac27613767 100644
--- a/scss/_modal.scss
+++ b/scss/_modal.scss
@@ -59,11 +59,14 @@
// Modal background
.modal-backdrop {
- position: absolute;
+ position: fixed;
top: 0;
right: 0;
+ bottom: 0;
left: 0;
background-color: $modal-backdrop-bg;
+ z-index: $zindex-modal-bg;
+
// Fade for backdrop
&.fade { opacity: 0; }
&.in { opacity: $modal-backdrop-opacity; }
diff --git a/scss/_nav.scss b/scss/_nav.scss
index 3d27891be7..228613cfe6 100644
--- a/scss/_nav.scss
+++ b/scss/_nav.scss
@@ -137,11 +137,9 @@
.tab-content {
> .tab-pane {
display: none;
- visibility: hidden;
}
> .active {
display: block;
- visibility: visible;
}
}
diff --git a/scss/_scaffolding.scss b/scss/_scaffolding.scss
index 27e09e96f6..9b93010bac 100644
--- a/scss/_scaffolding.scss
+++ b/scss/_scaffolding.scss
@@ -158,3 +158,14 @@ hr {
clip: auto;
}
}
+
+// iOS "clickable elements" fix for role="button"
+//
+// Fixes "clickability" issue (and more generally, the firing of events such as focus as well)
+// for traditionally non-focusable elements with role="button"
+// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
+// Upstream patch for normalize.css submitted: https://github.com/necolas/normalize.css/pull/379 - remove this fix once that is merged
+
+[role="button"] {
+ cursor: pointer;
+}
diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss
index 00c6049b85..379d6d5e60 100644
--- a/scss/_tooltip.scss
+++ b/scss/_tooltip.scss
@@ -13,7 +13,6 @@
font-size: $font-size-sm;
font-weight: normal;
line-height: 1.4;
- visibility: visible;
opacity: 0;
&.in { opacity: $tooltip-opacity; }
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 4119526be3..4b78edb197 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -225,7 +225,8 @@ $zindex-dropdown: 1000 !default;
$zindex-popover: 1060 !default;
$zindex-tooltip: 1070 !default;
$zindex-navbar-fixed: 1030 !default;
-$zindex-modal: 1040 !default;
+$zindex-modal-bg: 1040 !default;
+$zindex-modal: 1050 !default;
// Media queries breakpoints
@@ -385,6 +386,7 @@ $jumbotron-padding: 2rem !default;
$jumbotron-color: inherit !default;
$jumbotron-bg: $gray-lighter !default;
$jumbotron-heading-color: inherit !default;
+$jumbotron-heading-font-size: ($font-size-base * 4.5) !default;
// $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
diff --git a/scss/mixins/_background-variant.scss b/scss/mixins/_background-variant.scss
index 577f019ca2..3287d7a060 100644
--- a/scss/mixins/_background-variant.scss
+++ b/scss/mixins/_background-variant.scss
@@ -6,7 +6,7 @@
background-color: $color;
}
a#{$parent} {
- @include hover {
+ @include hover-focus {
background-color: darken($color, 10%);
}
}
diff --git a/scss/mixins/_responsive-visibility.scss b/scss/mixins/_responsive-visibility.scss
index 9867db013d..cbdf777239 100644
--- a/scss/mixins/_responsive-visibility.scss
+++ b/scss/mixins/_responsive-visibility.scss
@@ -7,7 +7,7 @@
#{$parent} {
display: block !important;
}
- table#{$parent} { display: table; }
+ table#{$parent} { display: table !important; }
tr#{$parent} { display: table-row !important; }
th#{$parent},
td#{$parent} { display: table-cell !important; }
diff --git a/scss/mixins/_text-emphasis.scss b/scss/mixins/_text-emphasis.scss
index ab3869d31e..0a6428ea76 100644
--- a/scss/mixins/_text-emphasis.scss
+++ b/scss/mixins/_text-emphasis.scss
@@ -5,7 +5,7 @@
color: $color;
}
a#{$parent} {
- @include hover {
+ @include hover-focus {
color: darken($color, 10%);
}
}