This commit is contained in:
Unknwon 2014-10-06 17:50:00 -04:00
parent 91e5c24a31
commit 64c68220d2
18 changed files with 317 additions and 19 deletions

View file

@ -480,6 +480,10 @@ dt {
.ipt-large {
font-size: 14.4px;
}
.ipt-textarea {
height: auto !important;
width: auto;
}
.ipt-disabled,
input[disabled] {
background-color: #f2f2f2 !important;

View file

@ -116,25 +116,24 @@
}
// input form elements
.ipt {
&:focus {
border-color: @iptFocusBorderColor;
}
&:focus {
border-color: @iptFocusBorderColor;
}
}
.ipt-radius {
border-radius: .25em;
border-radius: .25em;
}
.ipt-small {
font-size: .8*@baseFontSize;
font-size: .8*@baseFontSize;
}
.ipt-large {
font-size: 1.2*@baseFontSize;
font-size: 1.2*@baseFontSize;
}
.ipt-textarea {
height: auto !important;
width: auto;
}
.ipt-disabled,
input[disabled] {
background-color: @iptDisabledColor !important;
@ -144,14 +143,12 @@ input[disabled] {
color: #888;
cursor: not-allowed;
}
.ipt-readonly,
input[readonly] {
&:focus {
background-color: @iptDisabledColor !important;
}
}
.ipt-error {
border-color: @iptErrorBorderColor !important;
background-color: @iptErrorFocusColor !important;