10222 Fix image About and black css About
This commit is contained in:
parent
0fcde34980
commit
8d7671f35f
|
@ -811,6 +811,27 @@ if (is_ajax()) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$image_about = ui_get_full_url('/images/custom_logo/logo-default-pandorafms.png', false, false, false);
|
||||||
|
if (enterprise_installed() === false) {
|
||||||
|
if ($config['style'] === 'pandora_black') {
|
||||||
|
$image_about = 'images/custom_logo/'.HEADER_LOGO_BLACK_CLASSIC;
|
||||||
|
} else if ($config['style'] === 'pandora') {
|
||||||
|
$image_about = 'images/custom_logo/'.HEADER_LOGO_DEFAULT_CLASSIC;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ($config['style'] === 'pandora_black' && $config['custom_logo'] === HEADER_LOGO_DEFAULT_CLASSIC) {
|
||||||
|
$config['custom_logo'] = HEADER_LOGO_BLACK_CLASSIC;
|
||||||
|
} else if ($config['style'] === 'pandora' && $config['custom_logo'] === HEADER_LOGO_BLACK_CLASSIC) {
|
||||||
|
$config['custom_logo'] = HEADER_LOGO_DEFAULT_CLASSIC;
|
||||||
|
}
|
||||||
|
|
||||||
|
$image_about = 'images/custom_logo/'.$config['custom_logo'];
|
||||||
|
|
||||||
|
if (file_exists(ENTERPRISE_DIR.'/'.$image_about) === true) {
|
||||||
|
$image_about = ENTERPRISE_DIR.'/'.$image_about;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$dialog = '
|
$dialog = '
|
||||||
<div id="about-tabs" class="invisible overflow-hidden">
|
<div id="about-tabs" class="invisible overflow-hidden">
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -827,7 +848,7 @@ if (is_ajax()) {
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th style="width: 40%;">
|
<th style="width: 40%;">
|
||||||
<img src="'.ui_get_full_url('/images/custom_logo/'.$config['custom_logo'], false, false, false).'" alt="logo" width="70%">
|
<img src="'.$image_about.'" alt="logo" width="70%">
|
||||||
</th>
|
</th>
|
||||||
<th style="width: 60%; text-align: left;">
|
<th style="width: 60%; text-align: left;">
|
||||||
<h1>'.$product_name.'</h1>
|
<h1>'.$product_name.'</h1>
|
||||||
|
|
|
@ -1210,3 +1210,92 @@ input[type="image"] {
|
||||||
.mono {
|
.mono {
|
||||||
font-family: source-code, mono, monospace;
|
font-family: source-code, mono, monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
* table about dialog */ .table-about {
|
||||||
|
background-color: #222 !important;
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-color: #222 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about th {
|
||||||
|
background-color: #222 !important;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about h1 {
|
||||||
|
text-transform: none !important;
|
||||||
|
font-size: 28px !important;
|
||||||
|
color: white;
|
||||||
|
margin-top: 34px;
|
||||||
|
margin-left: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about h2 {
|
||||||
|
text-transform: none !important;
|
||||||
|
font-size: 15px !important;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
margin-left: 9px;
|
||||||
|
color: #95a3bf;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about h2 span {
|
||||||
|
color: #95a3bf;
|
||||||
|
font-size: large;
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about p {
|
||||||
|
color: white;
|
||||||
|
font-size: 15px;
|
||||||
|
font-weight: normal;
|
||||||
|
margin: 7px;
|
||||||
|
margin-left: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about p span {
|
||||||
|
color: white;
|
||||||
|
font-size: 15px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 9px;
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about p.about-last-p {
|
||||||
|
padding-bottom: 17px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-about .about-last-tr {
|
||||||
|
border-bottom: 1px solid #eaeaea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.about-copyright-div {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.trademark-copyright {
|
||||||
|
width: 90%;
|
||||||
|
color: #8a96a6;
|
||||||
|
font-size: 13px;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
text-align: center !important;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#about-tabs,
|
||||||
|
#tab-general-view {
|
||||||
|
padding-bottom: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#about-tabs {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tab-database {
|
||||||
|
height: 80%;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue