Changeset 12645


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

tipTip.css include in theme.css

Location:
extensions/floOS
Files:
4 deleted
4 edited

Legend:

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

    r10056 r12645  
    300300UL.tabsheet LI.normal_tab:hover { border-color: black; }
    301301
     302/* TipTip CSS - Version 1.2 */
     303
     304#tiptip_holder {
     305        display: none;
     306        position: absolute;
     307        top: 0;
     308        left: 0;
     309        z-index: 99999;
     310}
     311
     312#tiptip_holder.tip_top {
     313        padding-bottom: 5px;
     314}
     315
     316#tiptip_holder.tip_bottom {
     317        padding-top: 5px;
     318}
     319
     320#tiptip_holder.tip_right {
     321        padding-left: 5px;
     322}
     323
     324#tiptip_holder.tip_left {
     325        padding-right: 5px;
     326}
     327
     328#tiptip_content {
     329        font-size: 11px;
     330        color: #fff;
     331        text-shadow: 0 0 2px #000;
     332        padding: 4px 8px;
     333        border: 1px solid rgba(255,255,255,0.25);
     334        background-color: rgb(25,25,25);
     335        background-color: rgba(25,25,25,0.92);
     336        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
     337        border-radius: 3px;
     338        -webkit-border-radius: 3px;
     339        -moz-border-radius: 3px;
     340        box-shadow: 0 0 3px #555;
     341        -webkit-box-shadow: 0 0 3px #555;
     342        -moz-box-shadow: 0 0 3px #555;
     343}
     344
     345#tiptip_arrow, #tiptip_arrow_inner {
     346        position: absolute;
     347        border-color: transparent;
     348        border-style: solid;
     349        border-width: 6px;
     350        height: 0;
     351        width: 0;
     352}
     353
     354#tiptip_holder.tip_top #tiptip_arrow {
     355        border-top-color: #fff;
     356        border-top-color: rgba(255,255,255,0.35);
     357}
     358
     359#tiptip_holder.tip_bottom #tiptip_arrow {
     360        border-bottom-color: #fff;
     361        border-bottom-color: rgba(255,255,255,0.35);
     362}
     363
     364#tiptip_holder.tip_right #tiptip_arrow {
     365        border-right-color: #fff;
     366        border-right-color: rgba(255,255,255,0.35);
     367}
     368
     369#tiptip_holder.tip_left #tiptip_arrow {
     370        border-left-color: #fff;
     371        border-left-color: rgba(255,255,255,0.35);
     372}
     373
     374#tiptip_holder.tip_top #tiptip_arrow_inner {
     375        margin-top: -7px;
     376        margin-left: -6px;
     377        border-top-color: rgb(25,25,25);
     378        border-top-color: rgba(25,25,25,0.92);
     379}
     380
     381#tiptip_holder.tip_bottom #tiptip_arrow_inner {
     382        margin-top: -5px;
     383        margin-left: -6px;
     384        border-bottom-color: rgb(25,25,25);
     385        border-bottom-color: rgba(25,25,25,0.92);
     386}
     387
     388#tiptip_holder.tip_right #tiptip_arrow_inner {
     389        margin-top: -6px;
     390        margin-left: -5px;
     391        border-right-color: rgb(25,25,25);
     392        border-right-color: rgba(25,25,25,0.92);
     393}
     394
     395#tiptip_holder.tip_left #tiptip_arrow_inner {
     396        margin-top: -6px;
     397        margin-left: -7px;
     398        border-left-color: rgb(25,25,25);
     399        border-left-color: rgba(25,25,25,0.92);
     400}
     401
     402/* Webkit Hacks  */
     403@media screen and (-webkit-min-device-pixel-ratio:0) { 
     404        #tiptip_content {
     405                padding: 4px 8px 5px 8px;
     406                background-color: rgba(45,45,45,0.88);
     407        }
     408        #tiptip_holder.tip_bottom #tiptip_arrow_inner {
     409                border-bottom-color: rgba(45,45,45,0.88);
     410        }
     411        #tiptip_holder.tip_top #tiptip_arrow_inner {
     412                border-top-color: rgba(20,20,20,0.92);
     413        }
     414}
  • 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}
  • 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}
  • 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.