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
diff options
context:
space:
mode:
authorJohann-S <johann.servoire@gmail.com>2017-04-19 11:59:10 +0300
committerJohann-S <johann.servoire@gmail.com>2017-05-14 12:41:19 +0300
commitfc8b85b62670b8396cac7fb821c025c58fa77a78 (patch)
tree0d21ed48546813920a28f97d7c6216106f8189e7 /scss/_tooltip.scss
parent18e4e851e2829aedc6d1ff2b703ba5cae2c0a288 (diff)
Fix some css for the arrow of Popover/Tooltip + update documentation
Diffstat (limited to 'scss/_tooltip.scss')
-rw-r--r--scss/_tooltip.scss16
1 files changed, 8 insertions, 8 deletions
diff --git a/scss/_tooltip.scss b/scss/_tooltip.scss
index 4006b46d96..d67dc4460a 100644
--- a/scss/_tooltip.scss
+++ b/scss/_tooltip.scss
@@ -65,6 +65,14 @@
border-left-color: $tooltip-arrow-color;
}
}
+
+ .arrow::before {
+ position: absolute;
+ width: 0;
+ height: 0;
+ border-color: transparent;
+ border-style: solid;
+ }
}
// Wrapper for the tooltip content
@@ -75,12 +83,4 @@
text-align: center;
background-color: $tooltip-bg;
@include border-radius($border-radius);
-
- .arrow::before {
- position: absolute;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
- }
}