aboutsummaryrefslogtreecommitdiffstats
path: root/library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-02-26 11:05:48 +0100
committerMario Vavti <mario@mariovavti.com>2018-02-26 11:05:48 +0100
commita5f843ba9ba3dd3ce9ad22a89d57dfcb5fa46586 (patch)
treec0ec56a71c8ad04100d4914d14498b154a52e5dd /library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less
parent4781a8cb6bbd6d0e379b404c455844ddbc7e2812 (diff)
downloadvolse-hubzilla-a5f843ba9ba3dd3ce9ad22a89d57dfcb5fa46586.tar.gz
volse-hubzilla-a5f843ba9ba3dd3ce9ad22a89d57dfcb5fa46586.tar.bz2
volse-hubzilla-a5f843ba9ba3dd3ce9ad22a89d57dfcb5fa46586.zip
switch to fork-awesome
Diffstat (limited to 'library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less')
-rw-r--r--library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less70
1 files changed, 0 insertions, 70 deletions
diff --git a/library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less b/library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less
deleted file mode 100644
index 83d5f2bd7..000000000
--- a/library/font_awesome/src/3.2.1/assets/less/bootstrap-2.3.2/tooltip.less
+++ /dev/null
@@ -1,70 +0,0 @@
-//
-// Tooltips
-// --------------------------------------------------
-
-
-// Base class
-.tooltip {
- position: absolute;
- z-index: @zindexTooltip;
- display: block;
- visibility: visible;
- font-size: 11px;
- line-height: 1.4;
- .opacity(0);
- &.in { .opacity(80); }
- &.top { margin-top: -3px; padding: 5px 0; }
- &.right { margin-left: 3px; padding: 0 5px; }
- &.bottom { margin-top: 3px; padding: 5px 0; }
- &.left { margin-left: -3px; padding: 0 5px; }
-}
-
-// Wrapper for the tooltip content
-.tooltip-inner {
- max-width: 200px;
- padding: 8px;
- color: @tooltipColor;
- text-align: center;
- text-decoration: none;
- background-color: @tooltipBackground;
- .border-radius(@baseBorderRadius);
-}
-
-// Arrows
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-.tooltip {
- &.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -@tooltipArrowWidth;
- border-width: @tooltipArrowWidth @tooltipArrowWidth 0;
- border-top-color: @tooltipArrowColor;
- }
- &.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -@tooltipArrowWidth;
- border-width: @tooltipArrowWidth @tooltipArrowWidth @tooltipArrowWidth 0;
- border-right-color: @tooltipArrowColor;
- }
- &.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -@tooltipArrowWidth;
- border-width: @tooltipArrowWidth 0 @tooltipArrowWidth @tooltipArrowWidth;
- border-left-color: @tooltipArrowColor;
- }
- &.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -@tooltipArrowWidth;
- border-width: 0 @tooltipArrowWidth @tooltipArrowWidth;
- border-bottom-color: @tooltipArrowColor;
- }
-}