Created
April 1, 2013 11:53
-
-
Save mucar/5284555 to your computer and use it in GitHub Desktop.
Additions to jquery-ui.css for jsf2_jquery_tooltip_sample.xhtml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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