Skip to content

Instantly share code, notes, and snippets.

@mucar
Created April 1, 2013 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mucar/5284555 to your computer and use it in GitHub Desktop.
Save mucar/5284555 to your computer and use it in GitHub Desktop.
Additions to jquery-ui.css for jsf2_jquery_tooltip_sample.xhtml
/* bunlar zaten vardı */
.ui-tooltip {
position: absolute;
padding: 1px;
position: absolute;
z-index: 9999;
max-width: 1000px;
-webkit-box-shadow: 0 0 5px #aaa;
box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
border-width: 0px;
}
/* mucar'in ekledikleri */
.ui-tooltip table {
background-color: #dee7f7;
border: 2px solid #336;
font-family: Verdana;
color: #000;
font-size: 11px;
filter: alpha(opacity = 90);
opacity: .9;
-khtml-opacity: .9;
-moz-opacity: .9;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
max-width: 1000px;
}
.ui-tooltip .tooltipBaslik {
font-family: Verdana, Arial;
font-size: 10px;
color: #41619b;
font-weight: bolder;
}
.ui-tooltip .tooltipIcerik {
font-family: Verdana, Arial;
font-size: 10px;
color: #000000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment