Adds new about page and dotted bottom lines in detail

This commit is contained in:
Bernd Erk 2015-11-13 13:57:09 +01:00
parent 4ce131e9ec
commit 39aa888131
8 changed files with 31 additions and 13 deletions

View File

@ -1,7 +1,7 @@
<div class="controls"> <div class="controls">
<?= $tabs ?> <?= $tabs ?>
</div> </div>
<div class="content content-centered"> <div id="about" class="content content-centered">
<?= $this->img( <?= $this->img(
'img/logo_icinga_big_dark.png', 'img/logo_icinga_big_dark.png',
null, null,
@ -35,7 +35,7 @@
) ?> ) ?>
</dd> </dd>
</dl> </dl>
<div> <div class="about-social">
<?= $this->qlink( <?= $this->qlink(
null, null,
'https://www.twitter.com/icinga', 'https://www.twitter.com/icinga',
@ -54,16 +54,25 @@
'icon' => 'facebook-squared', 'icon' => 'facebook-squared',
'title' => $this->translate('Icinga on Facebook') 'title' => $this->translate('Icinga on Facebook')
) )
) ?> <?= $this->qlink(
null,
'https://plus.google.com/+icinga',
null,
array(
'target' => '_blank',
'icon' => 'google-plus-squared',
'title' => $this->translate('Icinga on Google+')
)
) ?> ) ?>
</div> </div>
<div> <div class="about-links">
<?= $this->qlink( <?= $this->qlink(
null, null,
'https://dev.icinga.org/projects/icingaweb2', 'https://dev.icinga.org/projects/icingaweb2',
null, null,
array( array(
'target' => '_blank', 'target' => '_blank',
'img' => 'img/bugreport.png', 'icon' => 'bug',
'title' => $this->translate('Report a bug') 'title' => $this->translate('Report a bug')
) )
) ?> ) ?>
@ -73,19 +82,17 @@
null, null,
array( array(
'target' => '_blank', 'target' => '_blank',
'img' => 'img/support.png', 'icon' => 'chat',
'title' => $this->translate('Support / Mailinglists') 'title' => $this->translate('Support / Mailinglists')
) )
) ?> ) ?>
</div>
<div>
<?= $this->qlink( <?= $this->qlink(
null, null,
'https://wiki.icinga.org', 'https://wiki.icinga.org',
null, null,
array( array(
'target' => '_blank', 'target' => '_blank',
'img' => 'img/wiki.png', 'icon' => 'lightbulb',
'title' => $this->translate('Icinga Wiki') 'title' => $this->translate('Icinga Wiki')
) )
) ?> ) ?>
@ -95,7 +102,7 @@
null, null,
array( array(
'target' => '_blank', 'target' => '_blank',
'img' => 'img/docs.png', 'icon' => 'doc-text',
'title' => $this->translate('Icinga Documentation') 'title' => $this->translate('Icinga Documentation')
) )
) ?> ) ?>

View File

@ -32,6 +32,7 @@ class StyleSheet
'css/icinga/setup.less', 'css/icinga/setup.less',
'css/icinga/widgets.less', 'css/icinga/widgets.less',
'css/icinga/login.less', 'css/icinga/login.less',
'css/icinga/about.less',
'css/icinga/controls.less', 'css/icinga/controls.less',
'css/icinga/dev.less', 'css/icinga/dev.less',
// 'css/icinga/logo.less', // 'css/icinga/logo.less',

View File

@ -420,6 +420,15 @@ div.pluginoutput {
padding: 0.66em 0.33em; padding: 0.66em 0.33em;
} }
.go-ahead > a {
border-bottom: 1px @gray-light dotted;
&:hover {
border-bottom: 1px @gray-light solid;
text-decoration: none;
}
}
//p.pluginoutput { //p.pluginoutput {
// width: 100%; // width: 100%;
// white-space: pre-wrap; // white-space: pre-wrap;

View File

@ -9,7 +9,7 @@ table.historycolorgrid th {
height: 1em; height: 1em;
margin: 0.5em; margin: 0.5em;
font-size: 0.55em; font-size: 0.55em;
font-weight: normal; font-weight: bold;
} }
table.historycolorgrid td { table.historycolorgrid td {
@ -24,17 +24,18 @@ table.historycolorgrid td:hover {
table.historycolorgrid td.weekday { table.historycolorgrid td.weekday {
font-size: 0.55em; font-size: 0.55em;
font-weight: normal; font-weight: bold;
width: 2.5em; width: 2.5em;
opacity: 1.0; opacity: 1.0;
} }
table.historycolorgrid a, table.historycolorgrid span { table.historycolorgrid a, table.historycolorgrid span {
.rounded-corners(0.2em);
margin: 0; margin: 0;
text-decoration: none; text-decoration: none;
display: block; display: block;
width: 1em; width: 1.1em;
height: 1em; height: 1.1em;
} }
table.historycolorgrid a:hover { table.historycolorgrid a:hover {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB