Changeset 1772


Ignore:
Timestamp:
Jan 31, 2007, 7:25:42 AM (17 years ago)
Author:
vdigital
Message:

Minor changes:

  • Filter Icon on Rub request is floated right except on my request for wipi. template/yoga/menubar.css template/yoga/theme/wipi/theme.css
  • Font-family is revised on Rub advice (he doesn't have Bitstream Vera Sans as many people). template/yoga/default-layout.css
  • Plugin Admin Advice has been reviewed to be W3C compliant. plugins/admin_advices/admin_advices.tpl plugins/admin_advices/default-layout.css
Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/admin_advices/admin_advices.tpl

    r1724 r1772  
    1 <!-- $Id$ -->
    2 
    31<div class="content">
    42  <h2>{lang:An_advice_about} {ADVICE_ABOUT}</h2>
    53    <h3>{ADVICE_TEXT}</h3>
    6     <table>
     4    <table summary="Admin advices summary">
    75    <tr><td style="text-align: left; width: 50%;">
    86    <!-- BEGIN More -->
     
    1210    </td><td style="text-align: right; width: 20%;">
    1311    <!-- BEGIN thumbnail -->
    14     <a href="{thumbnail.U_MODIFY}" alt="{lang:link_info_image}">
     12    <a href="{thumbnail.U_MODIFY}" title="{lang:link_info_image}">
    1513    <img class="thumbnail" src="{thumbnail.IMAGE}"
    1614               alt="{thumbnail.IMAGE_ALT}" title="{thumbnail.IMAGE_TITLE}"></a>
  • trunk/plugins/admin_advices/default-layout.css

    r1724 r1772  
    1 /* $Id$ */
    21.content {
    32  list-style-type:none;
  • trunk/plugins/admin_advices/en_UK.iso-8859-1/lang.adv.php

    r1724 r1772  
    44// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    55// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
    6 // +-----------------------------------------------------------------------+
    7 // | branch        : BSF (Best So Far)
    8 // | file          : $URL$
    9 // | last update   : $Date: 2006-12-21 22:38:20 +0100 (jeu., 4 jan. 2007) $
    10 // | last modifier : $Author: Vincent $
    11 // | revision      : $Revision: 1677 $
    12 // +-----------------------------------------------------------------------+
    13 // | This program is free software; you can redistribute it and/or modify  |
    14 // | it under the terms of the GNU General Public License as published by  |
    15 // | the Free Software Foundation                                          |
    16 // |                                                                       |
    17 // | This program is distributed in the hope that it will be useful, but   |
    18 // | WITHOUT ANY WARRANTY; without even the implied warranty of            |
    19 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
    20 // | General Public License for more details.                              |
    21 // |                                                                       |
    22 // | You should have received a copy of the GNU General Public License     |
    23 // | along with this program; if not, write to the Free Software           |
    24 // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
    25 // | USA.                                                                  |
    266// +-----------------------------------------------------------------------+
    277//$lang_info['language_name'] = 'English';
  • trunk/plugins/admin_advices/fr_FR.iso-8859-1/lang.adv.php

    r1724 r1772  
    44// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    55// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
    6 // +-----------------------------------------------------------------------+
    7 // | branch        : BSF (Best So Far)
    8 // | file          : $URL$
    9 // | last update   : $Date: 2006-12-21 22:38:20 +0100 (jeu., 4 jan. 2007) $
    10 // | last modifier : $Author: Vincent $
    11 // | revision      : $Revision: 1677 $
    12 // +-----------------------------------------------------------------------+
    13 // | This program is free software; you can redistribute it and/or modify  |
    14 // | it under the terms of the GNU General Public License as published by  |
    15 // | the Free Software Foundation                                          |
    16 // |                                                                       |
    17 // | This program is distributed in the hope that it will be useful, but   |
    18 // | WITHOUT ANY WARRANTY; without even the implied warranty of            |
    19 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
    20 // | General Public License for more details.                              |
    21 // |                                                                       |
    22 // | You should have received a copy of the GNU General Public License     |
    23 // | along with this program; if not, write to the Free Software           |
    24 // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
    25 // | USA.                                                                  |
    266// +-----------------------------------------------------------------------+
    277//$lang_info['language_name'] = 'Français';
  • trunk/plugins/admin_advices/main.inc.php

    r1749 r1772  
    55Description: Give you an advice on the administration page.
    66*/
    7 // +-----------------------------------------------------------------------+
    8 // | PhpWebGallery - a PHP based picture gallery                           |
    9 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
    10 // +-----------------------------------------------------------------------+
    11 // | branch        : BSF (Best So Far)
    12 // | file          : $URL$
    13 // | last update   : $Date$
    14 // | last modifier : $Author$
    15 // | revision      : $Rev$
    16 // +-----------------------------------------------------------------------+
    17 // | This program is free software; you can redistribute it and/or modify  |
    18 // | it under the terms of the GNU General Public License as published by  |
    19 // | the Free Software Foundation                                          |
    20 // |                                                                       |
    21 // | This program is distributed in the hope that it will be useful, but   |
    22 // | WITHOUT ANY WARRANTY; without even the implied warranty of            |
    23 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
    24 // | General Public License for more details.                              |
    25 // |                                                                       |
    26 // | You should have received a copy of the GNU General Public License     |
    27 // | along with this program; if not, write to the Free Software           |
    28 // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
    29 // | USA.                                                                  |
    30 // +-----------------------------------------------------------------------+
    317
    328add_event_handler('loc_end_page_header', 'set_admin_advice_add_css' );
  • trunk/template/yoga/default-layout.css

    r1764 r1772  
    22@import "admin/default-layout.css";
    33BODY {
    4     margin: 5px;
    5     padding: 0;
    6     font-size: 0.8em;
    7     font-family: "Bitstream Vera Sans", Helvetica, Arial, sans-serif;
    8     text-align: center; /* be nice to IE5 */
     4  margin: 5px;
     5  padding: 0;
     6  font-size: 0.8em;
     7  font-family: "Lucida Sans Unicode", Helvetica, Verdana, "Bitstream Vera Sans";
     8  text-align: center; /* be nice to IE5 */
    99}
    1010
  • trunk/template/yoga/menubar.css

    r1771 r1772  
    2020  list-style: none;
    2121  text-align: center;
    22   float: left;
     22  float: right;
    2323}
    2424
  • trunk/template/yoga/theme/wipi/theme.css

    r1771 r1772  
    3535 content: " _/__";
    3636 color: #f92;
     37}
     38#menubar .button {
     39  margin: 0 2px 0px 8px;
     40  width: auto;
     41  padding: 0;
     42  text-indent: 0;
     43  list-style: none;
     44  text-align: center;
     45  float: left;
    3746}
    3847#theAdminPage #menubar DT:before,
Note: See TracChangeset for help on using the changeset viewer.