Displaying 2 results from an estimated 2 matches for "vm_resources_section_link".
2009 Jun 19
1
[PATCH server] add collapsable sections to vm form
...gt;
- <div class="form_heading">Resources</div>
- <div class="clear_row"></div>
- <div class="clear_row"></div>
+ <div class="form_heading">
+ <%= link_to "", "#", :id => "vm_resources_section_link" %>
+ </div>
+ <div id="vm_resources_config">
<div style="float:left;width:150px;" >
<%= text_field_with_label "CPUs:", "vm", "num_vcpus_allocated", {:style=>"width:100px; margin-bottom:2px;"}...
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...h: 100px;
+}
+
+.vm_network_config_remove {
+ float: left;
+ padding-top: 5px;
+ color: #0033CC;
+}
+.vm_network_config_remove:hover {
+ cursor: pointer;
+}
+
+#vm_network_config_add {
+ color: #0033CC;
+}
+#vm_network_config_add:hover {
+ cursor: pointer;
+}
+
#vm_general_section_link img, #vm_resources_section_link img, #vm_storage_section_link img, #vm_network_section_link img{
float: left;
padding-top: 2px;
diff --git a/src/task-omatic/task_vm.rb b/src/task-omatic/task_vm.rb
index a448d30..dd71747 100644
--- a/src/task-omatic/task_vm.rb
+++ b/src/task-omatic/task_vm.rb
@@ -35,7 +35,7 @@ end
def c...