Merge branch 'ent-9555-revision-visual-ui-de-la-vista-movil-2' into 'develop'
Ent 9555 revision visual ui de la vista movil 2 See merge request artica/pandorafms!5779
This commit is contained in:
commit
da0aa3c7e7
|
@ -2696,7 +2696,7 @@ li.ui-block-e {
|
|||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
@media (max-width: 35em) {
|
||||
@media (max-width: 480px) {
|
||||
.ui-responsive > .ui-block-a,
|
||||
.ui-responsive > .ui-block-b,
|
||||
.ui-responsive > .ui-block-c,
|
||||
|
@ -4387,7 +4387,7 @@ html .ui-popup .ui-field-contain > label + .ui-flipswitch {
|
|||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 35em), print {
|
||||
@media screen and (min-width: 480px), print {
|
||||
.ui-table-reflow.ui-responsive td,
|
||||
.ui-table-reflow.ui-responsive th,
|
||||
.ui-table-reflow.ui-responsive tbody th,
|
||||
|
@ -4401,7 +4401,7 @@ html .ui-popup .ui-field-contain > label + .ui-flipswitch {
|
|||
display: none;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 35em) {
|
||||
@media screen and (max-width: 480px) {
|
||||
.ui-table-reflow.ui-responsive td,
|
||||
.ui-table-reflow.ui-responsive th {
|
||||
width: 100%;
|
||||
|
|
|
@ -3272,4 +3272,8 @@ table#list_servers tbody td span.data a {
|
|||
input[name="login_btn"] {
|
||||
line-height: 38px;
|
||||
}
|
||||
|
||||
fieldset.databox.tactical_set table#table1 td img[src$="modules@svg.svg"] {
|
||||
margin-left: 10px !important;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -231,7 +231,7 @@ class Services
|
|||
$name .= '<strong class="no-data">'.__('Nonexistent. This element should be deleted').'</strong>';
|
||||
} else {
|
||||
$url = ui_get_full_url('mobile/index.php?page=agent&id='.$item->agent()->id_agente());
|
||||
$name = '<a target="_blank" href="'.$url.'">';
|
||||
$name = '<a href="'.$url.'">';
|
||||
if (((bool) $item->agent()->disabled()) === true) {
|
||||
$disabled_element = true;
|
||||
if (is_metaconsole() === true) {
|
||||
|
@ -296,7 +296,8 @@ class Services
|
|||
);
|
||||
}
|
||||
|
||||
$name = '<a target="_blank" href="'.$url.'">';
|
||||
// $name = '<a target="_blank" href="'.$url.'">';
|
||||
$name = '';
|
||||
if (((bool) $item->service()->disabled()) === true) {
|
||||
$disabled_element = true;
|
||||
if (is_metaconsole() === true) {
|
||||
|
@ -313,8 +314,7 @@ class Services
|
|||
}
|
||||
|
||||
$name .= $item->service()->name();
|
||||
$name .= '</a>';
|
||||
|
||||
// $name .= '</a>';
|
||||
if (((bool) $item->service()->disabled()) === true) {
|
||||
$name .= ui_print_help_tip(
|
||||
__('This element does not affect service weigth because is disabled.'),
|
||||
|
@ -338,7 +338,7 @@ class Services
|
|||
$name .= '<strong class="no-data">'.__('Nonexistent. This element should be deleted').'</strong>';
|
||||
} else {
|
||||
$url = ui_get_full_url('mobile/index.php?page=agent&id='.$item->agent()->id_agente());
|
||||
$name = '<a target="_blank" href="'.$url.'">';
|
||||
$name = '<a href="'.$url.'">';
|
||||
|
||||
if (((bool) $item->module()->disabled()) === true) {
|
||||
$disabled_element = true;
|
||||
|
|
Loading…
Reference in New Issue