Ignore:
Timestamp:
Nov 18, 2011, 1:15:19 PM (12 years ago)
Author:
flop25
Message:

tipTip.css include in theme.css

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/floOS/OS_glass_dark/theme.css

    r10057 r12645  
    328328UL.tabsheet LI.normal_tab:hover { border-color: black; }
    329329
    330 /*______________-------------------___________________________---------*/
     330/* TipTip CSS - Version 1.2 */
     331
     332#tiptip_holder {
     333        display: none;
     334        position: absolute;
     335        top: 0;
     336        left: 0;
     337        z-index: 99999;
     338}
     339
     340#tiptip_holder.tip_top {
     341        padding-bottom: 5px;
     342}
     343
     344#tiptip_holder.tip_bottom {
     345        padding-top: 5px;
     346}
     347
     348#tiptip_holder.tip_right {
     349        padding-left: 5px;
     350}
     351
     352#tiptip_holder.tip_left {
     353        padding-right: 5px;
     354}
     355
     356#tiptip_content {
     357        font-size: 11px;
     358        color: #fff;
     359        text-shadow: 0 0 2px #000;
     360        padding: 4px 8px;
     361        border: 1px solid rgba(255,255,255,0.25);
     362        background-color: rgb(25,25,25);
     363        background-color: rgba(25,25,25,0.92);
     364        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
     365        border-radius: 3px;
     366        -webkit-border-radius: 3px;
     367        -moz-border-radius: 3px;
     368        box-shadow: 0 0 3px #555;
     369        -webkit-box-shadow: 0 0 3px #555;
     370        -moz-box-shadow: 0 0 3px #555;
     371}
     372
     373#tiptip_arrow, #tiptip_arrow_inner {
     374        position: absolute;
     375        border-color: transparent;
     376        border-style: solid;
     377        border-width: 6px;
     378        height: 0;
     379        width: 0;
     380}
     381
     382#tiptip_holder.tip_top #tiptip_arrow {
     383        border-top-color: #fff;
     384        border-top-color: rgba(255,255,255,0.35);
     385}
     386
     387#tiptip_holder.tip_bottom #tiptip_arrow {
     388        border-bottom-color: #fff;
     389        border-bottom-color: rgba(255,255,255,0.35);
     390}
     391
     392#tiptip_holder.tip_right #tiptip_arrow {
     393        border-right-color: #fff;
     394        border-right-color: rgba(255,255,255,0.35);
     395}
     396
     397#tiptip_holder.tip_left #tiptip_arrow {
     398        border-left-color: #fff;
     399        border-left-color: rgba(255,255,255,0.35);
     400}
     401
     402#tiptip_holder.tip_top #tiptip_arrow_inner {
     403        margin-top: -7px;
     404        margin-left: -6px;
     405        border-top-color: rgb(25,25,25);
     406        border-top-color: rgba(25,25,25,0.92);
     407}
     408
     409#tiptip_holder.tip_bottom #tiptip_arrow_inner {
     410        margin-top: -5px;
     411        margin-left: -6px;
     412        border-bottom-color: rgb(25,25,25);
     413        border-bottom-color: rgba(25,25,25,0.92);
     414}
     415
     416#tiptip_holder.tip_right #tiptip_arrow_inner {
     417        margin-top: -6px;
     418        margin-left: -5px;
     419        border-right-color: rgb(25,25,25);
     420        border-right-color: rgba(25,25,25,0.92);
     421}
     422
     423#tiptip_holder.tip_left #tiptip_arrow_inner {
     424        margin-top: -6px;
     425        margin-left: -7px;
     426        border-left-color: rgb(25,25,25);
     427        border-left-color: rgba(25,25,25,0.92);
     428}
     429
     430/* Webkit Hacks  */
     431@media screen and (-webkit-min-device-pixel-ratio:0) { 
     432        #tiptip_content {
     433                padding: 4px 8px 5px 8px;
     434                background-color: rgba(45,45,45,0.88);
     435        }
     436        #tiptip_holder.tip_bottom #tiptip_arrow_inner {
     437                border-bottom-color: rgba(45,45,45,0.88);
     438        }
     439        #tiptip_holder.tip_top #tiptip_arrow_inner {
     440                border-top-color: rgba(20,20,20,0.92);
     441        }
     442}
Note: See TracChangeset for help on using the changeset viewer.