Service
This commit is contained in:
parent
ca6d722495
commit
7958793e1a
pandora_console
|
@ -20,7 +20,7 @@ ui_require_css_file('first_task');
|
|||
<?php if ((bool) $agent_w === true) { ?>
|
||||
<div class="new_task">
|
||||
<div class="image_task">
|
||||
<?php echo html_print_image('images/first_task/icono_grande_servicios.png', true, ['title' => __('Services')]); ?>
|
||||
<?php echo html_print_image('images/item-service.svg', true, ['title' => __('Services'), 'class' => 'w120px']); ?>
|
||||
</div>
|
||||
<div class="text_task">
|
||||
<h3> <?php echo __('Create Services'); ?></h3>
|
||||
|
@ -37,7 +37,17 @@ ui_require_css_file('first_task');
|
|||
?>
|
||||
</p>
|
||||
<form action="index.php?sec=estado&sec2=enterprise/godmode/services/services.service&action=new_service" method="post">
|
||||
<input type="submit" class="button_task" value="<?php echo __('Create Services'); ?>" />
|
||||
<?php
|
||||
html_print_action_buttons(
|
||||
html_print_submit_button(
|
||||
__('Create a service'),
|
||||
'button_task',
|
||||
false,
|
||||
['icon' => 'wand'],
|
||||
true
|
||||
)
|
||||
);
|
||||
?>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
}
|
||||
|
||||
.new_task {
|
||||
margin-top: 30px;
|
||||
min-width: 600px;
|
||||
width: 100%;
|
||||
left: 20px;
|
||||
|
@ -19,10 +18,8 @@
|
|||
clear: both;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
padding-top: 1em;
|
||||
padding-bottom: 5em;
|
||||
padding: 1em 0 1em;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
.title_task {
|
||||
|
|
|
@ -9892,6 +9892,11 @@ div#err_msg_centralised {
|
|||
font-style: italic;
|
||||
}
|
||||
|
||||
.div-2-col {
|
||||
flex: 50%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.div-4-col {
|
||||
flex: 25%;
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in New Issue