Revision f21051c8

b/snf-cyclades-app/synnefo/ui/static/snf/css/main.css
6415 6415
}
6416 6416

  
6417 6417
.create-vm .create-step-cont .list-cont ul li.flavor-disktype .value {
6418
    width: 45px;
6418
    width: 65px;
6419 6419
}
6420 6420

  
6421 6421
.create-vm .create-step-cont .list-cont ul li.image-description .value,
......
6426 6426
    width: auto;
6427 6427
}
6428 6428

  
6429
.create-vm .create-step-cont .list-cont ul li.image-name .value {
6430
  width: 120px;
6431
  text-indent: 0;
6432
  margin-left: 0;
6433
}
6434

  
6429 6435
.create-vm .create-step-cont .list-cont ul li {
6430 6436
    padding:0;
6431 6437
    margin:0;
b/snf-cyclades-app/synnefo/ui/static/snf/js/ui/web/ui_create_view.js
1507 1507
            }
1508 1508
            
1509 1509
            set_detail("description", image.get_description());
1510
            set_detail("name");
1510
            set_detail("name", util.truncate(image.get("name"), 30));
1511 1511
            set_detail("os", _(image.get_os()).capitalize());
1512 1512
            set_detail("gui", image.get_gui());
1513 1513
            set_detail("size", _.escape(image.get_readable_size()));
......
1548 1548

  
1549 1549
            if (!params.image) { return }
1550 1550

  
1551
            this.name.text(params.name);
1551
            this.name.text(util.truncate(params.name, 50));
1552 1552

  
1553 1553
            this.confirm.find("li.image .value").text(params.flavor.get("image"));
1554 1554
            this.confirm.find("li.cpu .value").text(params.flavor.get("cpu") + "x");

Also available in: Unified diff