Changeset 1830


Ignore:
Timestamp:
Feb 16, 2007, 10:28:50 PM (17 years ago)
Author:
vdigital
Message:

0000645: HTML Conformity (Temporary fixed)
Description 1- tags.php/tags.tpl Need to be fixed more... see FIXME in tags.tpl
when no tags are available.

2- search.php => Remove class="bouton" : Done

0000648: CSS Conformity (1) (Partly fixed)

Description
clear/theme.css + dark/theme
54 #content UL.thumbnails SPAN.wrap2:hover Propriété érronée : background-color AntiqueWhite n'est pas une valeur de color : AntiqueWhite
60 #content UL.thumbnailCategories DIV.thumbnailCategory:hover Propriété érronée : background-color AntiqueWhite n'est pas une valeur de color : AntiqueWhite
66 #content UL.thumbnailCategories DIV.thumbnailCategory:hover A Propriété érronée : background-color AntiqueWhite n'est pas une valeur de color : AntiqueWhite

wipi/theme.css et p0w0
274 .2nmore En CSS1, il était possible d'avoir un nom de classe commençant par un chiffre (".55xx") sauf s'il s'agissait d'une dimension (".55cm"). En CSS2, de tels noms sont analysés comme étant des dimensions inconnues, pour permettre l'ajout de nouvelles unités).To make ".2nmore" a valid class, CSS2 requires the first digit to be escaped (".\32nmore")

w0p0
247 Le pseudo-élément ::after ne peut apparaitre dans le contexte css2
247 #content H2 Propriété érronée : content leader(dotted) n'est pas une valeur de content : leader(dotted)

Location:
trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions_html.inc.php

    r1815 r1830  
    718718/**
    719719 * set a class to display a counter
    720  * .zero .one .2nmore
     720 * .zero .one .plural
    721721 */
    722722function set_span_class($count)
     
    724724  if ($count > 1)
    725725  {
    726     return '2nmore';
     726    return 'plural';
    727727  }
    728728  return ( $count == 0 ) ? 'zero':'one';
  • trunk/template/yoga/default-colors.css

    r1677 r1830  
    7979.infos {
    8080  text-align: left;
    81   background-color: palegreen;
     81  background-color: #98fb98; /* palegreen */
    8282  background-image: url(icon/admin/infos.png);
    8383  background-repeat: no-repeat;
    8484  background-position: top right;
    85   color: darkgreen;
     85  color: #006400; /* darkgreen */
    8686  font-weight: bold;
    8787  margin: 5px;
  • trunk/template/yoga/menubar.css

    r1778 r1830  
    113113  margin:0;
    114114  width: 100%;
    115  /* -moz-box-sizing: padding-box;*/
    116   box-sizing: border-box;
    117   -moz-box-sizing: border-box;
     115 -moz-box-sizing: padding-box; /* FIXME in a specific css file for FF */
     116  box-sizing: border-box; /* CSS3 */
    118117}
    119118
  • trunk/template/yoga/search.tpl

    r1780 r1830  
    127127</fieldset>
    128128<p>
    129   <input class="submit" type="submit" name="submit" value="{lang:submit}" class="bouton" />
    130   <input class="submit" type="reset" value="{lang:reset}" class="bouton" />
     129  <input class="submit" type="submit" name="submit" value="{lang:submit}" />
     130  <input class="submit" type="reset" value="{lang:reset}" />
    131131</p>
    132132</form>
  • trunk/template/yoga/tags.tpl

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r1119 r1830  
    1 <!-- $Id: comments.tpl 960 2005-12-03 17:33:38Z chrisaga $ -->
     1<!-- $Id$ -->
    22<div id="content">
    33
     
    1313    <li><a href="{tag.URL}" class="{tag.CLASS}" title="{tag.TITLE}">{tag.NAME}</a></li>
    1414    <!-- END tag -->
     15    <li>&nbsp;</li> <!-- FIXME W3C HTML Conformity said: No empty UL -->
    1516  </ul>
    1617
  • trunk/template/yoga/theme/clear/theme.css

    r1828 r1830  
    5454#content UL.thumbnailCategories DIV.thumbnailCategory:hover,
    5555#content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
    56   background-color: AntiqueWhite;
     56  background-color: #faebd7;
    5757  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
    5858  color: black;
  • trunk/template/yoga/theme/dark/theme.css

    r1827 r1830  
    8787#content UL.thumbnailCategories DIV.thumbnailCategory:hover,
    8888#content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
    89   background-color: AntiqueWhite;
     89  background-color: #faebd7;
    9090  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
    9191  color: black;
  • trunk/template/yoga/theme/p0w0/theme.css

    r1822 r1830  
    6767#content H2:before, .browsePath:before, .imageNumber:before,
    6868#imageHeaderBar H2:before {
    69  content: "« ";
     69 content: "__ ";
    7070 font-weight: normal;
    7171 color: #fff;
     
    7575#content H2:after, .browsePath:after, .imageNumber:after,
    7676#imageHeaderBar H2:after {
    77  content: " » ";
     77 content: " __ ";
    7878 color: #fff;
    7979 font-family: sans-serif;
     
    239239label { cursor:pointer }
    240240.zero { display: none }
    241 .one { }
    242 .2nmore { }
     241
    243242#the_page {
    244243  text-align:center;
    245244  display:block;
    246245}
    247 #content H2::after { content: leader(dotted) }
     246
    248247input[type="text"], input[type="password"], input.button,
    249248input.submit, input.reset, input.file,
  • trunk/template/yoga/theme/wipi/theme.css

    r1828 r1830  
    197197#content UL.thumbnailCategories DIV.thumbnailCategory:hover,
    198198#content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
    199   background-color: #f92;
     199  background-color: #dfe8ff;
    200200  border-color: #69c;           /* thumbnails border color when mouse cursor is over it */
    201201  color: black;
  • trunk/template/yoga/upload.tpl

    r1780 r1830  
    8585    <tr>
    8686      <td colspan="2" align="center">
    87       <input class="submit" name="submit" type="submit" value="{lang:submit}" class="bouton" />
     87      <input class="submit" name="submit" type="submit" value="{lang:submit}" />
    8888      </td>
    8989    </tr>
Note: See TracChangeset for help on using the changeset viewer.