Ignore:
Timestamp:
Aug 28, 2008, 3:26:26 AM (16 years ago)
Author:
rvelices
Message:
  • removed and moved (from common to admin) some CSS rules
  • upgraded jQuery and accordion to latest version (and reorganised a bit their location)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/template/yoga/default-layout.css

    r2415 r2489  
    179179}
    180180
    181 .over span{ /*CSS for enlarged image*/
     181.over SPAN{ /*CSS for enlarged image*/
    182182position: absolute;
    183183background-color: #eee;
     
    190190}
    191191
    192 .over span img{ /*CSS for enlarged image*/
     192.over SPAN IMG{ /*CSS for enlarged image*/
    193193border-width: 0;
    194194padding: 2px;
    195195}
    196196
    197 .over:hover span{ /*CSS for enlarged image on hover*/
     197.over:hover SPAN{ /*CSS for enlarged image on hover*/
    198198visibility: visible;
    199199top: 0;
    200200left: 60px; /*position where enlarged image should offset horizontally */
     201}
     202
     203
     204/* Tooltips*/
     205.tooltip {
     206        position: relative;
     207}
     208
     209.tooltip SPAN {
     210        display: none;
     211}
     212
     213.tooltip:hover {
     214        cursor: pointer;
     215        z-index: 500;
     216}
     217
     218.tooltip:hover SPAN {
     219        display: inline;
     220        position: absolute;
     221        top: 30px;
     222        left: -50px;
     223        width: 400px;
     224
     225        font-size: 11px;
     226        text-decoration: none;
     227        text-align: justify;
     228        background-color: #FFFFCC;
     229        color: #444444;
     230
     231        padding: 10px;
     232        border: 1px solid Black;
    201233}
    202234
     
    462494}
    463495
    464 BODY#thePopuphelpPage P#pageBottomActions A {
    465   border: none;
    466 }
    467496
    468497TR.tagLine {
Note: See TracChangeset for help on using the changeset viewer.