2014-01-23 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_visual_map.php, include/styles/pandora.css: fixed the font sizes for the visualmaps embedmed into a dash Incident: #537 from local tacker. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9361 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
6172290904
commit
81251324c5
|
@ -1,3 +1,11 @@
|
|||
2014-01-23 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_visual_map.php,
|
||||
include/styles/pandora.css: fixed the font sizes for the visualmaps
|
||||
embedmed into a dash
|
||||
|
||||
Incident: #537 from local tacker.
|
||||
|
||||
2014-01-23 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_visual_map.php: fixed the links of icons in
|
||||
|
@ -28,6 +36,11 @@
|
|||
graph.
|
||||
|
||||
Incidents: #536 and #535 from local tracker
|
||||
2014-01-22 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/functions_visual_map.php,
|
||||
include/styles/pandora.css: fixed the font sizes for the visualmaps
|
||||
embedmed into a dashboard.
|
||||
|
||||
2014-01-22 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
|
|
|
@ -971,6 +971,12 @@ function visual_map_print_visual_map ($id_layout, $show_links = true, $draw_line
|
|||
$lines = array ();
|
||||
|
||||
foreach ($layout_datas as $layout_data) {
|
||||
if ($resizedMap) {
|
||||
//Hack to resize the text
|
||||
$layout_data["label"] = str_replace(
|
||||
'visual_font_size', 'resize_visual_font_size', $layout_data["label"]);
|
||||
}
|
||||
|
||||
//Check the items are from disabled or pending delete modules
|
||||
if ($layout_data['id_agente_modulo'] != 0 &&
|
||||
(($layout_data['type'] != LABEL)
|
||||
|
|
|
@ -2482,6 +2482,21 @@ span#plugin_description {
|
|||
.visual_font_size_72pt, .visual_font_size_72pt > em, .visual_font_size_72pt > strong {
|
||||
font-size: 72pt;
|
||||
}
|
||||
.resize_visual_font_size_8pt, .resize_visual_font_size_8pt > em, .resize_visual_font_size_8pt > strong {
|
||||
font-size: 4pt;
|
||||
}
|
||||
.resize_visual_font_size_14pt, .resize_visual_font_size_14pt > em , .resize_visual_font_size_14pt > strong {
|
||||
font-size: 7pt;
|
||||
}
|
||||
.resize_visual_font_size_24pt, .resize_visual_font_size_24pt > em, .resize_visual_font_size_24pt > strong {
|
||||
font-size: 12pt;
|
||||
}
|
||||
.resize_visual_font_size_36pt, .resize_visual_font_size_36pt > em, .resize_visual_font_size_36pt > strong {
|
||||
font-size: 18pt;
|
||||
}
|
||||
.resize_visual_font_size_72pt, .resize_visual_font_size_72pt > em, .resize_visual_font_size_72pt > strong {
|
||||
font-size: 36pt;
|
||||
}
|
||||
|
||||
/*SIDEBAR*/
|
||||
.menu_sidebar {
|
||||
|
|
Loading…
Reference in New Issue