Changeset 225 for server


Ignore:
Timestamp:
12/29/10 15:22:09 (13 years ago)
Author:
grenoya
Message:
  • chat page look improvement
  • little correction on welcome text
  • begining of css cleaning
Location:
server/trunk/web/root
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • server/trunk/web/root/static/sophie.css

    r211 r225  
    11/* $Id$ */ 
    2 /* Colored links */ 
     2/* global look */ 
    33a:link { 
    44  color: #573B1D; 
     
    88  color: #F7A800; 
    99}  
     10 
     11/* header look */ 
     12div#sophie_header { 
     13  border: none; 
     14  background-color: #74D100; 
     15} 
     16 
     17#sophie_header a:visited { 
     18  color: #F7A800; 
     19} 
     20 
     21span#sophie_login { 
     22  float: right; 
     23}  
     24 
     25p#sophie_sitename { 
     26    font-size: 1.4em; 
     27    padding-left: 1em; 
     28} 
     29 
     30div#sophie_header_menu { 
     31  float: left; 
     32  padding: 0.5em; 
     33} 
     34 
     35#sophie_site_path { 
     36  font-size: 0.9em; 
     37  padding-left: 0.2em; 
     38  float: left; 
     39} 
     40 
     41div#sophie_header_search { 
     42  float: right; 
     43} 
    1044 
    1145/* White boxes around icones in the footer */ 
     
    1347  color: #FFFFFF; 
    1448  vertical-align: middle; 
    15 } 
    16  
    17 p#sitename { 
    18     font-size: 1.4em; 
    19     padding-left: 1em; 
    2049} 
    2150 
     
    2958.flat_menu { 
    3059    padding-left: 0em; 
    31 } 
    32  
    33 #sophie_site_path { 
    34     font-size: 0.9em; 
    35     padding-left: 0.2em; 
    3660} 
    3761 
     
    6488} 
    6589 
    66 div#sophie_header { 
    67     border: none; 
    68     background-color: #74D100; 
    69 } 
    70  
    71 #sophie_header a:visited { 
    72   color: #F7A800; 
    73 } 
    74  
    7590#sophie_rpms_menu { 
    7691    margin-left: 1em; 
     
    96111} 
    97112 
     113div#sophie_chat { 
     114    float: left; 
     115    width: 35%; 
     116    padding-top: 1em; 
     117    padding-left: 0.2em; 
     118} 
     119 
    98120.result_pager { 
    99121    text-align: center; 
     
    101123 
    102124.result_pager img { 
     125    color: #FFFFFF; 
    103126    vertical-align: middle; 
    104127} 
     
    199222div#sophie_bot_reply { 
    200223    padding: 1em; 
    201     border: solid; 
     224    margin: 0.2em; 
     225    border: solid #573B1D; 
     226    clear: both; 
     227} 
     228 
     229div#sophie_bot_help { 
     230    padding: 1em; 
     231    float: left; 
     232    width: 50%; 
     233} 
     234 
     235div#distribselect { 
     236    padding-bottom: 0.2em; 
    202237} 
    203238 
  • server/trunk/web/root/templates/html/chat/index.html

    r189 r225  
    11<!-- $Id$ --> 
    22 
    3 <div style="float: left; width: 35%"> 
     3<div id="sophie_chat"> 
    44    <form id="botform" action="[% c.uri_for('/chat') %]"> 
    55            <div id="distribselect"> 
     
    1818    </form> 
    1919</div> 
    20 <div id="sophie_bot_help" style="float: left; width: 50%"> 
     20<div id="sophie_bot_help"> 
    2121    <p>This page simulate the Bot behavior you may meet on IRC.</p> 
    2222</div> 
    2323 
    24 <div id="sophie_bot_reply" style="clear: both"> 
     24<div id="sophie_bot_reply"> 
    2525    [% INCLUDE 'chat/index.tt' %] 
    2626</div> 
  • server/trunk/web/root/templates/html/index.tt

    r203 r225  
    1818c.uri_for('/help') %]">the help page</a>.</p> 
    1919 
    20 <p>Send bug bug report, request and comment to <b>nanardon at nanardon dot zarb dot 
     20<p>Send bug report, request and comment to <b>nanardon at nanardon dot zarb dot 
    2121org</b>.</p> 
    2222 
  • server/trunk/web/root/templates/html/search/simple_search.tt

    r169 r225  
    11<!-- $Id$ --> 
    2 <div id="sophie_search"> 
     2<div id="sophie_header_search"> 
    33    <form action="[% c.uri_for('/search/results') %]"> 
    44        <input type="text" name="search" value="[% c.req.param('search') %]"> 
  • server/trunk/web/root/templates/includes/header.tt

    r221 r225  
    2222    <img src="[% c.uri_for('/static', 'sophie.png') -%]" alt="Sophie" style="float:left"> 
    2323    </a> 
    24     <!-- No yet display: 
    25     <span id="header_login" style="float: right"> 
     24    <!-- Not yet displayed: 
     25    <span id="sophie_login"> 
    2626        [%# INCLUDE 'login/invit_login.tt' %] 
    2727    </span> 
    2828    --> 
    29     <div style="float:left; padding: 0.5em;"> 
    30         <p id="sitename">Sophie</p> 
    31         <ul id="sophie_menu" class="flat_menu"> 
     29    <div id="sophie_header_menu"> 
     30        <p id="sophie_sitename">Sophie</p> 
     31        <ul class="flat_menu"> 
    3232        <li><a href="[% c.uri_for('/search') %]">Search</a></li> 
    3333        <li><a href="[% c.uri_for('/distrib') %]">Distribution</a></li> 
     
    3939    </div> 
    4040    <div style="clear:both"></div> 
    41     <div style="float: left" id="sophie_site_path"> 
     41    <div id="sophie_site_path"> 
    4242        [% FOREACH p = sitepath %] 
    4343        <a href="[% p.path %]">[% p.name | html %]</a> 
     
    4545        [% END %] 
    4646    </div> 
    47     <div style="float: right"> 
    48         [% INCLUDE 'search/simple_search.tt' %] 
    49     </div> 
     47    [% INCLUDE 'search/simple_search.tt' %] 
    5048    <div style="clear:both"></div> 
    5149    </div> 
Note: See TracChangeset for help on using the changeset viewer.