123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // Inputs
- // --------------------------------------------------
- // Button-based inputs
- .btn.btn-yes-no, .btn.btn-select {
- background: transparent;
- border: 1px solid @gray-lighter;
- .material-icon {
- margin: -4px 0px;
- margin-right: 8px;
- position: relative;
- bottom: 1px;
- width: 20px;
- height: 20px;
- font-size: 20px;
- line-height: 20px;
- }
- }
- // Hidden file input
- input.hidden-file-upload {
- position: absolute;
- top: -9999px;
- left: -9999px;
- }
- // Search field
- .form-search {
- position: relative;
- .form-control {
- padding-right: 30px;
- }
- .material-icon {
- position: absolute;
- top: 5px;
- right: 5px;
- color: @gray-light;
- font-size: 24px;
- line-height: 24px;
- pointer-events: none;
- }
- }
|