summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass
diff options
context:
space:
mode:
Diffstat (limited to 'debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass')
-rw-r--r--debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass47
1 files changed, 47 insertions, 0 deletions
diff --git a/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass
new file mode 100644
index 0000000..11e4b94
--- /dev/null
+++ b/debian/missing-sources/wyrm/sass/wyrm_addons/elements/_tooltip.sass
@@ -0,0 +1,47 @@
+// Tooltips
+// --------
+
+.wy-tooltip
+ position: absolute
+ z-index: $z_index_tooltip
+ display: block
+ visibility: visible
+ padding: 5px
+ font-size: 11px
+ opacity: 0
+ +transition(opacity 2.0s ease-in)
+ &.on
+ opacity: .8
+ &.top
+ margin-top: -2px
+ &.right
+ margin-left: 2px
+ &.bottom
+ margin-top: 2px
+ &.left
+ margin-left: -2px
+ &.top .wy-tooltip-arrow
+ +arrow-top
+ &.left .wy-tooltip-arrow
+ +arrow-left
+ &.bottom .wy-tooltip-arrow
+ +arrow-bot
+ &.right .wy-tooltip-arrow
+ +arrow-right
+
+.wy-tooltip-inner
+ max-width: 200px
+ padding: $base-font-size / 2
+ color: $white
+ text-align: center
+ text-decoration: none
+ background-color: $black
+ border-radius: 4px
+
+.wy-tooltip-arrow
+ position: absolute
+ width: 0
+ height: 0
+
+
+