Skip to content

Commit

Permalink
CSS: Style a.button (WIP)
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 25, 2015
1 parent b6d723b commit 98c0d7b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions public/css/icinga/main.less
Expand Up @@ -103,3 +103,36 @@ table.listing-table {
}
}
}

a.button {
.rounded-corners(5px);
background-color: @body-bg-color;
border: 2px solid @icinga-blue;
color: @icinga-blue;
cursor: pointer;
display: block;
font-size: 14px;
height: 40px;
line-height: 22px;
padding: @vertical-padding @horizontal-padding;
width: 200px;

-webkit-transition: background 0.3s ease, color 0.3s ease;
-moz-transition: background 0.3s ease, color 0.3s ease;
-o-transition: background 0.3s ease, color 0.3s ease;
transition: background 0.3s ease, color 0.3s ease;

* {
line-height: inherit;
}

&:hover {
background-color: @icinga-blue;
color: @text-color-inverted;
text-decoration: none;
}

i {
font-size: 18px;
}
}

0 comments on commit 98c0d7b

Please sign in to comment.