Merge branch 'develop' into ent-13414-mejorar-puntos-de-creacion-de-modulos
This commit is contained in:
commit
74636efece
|
@ -10554,6 +10554,13 @@ select {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input.buttonButton {
|
||||||
|
border: 0px;
|
||||||
|
outline: 0px;
|
||||||
|
border-radius: 8px;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
input[list],
|
input[list],
|
||||||
textarea[list],
|
textarea[list],
|
||||||
select[list] {
|
select[list] {
|
||||||
|
@ -11164,7 +11171,6 @@ button.ui-button-text-only.ui-widget.sub {
|
||||||
font-size: 16px !important;
|
font-size: 16px !important;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
box-shadow: 0px 3px 6px #c7c7c7;
|
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
|
@ -14198,6 +14204,19 @@ table#snmp_console tbody .datos_orange * {
|
||||||
color: var(--events-priority-text-orange) !important;
|
color: var(--events-priority-text-orange) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.open_search_status_color {
|
||||||
|
color: var(--text-color-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.ui-button-text-only.ui-widget.sub:hover,
|
||||||
|
#button_generate_code input.buttonButton:hover {
|
||||||
|
box-shadow: 0px 3px 6px #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button_generate_code input.buttonButton {
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
.black-and-white {
|
.black-and-white {
|
||||||
filter: saturate(0);
|
filter: saturate(0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2029,3 +2029,43 @@ th {
|
||||||
.white_table_graph.fixed_filter_bar {
|
.white_table_graph.fixed_filter_bar {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.div-import,
|
||||||
|
.div-export {
|
||||||
|
background-color: var(--secondary-color);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
img[src$="import_to.svg"],
|
||||||
|
img[src$="export_to.svg"] {
|
||||||
|
filter: brightness(0.9);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.disabled {
|
||||||
|
background-color: #4b525c !important;
|
||||||
|
cursor: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.ui-button-text-only.ui-widget.sub:hover,
|
||||||
|
#button_generate_code input.buttonButton:hover,
|
||||||
|
#registration_wizard button[type="submit"]:hover {
|
||||||
|
box-shadow: 0px 2px 5px #837e7e6b;
|
||||||
|
}
|
||||||
|
|
||||||
|
#registration_wizard button[type="submit"].submit-cancel:hover {
|
||||||
|
color: var(--text-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button_generate_code input.buttonButton,
|
||||||
|
#registration_wizard button[type="submit"]:not(.submit-cancel) {
|
||||||
|
background-color: var(--primary-color) !important;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#registration_wizard button[type="submit"] > span {
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.secondaryButton {
|
||||||
|
color: var(--text-color) !important;
|
||||||
|
}
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
div.submit_buttons_container {
|
div.submit_buttons_container {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 10px auto 0px;
|
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
width: 95%;
|
width: 95%;
|
||||||
clear: both;
|
|
||||||
height: 4em;
|
height: 4em;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.license_text {
|
.license_text {
|
||||||
|
@ -13,3 +14,7 @@ div.submit_buttons_container {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
margin: 1em auto;
|
margin: 1em auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.submit_buttons_container > div {
|
||||||
|
display: initial;
|
||||||
|
}
|
||||||
|
|
|
@ -80,26 +80,24 @@ $product_name = get_product_name(); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="submit_buttons_container">
|
<div class="submit_buttons_container">
|
||||||
<div class="left">
|
<div class="ui-dialog-buttonset mrgn_lft_15px">
|
||||||
<?php
|
<?php
|
||||||
echo html_print_submit_button(
|
echo html_print_submit_button(
|
||||||
__('Cancel'),
|
__('Cancel'),
|
||||||
'cancel_registration',
|
'cancel_registration',
|
||||||
false,
|
false,
|
||||||
'id="submit-cancel_registration" class="lato ui-widget
|
'id="submit-cancel_registration" class="submit-cancel secondaryButton ui-button ui-corner-all ui-widget"',
|
||||||
ui-state-default ui-corner-all ui-button-text-only sub upd submit-cancel"',
|
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="ui-dialog-buttonset right">
|
||||||
<?php
|
<?php
|
||||||
echo html_print_submit_button(
|
echo html_print_submit_button(
|
||||||
__('OK!'),
|
__('OK!'),
|
||||||
'register',
|
'register',
|
||||||
false,
|
false,
|
||||||
'id="submit-register" class="lato ui-widget
|
'id="submit-register" class="submit-next ui-button ui-corner-all ui-widget"',
|
||||||
ui-state-default ui-corner-all ui-button-text-only sub ok submit-next w100px"',
|
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue