Changeset 277 for trunk/nagios-velvice
- Timestamp:
- Jul 15, 2018, 11:51:06 AM (7 years ago)
- Location:
- trunk/nagios-velvice
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nagios-velvice/velvice.cgi
r275 r277 15 15 use strict; 16 16 use warnings; 17 use version; our $VERSION = version->declare('0.7. 9');17 use version; our $VERSION = version->declare('0.7.10'); 18 18 19 19 use CGI; … … 258 258 $parser->parse("/var/cache/nagios3/objects.cache"); 259 259 260 $htmlpage .= "<div class='action'>\n"; 260 261 REMOTE_ACTION: 261 262 for my $act_name (keys %remote_db) { … … 280 281 } 281 282 } 283 $htmlpage .= "</div>\n"; 282 284 } 283 285 } 284 286 285 287 $htmlpage .= <<"ENDH"; 288 <hr clear="all"> 286 289 <div class="footer"> 287 <hr clear="all">288 290 <b><a href="http://servforge.legi.grenoble-inp.fr/projects/soft-trokata/wiki/SoftWare/NagiosVelvice">Velvice</a> 289 291 - version: $VERSION</b> -
trunk/nagios-velvice/velvice.css
r274 r277 1 h1 { 1 /* header */ 2 .header h1 { 3 color: #88D066; 2 4 border-bottom: 2px solid; 3 5 border-color: black; 4 6 border-left: 2px solid; 5 7 border-radius: 0px 0px 0px 3ex; 8 border-color: #AACCFF; 6 9 } 7 10 8 11 /* https://stackoverflow.com/questions/14920401/how-to-simulate-hfill-with-html-and-css */ 9 h1 ul {12 .header h1 ul { 10 13 display: flex; 11 14 justify-content: space-between; … … 13 16 } 14 17 15 h1 li {18 .header h1 li { 16 19 display: inline; 20 } 21 22 a#refresh { 23 background: #E0E0E0; 24 border-radius: 1.8ex;; 25 margin-left: 2ex; 26 padding: 0.3ex 1.3ex; 27 text-decoration: none; 28 } 29 30 a#refresh:after { 31 content: "\00A0\21bb"; 32 } 33 34 /* general */ 35 a:link, a:visited { 36 text-decoration: none; 37 } 38 39 a:hover, a:active { 40 text-decoration: underline solid; 17 41 } 18 42 … … 21 45 } 22 46 47 hr { 48 border-style: solid; 49 border-width: 1px; 50 color: #AACCFF; 51 margin-top: 4ex; 52 width: 70%; 53 } 54 55 /* action */ 56 .action h2 { 57 color: #88D066; 58 } 23 59 24 60 /* footer */ 25 .footer hr { 26 border-style: solid; 27 border-width: 1px; 28 color: black; 29 margin-top: 4ex; 30 width: 70%; 61 .footer { 62 float : right; 63 margin-right: 5%; 64 } 65 66 div.footer { 67 font-size: xx-small; 68 color: #666; 31 69 } 32 70 … … 34 72 margin-top: 0.8ex; 35 73 } 36 37 div.footer {38 font-size: xx-small;39 }
Note: See TracChangeset
for help on using the changeset viewer.