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

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/bootstrap/scss/mixins/_hover.scss')
-rw-r--r--node_modules/bootstrap/scss/mixins/_hover.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/node_modules/bootstrap/scss/mixins/_hover.scss b/node_modules/bootstrap/scss/mixins/_hover.scss
index 192f847..409f824 100644
--- a/node_modules/bootstrap/scss/mixins/_hover.scss
+++ b/node_modules/bootstrap/scss/mixins/_hover.scss
@@ -9,18 +9,18 @@
//
// Issue: https://github.com/twbs/bootstrap/issues/25195
-@mixin hover {
+@mixin hover() {
&:hover { @content; }
}
-@mixin hover-focus {
+@mixin hover-focus() {
&:hover,
&:focus {
@content;
}
}
-@mixin plain-hover-focus {
+@mixin plain-hover-focus() {
&,
&:hover,
&:focus {
@@ -28,7 +28,7 @@
}
}
-@mixin hover-focus-active {
+@mixin hover-focus-active() {
&:hover,
&:focus,
&:active {