css: allow to override vendor styles
* no more hovered icon underline * simulate padding for headers in .controls
This commit is contained in:
parent
b5aa08ca36
commit
47d81ccf7b
|
@ -167,4 +167,4 @@
|
||||||
.icon-chart-area:before { content: '\e870'; } /* '' */
|
.icon-chart-area:before { content: '\e870'; } /* '' */
|
||||||
.icon-chart-bar:before { content: '\e871'; } /* '' */
|
.icon-chart-bar:before { content: '\e871'; } /* '' */
|
||||||
.icon-beaker:before { content: '\e872'; } /* '' */
|
.icon-beaker:before { content: '\e872'; } /* '' */
|
||||||
.icon-magic:before { content: '\e873'; } /* '' */
|
.icon-magic:before { content: '\e873'; } /* '' */
|
||||||
|
|
|
@ -11,6 +11,8 @@ use Icinga\Web\LessCompiler;
|
||||||
class StyleSheet
|
class StyleSheet
|
||||||
{
|
{
|
||||||
protected static $lessFiles = array(
|
protected static $lessFiles = array(
|
||||||
|
'../application/fonts/fontello-ifont/css/ifont-embedded.css',
|
||||||
|
'css/vendor/tipsy.css',
|
||||||
'css/icinga/defaults.less',
|
'css/icinga/defaults.less',
|
||||||
'css/icinga/layout-colors.less',
|
'css/icinga/layout-colors.less',
|
||||||
'css/icinga/layout-structure.less',
|
'css/icinga/layout-structure.less',
|
||||||
|
@ -24,9 +26,7 @@ class StyleSheet
|
||||||
'css/icinga/pagination.less',
|
'css/icinga/pagination.less',
|
||||||
'css/icinga/monitoring-colors.less',
|
'css/icinga/monitoring-colors.less',
|
||||||
'css/icinga/selection-toolbar.less',
|
'css/icinga/selection-toolbar.less',
|
||||||
'css/icinga/login.less',
|
'css/icinga/login.less'
|
||||||
'../application/fonts/fontello-ifont/css/ifont-embedded.css',
|
|
||||||
'css/vendor/tipsy.css'
|
|
||||||
);
|
);
|
||||||
|
|
||||||
public static function compileForPdf()
|
public static function compileForPdf()
|
||||||
|
|
|
@ -193,3 +193,12 @@ table.benchmark {
|
||||||
.controls a {
|
.controls a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* controls have no padding as of tabs */
|
||||||
|
.controls > h1 {
|
||||||
|
margin-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
[class^="icon-"]:before, [class*=" icon-"]:before {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue