Changeset 63cbec6


Ignore:
Timestamp:
05/27/11 01:49:27 (2 years ago)
Author:
Tomas Edwardsson <tommi@…>
Branches:
master
Children:
8966ff6
Parents:
02121aa
git-author:
Tomas Edwardsson <tommi@…> (05/27/11 01:49:27)
git-committer:
Tomas Edwardsson <tommi@…> (05/27/11 01:49:27)
Message:

Addhost, template look added.

Location:
adagios
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • adagios/media/css/style.css

    re468049 r63cbec6  
    11body { 
    22        font-face: helvetica, georgia, courier, arial; 
     3        background: #ccc; 
     4        margin: 0; 
     5        padding: 0; 
    36} 
    47 
     
    2023 
    2124#sidebar { 
    22         width:20%; 
     25        margin-top: 12px; 
     26        margin-left: 12px; 
     27        width:140px; 
    2328} 
    2429 
    2530#content { 
    26         width:65%; 
     31        padding-top: 12px; 
     32        width:800px; 
    2733} 
    2834 
     
    4046 
    4147#logo { 
    42         background: url("/static/adagios-logo.png") no-repeat scroll 0 0 transparent; 
     48        background: url("/static/adagios-logo.png") no-repeat scroll 10px 10px #fff; 
    4349        display: block; 
    44         height: 62px; 
     50        height: 72px; 
     51        padding: 0; 
     52        margin: 0; 
     53        border-bottom: 1px solid #000; 
    4554        } 
    4655 
     
    107116 
    108117 
     118fieldset#subtemplates { 
     119        display: none; 
     120} 
  • adagios/media/css/tabs-flowplayer-v2.css

    re468049 r63cbec6  
    2929        display:block; 
    3030        height: 31px;    
    31         width: 129px;    
     31        width: 189px;    
    3232        padding:0px; 
    3333        margin:0px; 
     
    3636        font-weight: bold; 
    3737        color:#000; 
    38         font-size:12px; 
     38        font-size:14px; 
    3939        line-height:33px; 
    4040        text-align:center; 
  • adagios/templates/configurator/addhost.html

    re468049 r63cbec6  
    44{% block title %}Characters{% endblock %} 
    55 
    6 {% block sidebar %} {% endblock %} 
     6{% block sidebar %}arg {% endblock %} 
    77 
    88{% block javascript %} 
     
    104104                        <fieldset id="templateinfo"> 
    105105                          <legend>Select Relevant Templates</legend> 
    106                                                 <p id="templates"> 
    107                                                         <input id="windows" type="CHECKBOX" name="windows" /> <label for="windows">Microsoft Windows</label> 
    108                                                 </p> 
    109                                                 <p> 
    110                                                         <input id="windows" type="CHECKBOX" name="windows" /> <label for="windows">Microsoft Windows</label> 
    111                                                 </p> 
    112  
     106                                                 
     107                                                <p> 
     108                                                    <select id="os"> 
     109                                                      <option value="none">-- select --</option> 
     110                                                      <option value="windows">Microsoft Windows</option> 
     111                                                      <option value="linux">Linux</option> 
     112                                                      <option value="switch">Switch</option> 
     113                                                    </select> 
     114                                                </p> 
     115                                                <p> 
     116                                                  <fieldset id="subtemplates"> 
     117                                                    <legend>Templates</legend> 
     118                                                        <p><input type="checkbox" class="left" /> <label>Microsoft Exchange</p> 
     119                                                        <p style="clear: both"><input type="checkbox" class="left" /> <label>Microsoft SQL Server</p> 
     120                                                  </fieldset> 
     121                                                </p> 
    113122                        </fieldset> 
    114123                </div> 
     
    162171                                        } 
    163172                                }); 
     173                                 
     174                                 
     175                                $('#os').change(function() { 
     176                                        $('#subtemplates').show(); 
     177                                }); 
     178                                 
    164179                                $('#hostname').blur(function(e) { 
    165180                                        if ($(this).val() == "") { 
Note: See TracChangeset for help on using the changeset viewer.