12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #tipped {
-
- position:absolute;
- display:none;
-
-
- border: 1px solid #404040;
- color: #404040;
-
- border-radius:5px;
- padding:3px;
- z-index: 99999;
- font-size: 0.9em;
- max-width: 50%;
-
- background: #f0f0f0;
- background: -moz-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e0e0e0));
- background: -webkit-linear-gradient(top, #ffffff 0%,#e0e0e0 100%);
- background: -o-linear-gradient(top, #ffffff 0%,#e0e0e0 100%);
- background: -ms-linear-gradient(top, #ffffff 0%,#e0e0e0 100%);
- background: linear-gradient(to bottom, #ffffff 0%,#e0e0e0 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 );
-
- overflow: hidden;
- }
-
-
- #tipped-content p, #tipped p { padding: 2px; margin: 0px; padding-bottom:0px; }
-
-
- #tipped-closer-wrapper {
- display:none;
- text-align:center;
- margin: 0px;
- }
-
-
- #tipped-closer {
- display:none;
- border:2px outset #999;
- background-color:#CCC;
- }
|