diff --git a/application/views/scripts/about/index.phtml b/application/views/scripts/about/index.phtml index fed8482589..5e7c918da7 100644 --- a/application/views/scripts/about/index.phtml +++ b/application/views/scripts/about/index.phtml @@ -1,7 +1,7 @@
-
+
img( 'img/logo_icinga_big_dark.png', null, @@ -35,7 +35,7 @@ ) ?> -
+
qlink( null, 'https://www.twitter.com/icinga', @@ -54,16 +54,25 @@ 'icon' => 'facebook-squared', 'title' => $this->translate('Icinga on Facebook') ) + ) ?> qlink( + null, + 'https://plus.google.com/+icinga', + null, + array( + 'target' => '_blank', + 'icon' => 'google-plus-squared', + 'title' => $this->translate('Icinga on Google+') + ) ) ?>
-
+ -
qlink( null, 'https://wiki.icinga.org', null, array( 'target' => '_blank', - 'img' => 'img/wiki.png', + 'icon' => 'lightbulb', 'title' => $this->translate('Icinga Wiki') ) ) ?> @@ -95,7 +102,7 @@ null, array( 'target' => '_blank', - 'img' => 'img/docs.png', + 'icon' => 'doc-text', 'title' => $this->translate('Icinga Documentation') ) ) ?> diff --git a/library/Icinga/Web/StyleSheet.php b/library/Icinga/Web/StyleSheet.php index 8bb01ae285..5ce438e74d 100644 --- a/library/Icinga/Web/StyleSheet.php +++ b/library/Icinga/Web/StyleSheet.php @@ -32,6 +32,7 @@ class StyleSheet 'css/icinga/setup.less', 'css/icinga/widgets.less', 'css/icinga/login.less', + 'css/icinga/about.less', 'css/icinga/controls.less', 'css/icinga/dev.less', // 'css/icinga/logo.less', diff --git a/modules/monitoring/public/css/module.less b/modules/monitoring/public/css/module.less index fff6cbe73b..154dc1a4e4 100644 --- a/modules/monitoring/public/css/module.less +++ b/modules/monitoring/public/css/module.less @@ -420,6 +420,15 @@ div.pluginoutput { 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 { // width: 100%; // white-space: pre-wrap; diff --git a/public/css/icinga/widgets.less b/public/css/icinga/widgets.less index 6ac5cefbae..340ddf5053 100644 --- a/public/css/icinga/widgets.less +++ b/public/css/icinga/widgets.less @@ -9,7 +9,7 @@ table.historycolorgrid th { height: 1em; margin: 0.5em; font-size: 0.55em; - font-weight: normal; + font-weight: bold; } table.historycolorgrid td { @@ -24,17 +24,18 @@ table.historycolorgrid td:hover { table.historycolorgrid td.weekday { font-size: 0.55em; - font-weight: normal; + font-weight: bold; width: 2.5em; opacity: 1.0; } table.historycolorgrid a, table.historycolorgrid span { + .rounded-corners(0.2em); margin: 0; text-decoration: none; display: block; - width: 1em; - height: 1em; + width: 1.1em; + height: 1.1em; } table.historycolorgrid a:hover { diff --git a/public/img/bugreport.png b/public/img/bugreport.png deleted file mode 100644 index 23d913291a..0000000000 Binary files a/public/img/bugreport.png and /dev/null differ diff --git a/public/img/docs.png b/public/img/docs.png deleted file mode 100644 index 051db6ccec..0000000000 Binary files a/public/img/docs.png and /dev/null differ diff --git a/public/img/support.png b/public/img/support.png deleted file mode 100644 index 17a0c9233e..0000000000 Binary files a/public/img/support.png and /dev/null differ diff --git a/public/img/wiki.png b/public/img/wiki.png deleted file mode 100644 index 02df73af63..0000000000 Binary files a/public/img/wiki.png and /dev/null differ