Initial commit
This commit is contained in:
69
css/tooltip.css
Normal file
69
css/tooltip.css
Normal file
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
----------------------------------------------------------------
|
||||
|
||||
tooltip.css
|
||||
Gravity Forms Admin Tooltip Styles
|
||||
http://www.gravityforms.com
|
||||
updated: November 6, 2013 12:42 PM
|
||||
|
||||
Gravity Forms is a Rocketgenius project
|
||||
copyright 2013 Rocketgenius Inc.
|
||||
http: //www.rocketgenius.com
|
||||
this may not be re-distrubited without the
|
||||
express written permission of the author.
|
||||
|
||||
NOTE: DO NOT EDIT THIS FILE!
|
||||
THIS FILE IS REPLACED DURING AUTO UPGRADE
|
||||
AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.
|
||||
|
||||
----------------------------------------------------------------
|
||||
*/
|
||||
|
||||
|
||||
a.tooltip,
|
||||
a.tooltip_left,
|
||||
a.tooltip_bottomleft {
|
||||
width: 16px;
|
||||
text-decoration: none;
|
||||
color: #424242;
|
||||
zoom: 1;
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
a.tooltip:hover,
|
||||
a.tooltip_left:hover,
|
||||
a.tooltip_bottomleft:hover {
|
||||
color: #0074A2;
|
||||
zoom: 1;
|
||||
filter: alpha(opacity=100);
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
||||
.ui-tooltip {
|
||||
padding: 18px;
|
||||
position: absolute;
|
||||
z-index: 9999999;
|
||||
max-width: 300px;color: #000;
|
||||
text-shadow: 1px 1px 1px #fff;
|
||||
font-size: 1.0em;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 8px 6px -6px rgba(0,0,0,0.3);
|
||||
-moz-box-shadow: 0 8px 6px -6px rgba(0,0,0,0.3);
|
||||
box-shadow: 0 8px 6px -6px rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
body .ui-tooltip {
|
||||
border: 4px solid #999;
|
||||
background-color: #ededed;
|
||||
}
|
||||
|
||||
body .ui-tooltip h6 {
|
||||
color: #0e6085;
|
||||
font-size: 1.1em;
|
||||
font-weight: bold;
|
||||
margin: 0 0 3px 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
Reference in New Issue
Block a user