Revision 93ddb02b

b/ui/static/ie.css
13 13
}
14 14

  
15 15

  
16
div.terminated .confirm-single {
16
div.terminated .confirm-single, div.vm-building .confirm-single {
17 17
    margin-left: -120px;
18 18
}
19 19

  
......
146 146
    margin-right: -70px;
147 147
}
148 148

  
149
div.terminated .confirm_single {
149
div.terminated .confirm_single, .vm-building .confirm_single {
150 150
    margin-right: 4px !important;
151 151
}
152 152

  
......
203 203
    width: 124px;
204 204
}
205 205

  
206
div.terminated div.machine div.actions {
206
div.terminated div.machine div.actions, div.vm-building div.actions {
207 207
    width: 200px;
208 208
}
209 209

  
b/ui/templates/machines_icon.html
638 638
        else if ( server.status != 'DELETED') {
639 639
            // clone the proper template and put basic values in
640 640
            var machine = $("#machinesview-icon.standard #machine-container-template").clone().attr("id", server.id).fadeIn("slow");
641

  
641 642
            machine.find(".scrollable").scrollable({vertical: true});
642 643
            machine.find("div.name span.name").text(server.name.substring(0,50));
643 644
            machine.find("span.imagetag").text(server_image);
......
657 658
                       machine.find('.state').removeClass().addClass('state error-state');
658 659
                }
659 660
            }
661

  
660 662
            //show spinner if server is still building or rebooting
661 663
            if (server.status == 'BUILD') {
662 664
                machine.find('.spinner').show();
663 665
                machine.find('.state').removeClass().addClass('state build-state');
666
                machine.addClass('vm-building');
667
            } else {
668
                machine.removeClass('vm-building');
664 669
            }
670

  
665 671
            if (server.status == 'REBOOT') {
666 672
                machine.find('.spinner').show();
667 673
                machine.find('.state').removeClass().addClass('state rebooting-state');

Also available in: Unified diff