CSS: Rename big-icon to large-icon and use percent instead of px for font-size

refs #10294
This commit is contained in:
Eric Lippmann 2015-10-27 14:10:31 +01:00
parent 9d02aa75ea
commit f951e29269
2 changed files with 4 additions and 4 deletions

View File

@ -21,4 +21,4 @@ switch ($comment->type) {
$tooltip = $this->translate('Comment was caused by an acknowledgement'); $tooltip = $this->translate('Comment was caused by an acknowledgement');
break; break;
} }
echo $this->icon($icon, $tooltip, array('class' => 'big-icon')); echo $this->icon($icon, $tooltip, array('class' => 'large-icon'));

View File

@ -4,8 +4,8 @@
color: @icinga-blue; color: @icinga-blue;
} }
.big-icon { .large-icon {
font-size: 28px; font-size: 200%;
} }
.clearfix { .clearfix {
@ -66,7 +66,7 @@
} }
} }
a:hover .icon-cancel { a:hover > .icon-cancel {
color: @color-critical; color: @color-critical;
} }