Displaying 3 results from an estimated 3 matches for "80px".
Did you mean:
0px
2006 Jun 12
0
how to get link_to mouse rollover to pop up a "help" box.
I want to have a link_to (<a>) that when the mouse rolls over it (hover)
a little if possible semitranspartent "box" (maybe 80px*80px) is
displayed with some help/further information included.
Is it possible to do this?
--
Posted via http://www.ruby-forum.com/.
2010 Aug 25
2
[PATCH] Virtio support
...a/src/public/stylesheets/components.css b/src/public/stylesheets/components.css
index 2cda65d..70cda97 100644
--- a/src/public/stylesheets/components.css
+++ b/src/public/stylesheets/components.css
@@ -367,6 +367,11 @@
max-width: 150px;
}
+.vm_network_config_virtio {
+ float: left;
+ width: 80px;
+}
+
.vm_network_config_net select,
.vm_network_config_mac input,
.vm_network_config_ip input {
diff --git a/src/task-omatic/task_vm.rb b/src/task-omatic/task_vm.rb
index dd71747..cc2071f 100644
--- a/src/task-omatic/task_vm.rb
+++ b/src/task-omatic/task_vm.rb
@@ -35,7 +35,7 @@ end
def cre...
2010 Sep 21
1
[PATCH] Introduce ability to select any kind of nic model, not just default or virtio.
...etwork_config_net{
float: left;
- width: 150px;
+ width: 92px;
}
+.vm_network_config_mac{
+ float: left;
+ width: 132px;
+}
.vm_network_config_ip{
float: left;
- max-width: 150px;
+ width: 100px;
}
-.vm_network_config_virtio {
+.vm_network_config_model {
float: left;
- width: 80px;
+ width: 76px;
+}
+
+.vm_network_config_ip input{
+ width: 100px;
}
-.vm_network_config_net select,
-.vm_network_config_mac input,
-.vm_network_config_ip input {
- width: 130px;
+.vm_network_config_net select{
+ width: 90px;
}
+.vm_network_config_model select {
+ width: 74px;
+}
+.vm_ne...