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_dark_2
Files:
1 deleted
1 edited

Legend:

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

    r10058 r12645  
    77------------------------------------------------------------------------------ */
    88
    9 @import "tiptip/tipTip.css" ;
    109/* text color */
    1110BODY, H1, H2, H3, DT,
     
    368367UL.tabsheet LI.normal_tab:hover { border-color: black; }
    369368
    370 /*______________-------------------___________________________---------*/
     369/********** Frm tiptip.css *********************/
     370/* TipTip CSS - Version 1.2 */
     371
     372#tiptip_holder {
     373        display: none;
     374        position: absolute;
     375        top: 0;
     376        left: 0;
     377        z-index: 99999;
     378}
     379
     380#tiptip_holder.tip_top {
     381        padding-bottom: 5px;
     382}
     383
     384#tiptip_holder.tip_bottom {
     385        padding-top: 5px;
     386}
     387
     388#tiptip_holder.tip_right {
     389        padding-left: 5px;
     390}
     391
     392#tiptip_holder.tip_left {
     393        padding-right: 5px;
     394}
     395
     396#tiptip_content {
     397        font-size: 11px;
     398        color: #fff;
     399        text-shadow: 0 0 2px #000;
     400        padding: 4px 8px;
     401        border: 1px solid rgba(255,255,255,0.25);
     402        background-color: rgb(25,25,25);
     403        background-color: rgba(25,25,25,0.92);
     404        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
     405        border-radius: 3px;
     406        -webkit-border-radius: 3px;
     407        -moz-border-radius: 3px;
     408        box-shadow: 0 0 3px #555;
     409        -webkit-box-shadow: 0 0 3px #555;
     410        -moz-box-shadow: 0 0 3px #555;
     411}
     412
     413#tiptip_arrow, #tiptip_arrow_inner {
     414        position: absolute;
     415        border-color: transparent;
     416        border-style: solid;
     417        border-width: 6px;
     418        height: 0;
     419        width: 0;
     420}
     421
     422#tiptip_holder.tip_top #tiptip_arrow {
     423        border-top-color: #fff;
     424        border-top-color: rgba(255,255,255,0.35);
     425}
     426
     427#tiptip_holder.tip_bottom #tiptip_arrow {
     428        border-bottom-color: #fff;
     429        border-bottom-color: rgba(255,255,255,0.35);
     430}
     431
     432#tiptip_holder.tip_right #tiptip_arrow {
     433        border-right-color: #fff;
     434        border-right-color: rgba(255,255,255,0.35);
     435}
     436
     437#tiptip_holder.tip_left #tiptip_arrow {
     438        border-left-color: #fff;
     439        border-left-color: rgba(255,255,255,0.35);
     440}
     441
     442#tiptip_holder.tip_top #tiptip_arrow_inner {
     443        margin-top: -7px;
     444        margin-left: -6px;
     445        border-top-color: rgb(25,25,25);
     446        border-top-color: rgba(25,25,25,0.92);
     447}
     448
     449#tiptip_holder.tip_bottom #tiptip_arrow_inner {
     450        margin-top: -5px;
     451        margin-left: -6px;
     452        border-bottom-color: rgb(25,25,25);
     453        border-bottom-color: rgba(25,25,25,0.92);
     454}
     455
     456#tiptip_holder.tip_right #tiptip_arrow_inner {
     457        margin-top: -6px;
     458        margin-left: -5px;
     459        border-right-color: rgb(25,25,25);
     460        border-right-color: rgba(25,25,25,0.92);
     461}
     462
     463#tiptip_holder.tip_left #tiptip_arrow_inner {
     464        margin-top: -6px;
     465        margin-left: -7px;
     466        border-left-color: rgb(25,25,25);
     467        border-left-color: rgba(25,25,25,0.92);
     468}
     469
     470/* Webkit Hacks  */
     471@media screen and (-webkit-min-device-pixel-ratio:0) { 
     472        #tiptip_content {
     473                padding: 4px 8px 5px 8px;
     474                background-color: rgba(45,45,45,0.88);
     475        }
     476        #tiptip_holder.tip_bottom #tiptip_arrow_inner {
     477                border-bottom-color: rgba(45,45,45,0.88);
     478        }
     479        #tiptip_holder.tip_top #tiptip_arrow_inner {
     480                border-top-color: rgba(20,20,20,0.92);
     481        }
     482}
Note: See TracChangeset for help on using the changeset viewer.