mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-16 22:50:10 +03:00
* F #2328: Revamp VM update/create dialog * F #2328: Revamp VM update/create dialog (cherry picked from commit 243bc11d903458d3514164ecbce28f1608e690fd)
This commit is contained in:
parent
04111f46de
commit
b772d252f4
@ -18,7 +18,7 @@
|
||||
<ul class="tabs vertical" id="template_create_hybrid_tabs" data-tabs>
|
||||
</ul>
|
||||
<div class="text-center">
|
||||
<button type="button" class="button small tabs-add" id="tf_btn_hybrid">
|
||||
<button type="button" class="button small tabs-add" id="tf_btn_hybrid" style="margin-top: 5%">
|
||||
<i class="fa fa-lg fa-plus-circle"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
@ -18,7 +18,7 @@
|
||||
<ul class="tabs vertical" id="{{linksContainerId}}" data-tabs>
|
||||
</ul>
|
||||
<div class="text-center">
|
||||
<button type="button" class="button small tabs-add" id="tf_btn_nics">
|
||||
<button type="button" class="button small tabs-add" id="tf_btn_nics" style="margin-top: 5%">
|
||||
<i class="fa fa-lg fa-plus-circle"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
@ -235,7 +235,7 @@ define(function(require) {
|
||||
|
||||
function _renameTabLinks(context) {
|
||||
$("#" + LINKS_CONTAINER_ID + " li", context).each(function(index) {
|
||||
$("a", this).html(Locale.tr("Disk") + ' ' + index + " <i class='fas fa-times-circle remove-tab'></i>");
|
||||
$("a", this).html(Locale.tr("DISK") + ' ' + index + " <i class='fas fa-times-circle remove-tab'></i>");
|
||||
})
|
||||
|
||||
if(this.listener != undefined){
|
||||
|
@ -39,12 +39,12 @@
|
||||
<ul class="tabs vertical" id="{{linksContainerId}}" data-tabs>
|
||||
</ul>
|
||||
<div class="text-center">
|
||||
<button type="button" class="button small tabs-add" id="tf_btn_disks">
|
||||
<button type="button" class="button small tabs-add" id="tf_btn_disks" style="margin-top: 5%">
|
||||
<i class="fa fa-lg fa-plus-circle"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="medium-10 columns">
|
||||
<div class="tabs-content vertical" id="{{contentsContainerId}}" data-tabs-content="{{linksContainerId}}"></div>
|
||||
<div class="tabs-content vertical disks-container" id="{{contentsContainerId}}" data-tabs-content="{{linksContainerId}}"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -300,7 +300,7 @@ define(function(require) {
|
||||
// Append the new div containing the tab and add the tab to the list
|
||||
var a = $("<li class='tabs-title'>" +
|
||||
"<a id='ar_tab" + str_ar_tab_id + "' href='#" + str_ar_tab_id + "Tab'>" +
|
||||
Locale.tr("Address Range") + " <i class='fas fa-times-circle remove-tab'></i></a></li>"
|
||||
Locale.tr("AR") + " <i class='fas fa-times-circle remove-tab'></i></a></li>"
|
||||
).appendTo($("ul#vnet_wizard_ar_tabs", context));
|
||||
|
||||
$(html_tab_content).appendTo($("#vnet_wizard_ar_tabs_content", context));
|
||||
|
@ -235,7 +235,7 @@
|
||||
<div class="medium-2 columns">
|
||||
<ul class="tabs vertical" id="vnet_wizard_ar_tabs" data-tabs></ul>
|
||||
<div class="text-center">
|
||||
<button type="button" class="button small tabs-add" id="vnet_wizard_ar_btn">
|
||||
<button type="button" class="button small tabs-add" id="vnet_wizard_ar_btn" style="margin-top: 5%">
|
||||
<i class="fas fa-lg fa-plus-circle"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
@ -160,7 +160,7 @@ table .markrow,table .markrowchecked{
|
||||
text-align: center;
|
||||
border: 3px solid #f8f8f8;
|
||||
}
|
||||
meter{
|
||||
meter {
|
||||
height: .9rem !important;
|
||||
}
|
||||
.dashboard-div-titles{
|
||||
@ -179,4 +179,20 @@ meter{
|
||||
.dashboard-fieldset{
|
||||
background-color: #f8f8f8;
|
||||
border: 1px solid #eaeaea;
|
||||
}
|
||||
|
||||
.tabs.vertical .tabs-title.is-active {
|
||||
border: .1538461538rem solid #4DBBD3;
|
||||
border-right: 0px;
|
||||
border-radius: 15px 0px 0px 15px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.tabs-content.vertical {
|
||||
border-left: .1538461538rem solid #4DBBD3;
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.tabs-content.vertical.disks-container {
|
||||
min-height: 400px;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user