keep white input background with package class [ci skip]
This commit is contained in:
parent
5a7c9b817c
commit
56bd527a8b
1 changed files with 8 additions and 3 deletions
|
@ -281,16 +281,21 @@ tr.unavailable {
|
|||
display: inline;
|
||||
}
|
||||
|
||||
// show package icon after amount of package numbers
|
||||
// show package icon after amount of wholesale units
|
||||
.package-image (@align) {
|
||||
background-image: url(package-bg.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: @align center;
|
||||
}
|
||||
input.package {
|
||||
background: url(package-bg.png) no-repeat right center;
|
||||
.package-image(right);
|
||||
// disabled and readonly definitions though
|
||||
&[disabled], &[readonly] {
|
||||
background-color: @inputDisabledBackground;
|
||||
}
|
||||
}
|
||||
i.package {
|
||||
background: url(package-bg.png) no-repeat left center;
|
||||
.package-image(left);
|
||||
min-width: 18px;
|
||||
font-style: normal;
|
||||
padding-left: 20px;
|
||||
|
|
Loading…
Reference in a new issue