CSS: Remove form related CSS from the icinga theme

Will be readded later.

refs 
This commit is contained in:
Eric Lippmann 2015-09-23 10:58:01 +02:00
parent 12227d9d08
commit ae71d91d0d

@ -18,78 +18,13 @@
// Text color on <a>
@link-color: @text-color;
// Font and line-height for text on <body>
@font-family: Calibri, Helvetica, sans-serif;
@font-size: 14px;
@font-size-small: 11px;
@line-height: 17px;
@line-height-small: 14px;
// Default padding
@vertical-padding: 6px;
@horizontal-padding: 12px;
body {
background-color: @body-bg-color;
color: @text-color;
font-family: @font-family;
font-size: @font-size;
}
form {
i {
display: none;
}
}
.control-label {
display: inline-block;
font-size: @font-size-small;
color: @text-color-light;
}
.control-label-group {
display: inline-block;
padding-right: @horizontal-padding;
text-align: right;
width: 240px;
}
.control-group {
padding: @vertical-padding @horizontal-padding;
}
input {
border: none;
border-bottom: 1px solid @text-color-light;
color: inherit;
display: inline-block;
padding: @vertical-padding / 2 @horizontal-padding / 2;
&:focus {
border-bottom: 1px solid @text-color;
}
}
select {
display: table-cell;
}
input[type="submit"] {
background-color: @body-bg-color;
color: @icinga-blue;
border: 1px solid @icinga-blue;
cursor: pointer;
margin-top: @vertical-padding;
-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;
&:hover {
background-color: @icinga-blue;
color: @text-color-inverted;
}
}
.buttons {
text-align: right;
}