Changeset 63cbec6
- Timestamp:
- 05/27/11 01:49:27 (2 years ago)
- 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)
- Location:
- adagios
- Files:
-
- 4 edited
-
media/blue_panes.jpg (modified) (previous)
-
media/css/style.css (modified) (4 diffs)
-
media/css/tabs-flowplayer-v2.css (modified) (2 diffs)
-
templates/configurator/addhost.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
adagios/media/css/style.css
re468049 r63cbec6 1 1 body { 2 2 font-face: helvetica, georgia, courier, arial; 3 background: #ccc; 4 margin: 0; 5 padding: 0; 3 6 } 4 7 … … 20 23 21 24 #sidebar { 22 width:20%; 25 margin-top: 12px; 26 margin-left: 12px; 27 width:140px; 23 28 } 24 29 25 30 #content { 26 width:65%; 31 padding-top: 12px; 32 width:800px; 27 33 } 28 34 … … 40 46 41 47 #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; 43 49 display: block; 44 height: 62px; 50 height: 72px; 51 padding: 0; 52 margin: 0; 53 border-bottom: 1px solid #000; 45 54 } 46 55 … … 107 116 108 117 118 fieldset#subtemplates { 119 display: none; 120 } -
adagios/media/css/tabs-flowplayer-v2.css
re468049 r63cbec6 29 29 display:block; 30 30 height: 31px; 31 width: 1 29px;31 width: 189px; 32 32 padding:0px; 33 33 margin:0px; … … 36 36 font-weight: bold; 37 37 color:#000; 38 font-size:1 2px;38 font-size:14px; 39 39 line-height:33px; 40 40 text-align:center; -
adagios/templates/configurator/addhost.html
re468049 r63cbec6 4 4 {% block title %}Characters{% endblock %} 5 5 6 {% block sidebar %} {% endblock %}6 {% block sidebar %}arg {% endblock %} 7 7 8 8 {% block javascript %} … … 104 104 <fieldset id="templateinfo"> 105 105 <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> 113 122 </fieldset> 114 123 </div> … … 162 171 } 163 172 }); 173 174 175 $('#os').change(function() { 176 $('#subtemplates').show(); 177 }); 178 164 179 $('#hostname').blur(function(e) { 165 180 if ($(this).val() == "") {
Note: See TracChangeset
for help on using the changeset viewer.
