mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 00:04:37 +02:00
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
5a8b19b129
commit
e1e2b45d38
@ -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>
|
2012-05-03 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* godmode/reporting/visual_console_builder.php: refixed the add the
|
* godmode/reporting/visual_console_builder.php: refixed the add the
|
||||||
|
@ -2049,3 +2049,24 @@ td.scwFootDisabled {
|
|||||||
tfoot.scwFoot {
|
tfoot.scwFoot {
|
||||||
color: #FFFFFF;
|
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;
|
width: auto;
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
background-image: url(../../images/header_f2.png);
|
background-image: url(../../images/header_f2.png);
|
||||||
|
background-size: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#foot {
|
div#foot {
|
||||||
|
@ -270,6 +270,7 @@ div#head {
|
|||||||
height: 62px;
|
height: 62px;
|
||||||
padding-top: 1px;
|
padding-top: 1px;
|
||||||
background: url(../../images/header.jpg);
|
background: url(../../images/header.jpg);
|
||||||
|
background-size: 100% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#foot {
|
div#foot {
|
||||||
|
@ -49,10 +49,15 @@ function print_cells_temp ($cells) {
|
|||||||
$row[1] = "-";
|
$row[1] = "-";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Prevents error for empty color
|
||||||
|
$color = '';
|
||||||
|
if (isset($row["color"]))
|
||||||
|
$color = 'style="color: ' . $row["color"] . ';"';
|
||||||
|
|
||||||
if (isset($row["href"]))
|
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
|
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…
x
Reference in New Issue
Block a user