Changeset 1881 for trunk/template/yoga


Ignore:
Timestamp:
Mar 8, 2007, 11:14:14 PM (17 years ago)
Author:
rub
Message:

Add tabsheet on administration pages.

Step 3: Tabsheet for configuration & history

Change css tabsheet to do like p0w0 for all themes

Location:
trunk/template/yoga
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/admin.tpl

    r1878 r1881  
    1616      <ul>
    1717        <li><a href="{U_CONFIG_GENERAL}">{lang:general}</a></li>
    18         <li><a href="{U_CONFIG_COMMENTS}">{lang:comments}</a></li>
    1918        <li><a href="{U_CONFIG_DISPLAY}">{lang:conf_default}</a></li>
    2019      </ul>
     
    6160    <dd>
    6261      <ul>
    63         <li>
    64           {lang:history}
    65           <ul>
    66             <li><a href="{U_HISTORY_STAT}">{lang:Statistics}</a></li>
    67             <li><a href="{U_HISTORY_SEARCH}">{lang:Search}</a></li>
    68           </ul>
    69         </li>
     62        <li><a href="{U_HISTORY_STAT}">{lang:history}</a></li>
    7063        <li><a href="{U_MAINTENANCE}">{lang:Maintenance}</a></li>
    7164        <li><a href="{U_ADVANCED_FEATURE}">{lang:Advanced_features}</a></li>
  • trunk/template/yoga/admin/configuration.tpl

    r1877 r1881  
    44    <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li>
    55  </ul>
    6   <h2>{lang:title_configuration}</h2>
     6  <h2>{lang:title_configuration} {TABSHEET_TITLE}</h2>
     7  {TABSHEET}
    78</div>
    89
     
    1112<!-- BEGIN general -->
    1213<fieldset id="generalConf">
    13   <legend>{lang:conf_general_title}</legend>
    14 
    1514  <ul>
    1615    <li>
     
    9291<!-- BEGIN comments -->
    9392<fieldset id="commentsConf">
    94   <legend>{lang:conf_comments_title}</legend>
    95 
    9693  <ul>
    9794    <li>
     
    136133<!-- BEGIN default -->
    137134<fieldset id="commentsConf">
    138   <legend>{lang:conf_default_title}</legend>
    139 
    140135  <ul>
    141136    <li>
  • trunk/template/yoga/admin/default-layout.css

    r1874 r1881  
    161161  text-decoration : none;
    162162  background: transparent;
     163  border-bottom: 1px solid #fff;
    163164}
    164165
     
    168169  margin: 0 6px;
    169170  color: white;
    170   font-size: 120%;
     171  font-size: 110%;
    171172  font-weight: bold;
    172173  padding: 4px 8px;
    173174  border: 1px solid #fff;
     175  border-radius: 6px 6px 0px 0px;       /* round corners with CSS3 compliant browsers */
     176  -moz-border-radius: 6px 6px 0px 0px;  /* round corners with CSS3 compliant browsers */
     177  padding: 5px 2em 2px 2em;
    174178}
    175179
  • trunk/template/yoga/admin/history.tpl

    r1844 r1881  
    1111    </li>
    1212  </ul>
    13   <h2>{lang:History}</h2>
     13  <h2>{lang:History} {TABSHEET_TITLE}</h2>
     14  {TABSHEET}
    1415</div>
    1516
  • trunk/template/yoga/admin/stats.tpl

    r1729 r1881  
    11<!-- $Id$ -->
    2 <h2>{lang:title_history}</h2>
     2<div class="titrePage">
     3  <ul class="categoryActions">
     4    <li>
     5      <a
     6        href="{U_HELP}"
     7        onclick="popuphelp(this.href); return false;"
     8        title="{lang:Help}"
     9      >
     10        <img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)">
     11      </a>
     12    </li>
     13  </ul>
     14  <h2>{lang:History} {TABSHEET_TITLE}</h2>
     15  {TABSHEET}
     16</div>
    317
    418<h3>{L_STAT_TITLE}</h3>
  • trunk/template/yoga/theme/p0w0/theme.css

    r1878 r1881  
    278278* { outline: none; }
    279279
    280 .tabsheet { border-bottom: 1px solid #369; }
     280.tabsheet {
     281  border-bottom: 1px solid #369;
     282}
     283
    281284.tabsheet li {
    282285  background: #369;
    283286  color: white;
    284287  border: 1px solid #fff;
    285   border-radius: 6px 6px 0px 0px;       /* round corners with CSS3 compliant browsers */
    286   -moz-border-radius: 6px 6px 0px 0px;  /* round corners with CSS3 compliant browsers */
    287   padding: 5px 2em 2px 2em;
    288288}
    289289
Note: See TracChangeset for help on using the changeset viewer.