summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/styles/bootstrap/mixins/_hover.scss
diff options
context:
space:
mode:
authorSunder Tattavarada <statta@research.att.com>2020-02-04 15:40:52 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-04 15:40:52 +0000
commitc1ca4d3517a9ff2854ff5f084514d0334fc12a64 (patch)
tree62abfc1478ed832174a48ee5c1203513c238a36f /ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/styles/bootstrap/mixins/_hover.scss
parentc345a2309421097ba02de062fcbfccd0c0f3be9d (diff)
parent5505e42484efac0273627795583179d58f81a1ee (diff)
Merge "Added RDP Library"
Diffstat (limited to 'ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/styles/bootstrap/mixins/_hover.scss')
-rw-r--r--ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/styles/bootstrap/mixins/_hover.scss61
1 files changed, 61 insertions, 0 deletions
diff --git a/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/styles/bootstrap/mixins/_hover.scss b/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/styles/bootstrap/mixins/_hover.scss
new file mode 100644
index 00000000..fd2f1e2c
--- /dev/null
+++ b/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/styles/bootstrap/mixins/_hover.scss
@@ -0,0 +1,61 @@
+// stylelint-disable indentation
+@mixin hover {
+ // TODO: re-enable along with mq4-hover-shim
+// @if $enable-hover-media-query {
+// // See Media Queries Level 4: https://drafts.csswg.org/mediaqueries/#hover
+// // Currently shimmed by https://github.com/twbs/mq4-hover-shim
+// @media (hover: hover) {
+// &:hover { @content }
+// }
+// }
+// @else {
+ &:hover { @content; }
+// }
+}
+
+
+@mixin hover-focus {
+ @if $enable-hover-media-query {
+ &:focus {
+ @content;
+ }
+ @include hover { @content; }
+ } @else {
+ &:focus,
+ &:hover {
+ @content;
+ }
+ }
+}
+
+@mixin plain-hover-focus {
+ @if $enable-hover-media-query {
+ &,
+ &:focus {
+ @content;
+ }
+ @include hover { @content; }
+ } @else {
+ &,
+ &:focus,
+ &:hover {
+ @content;
+ }
+ }
+}
+
+@mixin hover-focus-active {
+ @if $enable-hover-media-query {
+ &:focus,
+ &:active {
+ @content;
+ }
+ @include hover { @content; }
+ } @else {
+ &:focus,
+ &:active,
+ &:hover {
+ @content;
+ }
+ }
+}