Changeset 13167


Ignore:
Timestamp:
Feb 14, 2012, 10:38:41 PM (12 years ago)
Author:
rvelices
Message:
  • added 2 missing embellish_url
  • fix css (admin bakground not existing; public IE image border)
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes/clear/theme.css

    r13078 r13167  
    1717/* text color */
    1818
    19 body, h3, dt, h2, .throw, .content, label , LEGEND  { 
     19body, h3, dt, h2, .throw, .content, label , LEGEND  {
    2020        color:#777;
    2121}
     
    130130.content .navigationBar {color:#999;}
    131131ul.actions, .content form#waiting  {text-align:center;}
    132 .header_msgs { background:transparent url(images/header_msgs-bg.gif) repeat scroll right top;
    133 border:0; color:#ccc; font-size:24px; height:30px; margin:0; padding:10px 0 0;
    134 text-align:center; width:100%; }
     132
     133.header_msgs {
     134        border:0;
     135        color:#ccc;
     136        font-size:24px;
     137        height:30px;
     138        margin:0; padding:10px 0 0;
     139        text-align:center; width:100%;
     140}
    135141
    136142/* tabsheets are often used in admin  pages => No specific css files */
  • trunk/include/template.class.php

    r13021 r13167  
    454454      foreach( $css as $file_ver )
    455455      {
    456         $href = get_root_url() . $file_ver[0];
     456        $href = embellish_url(get_root_url().$file_ver[0]);
    457457        if ($file_ver[1] !== false)
    458458          $href .= '?v' . ($file_ver[1] ? $file_ver[1] : PHPWG_VERSION);
     
    684684    else
    685685    {
    686       $ret = get_root_url().$script->path;
     686      $ret = embellish_url(get_root_url().$script->path);
    687687      if ($script->version!==false)
    688688      {
  • trunk/themes/default/theme.css

    r13115 r13167  
    5353        font-size: 80%;
    5454        font-style: italic;
     55}
     56
     57#mbCategories IMG {
     58        vertical-align: bottom; /*otherwise line height changes*/
    5559}
    5660
     
    428432        font-family: Arial,Helvetica,sans-serif;
    429433        min-width: 60em;  /* ~ 3* #menubar width; width of the page before getting a scrollbar; IE6 doesn't get that*/
     434}
     435
     436IMG {
     437        border: 0; /*IE<=9 adds border for linked images*/
    430438}
    431439
Note: See TracChangeset for help on using the changeset viewer.