2012-05-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/styles/pandora_legacy.css include/styles/pandora.css images/skin/skin_default/include/styles/pandora.css: Fixed information messages in other css files different than the default css file. Also resized header image to 100% width. * operation/agentes/tactical.php: Fixed print_cells_temp function when it has not color like argument. Merged from branches. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6241 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
fc87947dd9
commit
14082b25dc
|
@ -1,3 +1,16 @@
|
|||
2012-05-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/styles/pandora_legacy.css
|
||||
include/styles/pandora.css
|
||||
images/skin/skin_default/include/styles/pandora.css: Fixed
|
||||
information messages in other css files different than the default
|
||||
css file. Also resized header image to 100% width.
|
||||
|
||||
* operation/agentes/tactical.php: Fixed print_cells_temp function
|
||||
when it has not color like argument.
|
||||
|
||||
Merged from branches.
|
||||
|
||||
2012-05-03 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/reporting/visual_console_builder.php: refixed the add the
|
||||
|
|
|
@ -2049,3 +2049,24 @@ td.scwFootDisabled {
|
|||
tfoot.scwFoot {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.info_box {
|
||||
background: #EBEBEB;
|
||||
margin: 10px auto;
|
||||
padding: 5px;
|
||||
border: 1px solid #A8A8A8;
|
||||
width: 85% !important;
|
||||
-moz-box-shadow: 0px 2px 2px #010E1B !important;
|
||||
-webkit-box-shadow: 0px 2px 2px #010E1B !important;
|
||||
box-shadow: 0px 2px 2px #010E1B !important;
|
||||
}
|
||||
|
||||
.info_box .title * {
|
||||
font-size: 10pt !important;
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
.info_box .icon {
|
||||
width: 30px !important;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
|
@ -1358,7 +1358,7 @@ div#head {
|
|||
width: auto;
|
||||
background-color: #000;
|
||||
background-image: url(../../images/header_f2.png);
|
||||
|
||||
background-size: 100% !important;
|
||||
}
|
||||
|
||||
div#foot {
|
||||
|
|
|
@ -270,6 +270,7 @@ div#head {
|
|||
height: 62px;
|
||||
padding-top: 1px;
|
||||
background: url(../../images/header.jpg);
|
||||
background-size: 100% !important;
|
||||
}
|
||||
|
||||
div#foot {
|
||||
|
|
|
@ -49,10 +49,15 @@ function print_cells_temp ($cells) {
|
|||
$row[1] = "-";
|
||||
}
|
||||
|
||||
// Prevents error for empty color
|
||||
$color = '';
|
||||
if (isset($row["color"]))
|
||||
$color = 'style="color: ' . $row["color"] . ';"';
|
||||
|
||||
if (isset($row["href"]))
|
||||
echo '<td class="'.$class.'" style="text-align:right;"><a class="big_data" href="'.io_safe_input ($row["href"]).'" style="color: '.$row["color"].';">'.$row[1].'</a></td></tr>';
|
||||
echo '<td class="'.$class.'" style="text-align:right;"><a class="big_data" href="'.io_safe_input ($row["href"]).'" ' . $color . '>'.$row[1].'</a></td></tr>';
|
||||
else
|
||||
echo '<td class="'.$class.'" style="text-align:right;"><a class="big_data" style="color: '.$row["color"].';">'.$row[1].'</a></td></tr>';
|
||||
echo '<td class="'.$class.'" style="text-align:right;"><a class="big_data" ' . $color . '>'.$row[1].'</a></td></tr>';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue