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

tipTip.css include in theme.css

Location:
extensions/floOS/OS_glass_clear
Files:
1 deleted
1 edited

Legend:

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

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