summaryrefslogtreecommitdiff
path: root/public/javascripts/themes/metro/tooltip.css
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-03-20 17:33:43 -0700
committeryo mama <pepper@scannerjammer.com>2015-03-20 17:33:43 -0700
commit2afbcf4e7d000d99fdbc582d7113684ee00e80cc (patch)
tree6ba3313b78625735fb295e3d375e59054c31e558 /public/javascripts/themes/metro/tooltip.css
first
Diffstat (limited to 'public/javascripts/themes/metro/tooltip.css')
-rw-r--r--public/javascripts/themes/metro/tooltip.css98
1 files changed, 98 insertions, 0 deletions
diff --git a/public/javascripts/themes/metro/tooltip.css b/public/javascripts/themes/metro/tooltip.css
new file mode 100644
index 0000000..3b8a47d
--- /dev/null
+++ b/public/javascripts/themes/metro/tooltip.css
@@ -0,0 +1,98 @@
+.tooltip {
+ position: absolute;
+ display: none;
+ z-index: 9900000;
+ outline: none;
+ padding: 5px;
+ border-width: 1px;
+ border-style: solid;
+ border-radius: 5px;
+ -moz-border-radius: 0px 0px 0px 0px;
+ -webkit-border-radius: 0px 0px 0px 0px;
+ border-radius: 0px 0px 0px 0px;
+}
+.tooltip-content {
+ font-size: 12px;
+}
+.tooltip-arrow-outer,
+.tooltip-arrow {
+ position: absolute;
+ width: 0;
+ height: 0;
+ line-height: 0;
+ font-size: 0;
+ border-style: solid;
+ border-width: 6px;
+ border-color: transparent;
+ _border-color: tomato;
+ _filter: chroma(color=tomato);
+}
+.tooltip-right .tooltip-arrow-outer {
+ left: 0;
+ top: 50%;
+ margin: -6px 0 0 -13px;
+}
+.tooltip-right .tooltip-arrow {
+ left: 0;
+ top: 50%;
+ margin: -6px 0 0 -12px;
+}
+.tooltip-left .tooltip-arrow-outer {
+ right: 0;
+ top: 50%;
+ margin: -6px -13px 0 0;
+}
+.tooltip-left .tooltip-arrow {
+ right: 0;
+ top: 50%;
+ margin: -6px -12px 0 0;
+}
+.tooltip-top .tooltip-arrow-outer {
+ bottom: 0;
+ left: 50%;
+ margin: 0 0 -13px -6px;
+}
+.tooltip-top .tooltip-arrow {
+ bottom: 0;
+ left: 50%;
+ margin: 0 0 -12px -6px;
+}
+.tooltip-bottom .tooltip-arrow-outer {
+ top: 0;
+ left: 50%;
+ margin: -13px 0 0 -6px;
+}
+.tooltip-bottom .tooltip-arrow {
+ top: 0;
+ left: 50%;
+ margin: -12px 0 0 -6px;
+}
+.tooltip {
+ background-color: #fff;
+ border-color: #ddd;
+ color: #444;
+}
+.tooltip-right .tooltip-arrow-outer {
+ border-right-color: #ddd;
+}
+.tooltip-right .tooltip-arrow {
+ border-right-color: #fff;
+}
+.tooltip-left .tooltip-arrow-outer {
+ border-left-color: #ddd;
+}
+.tooltip-left .tooltip-arrow {
+ border-left-color: #fff;
+}
+.tooltip-top .tooltip-arrow-outer {
+ border-top-color: #ddd;
+}
+.tooltip-top .tooltip-arrow {
+ border-top-color: #fff;
+}
+.tooltip-bottom .tooltip-arrow-outer {
+ border-bottom-color: #ddd;
+}
+.tooltip-bottom .tooltip-arrow {
+ border-bottom-color: #fff;
+}