Sha256: 86d90383fd115a81b69ac6e0059a68baa1679878297a6e54d1da5e26ba9a643d
Contents?: true
Size: 1.21 KB
Versions: 3
Compression:
Stored size: 1.21 KB
Contents
// // Input Icons // -------------------------------------------------- .form-group { position: relative; } .form-control { & + .input-icon { position: absolute; top: 2px; right: 2px; line-height: 37px; vertical-align: middle; font-size: @input-icon-font-size; color: desaturate(lighten(@brand-primary, 45%), 15%); background-color: @inverse; padding: 0 12px 0 0; border-radius: @input-border-radius; } } // Icons sizing // --------------------------- // Huge .input-hg + .input-icon { line-height: 49px; padding: 0 16px 0 0; } //Large .input-lg + .input-icon { line-height: 41px; padding: 0 15px 0 0; } // Small .input-sm + .input-icon { font-size: @font-size-base; line-height: 30px; padding: 0 10px 0 0; } // Icons states // --------------------------- .has-success { .input-icon { color: @brand-success; } } .has-warning { .input-icon { color: @brand-warning; } } .has-error { .input-icon { color: @brand-danger; } } .form-control[disabled] + .input-icon, .form-control[readonly] + .input-icon, fieldset[disabled] .form-control + .input-icon, .form-control.disabled + .input-icon { color: mix(@gray, white, 40%); background-color: mix(@gray, white, 10%); }
Version data entries
3 entries across 3 versions & 1 rubygems