fixed styles
This commit is contained in:
parent
211f29c0f9
commit
3f09fd16a7
|
@ -55,7 +55,7 @@ $iconData[] = html_print_select(
|
|||
$iconData[] = html_print_div(
|
||||
[
|
||||
'id' => 'icon_image',
|
||||
'class' => 'inverse_filter main_menu_icon',
|
||||
'class' => 'invert_filter main_menu_icon',
|
||||
'style' => 'margin-left: 10px',
|
||||
'content' => ui_print_os_icon($idOS, false, true),
|
||||
],
|
||||
|
|
|
@ -133,7 +133,7 @@ foreach ($osList as $os) {
|
|||
$data[] = html_print_anchor(
|
||||
[
|
||||
'href' => $hrefDelete,
|
||||
'class' => 'inverse_filter main_menu_icon',
|
||||
'class' => 'invert_filter main_menu_icon',
|
||||
'content' => html_print_image('images/delete.svg', true),
|
||||
],
|
||||
true
|
||||
|
|
|
@ -121,7 +121,10 @@ class TipsWindow
|
|||
}
|
||||
|
||||
ui_require_css_file('tips_window');
|
||||
if ($config['style'] === 'pandora_black' && is_metaconsole() === false) {
|
||||
ui_require_css_file('pandora_black');
|
||||
}
|
||||
|
||||
ui_require_css_file('jquery.bxslider');
|
||||
ui_require_javascript_file('tipsWindow');
|
||||
ui_require_javascript_file('jquery.bxslider.min');
|
||||
|
|
|
@ -1423,7 +1423,7 @@ div#menu_container {
|
|||
div#menu {
|
||||
width: 45px;
|
||||
float: left;
|
||||
z-index: 2;
|
||||
z-index: 3;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
|
@ -1438,7 +1438,7 @@ div#head {
|
|||
min-width: 882px;
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
z-index: 2;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.fixed_header {
|
||||
|
@ -1795,7 +1795,7 @@ div.title_line {
|
|||
#menu_tab_frame_view_bc {
|
||||
position: sticky;
|
||||
top: 61px;
|
||||
z-index: 1;
|
||||
z-index: 2;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
|
|
|
@ -236,7 +236,8 @@
|
|||
.table_action_buttons > a,
|
||||
.table_action_buttons > img,
|
||||
.table_action_buttons > button,
|
||||
.table_action_buttons > form {
|
||||
.table_action_buttons > form,
|
||||
.table_action_buttons > div {
|
||||
visibility: hidden;
|
||||
}
|
||||
.info_table > tbody > tr:hover {
|
||||
|
@ -248,7 +249,8 @@
|
|||
.info_table > tbody > tr:hover .table_action_buttons > a,
|
||||
.info_table > tbody > tr:hover .table_action_buttons > img,
|
||||
.info_table > tbody > tr:hover .table_action_buttons > button,
|
||||
.info_table > tbody > tr:hover .table_action_buttons > form {
|
||||
.info_table > tbody > tr:hover .table_action_buttons > form,
|
||||
.info_table > tbody > tr:hover .table_action_buttons > div {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
|
@ -460,9 +462,6 @@ a.pandora_pagination.current:hover {
|
|||
.table_action_buttons input[type="image"],
|
||||
.action_button_img {
|
||||
border-radius: 4px;
|
||||
/*border: 1px solid #dcdcdc !important;*/
|
||||
padding: 1px !important;
|
||||
/*box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);*/
|
||||
}
|
||||
|
||||
/* This class is for only one icon to be a button type. */
|
||||
|
|
|
@ -1522,8 +1522,6 @@ require 'include/php_to_js_values.php';
|
|||
<script type="text/javascript" language="javascript">
|
||||
// Handle the scroll.
|
||||
$(document).ready(scrollFunction());
|
||||
// When there are less than 5 rows, all rows must be white
|
||||
var theme = "<?php echo $config['style']; ?>";
|
||||
|
||||
// When the user scrolls down 400px from the top of the document, show the
|
||||
// button.
|
||||
|
|
|
@ -1759,7 +1759,7 @@ if (empty($result) === false) {
|
|||
true,
|
||||
[
|
||||
'title' => $row['tags'],
|
||||
'class' => 'inverse_filter main_menu_icon',
|
||||
'class' => 'invert_filter main_menu_icon',
|
||||
]
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue