inputs.less 768 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // Inputs
  3. // --------------------------------------------------
  4. // Button-based inputs
  5. .btn.btn-yes-no, .btn.btn-select {
  6. background: transparent;
  7. border: 1px solid @gray-lighter;
  8. .material-icon {
  9. margin: -4px 0px;
  10. margin-right: 8px;
  11. position: relative;
  12. bottom: 1px;
  13. width: 20px;
  14. height: 20px;
  15. font-size: 20px;
  16. line-height: 20px;
  17. }
  18. }
  19. // Hidden file input
  20. input.hidden-file-upload {
  21. position: absolute;
  22. top: -9999px;
  23. left: -9999px;
  24. }
  25. // Search field
  26. .form-search {
  27. position: relative;
  28. .form-control {
  29. padding-right: 30px;
  30. }
  31. .material-icon {
  32. position: absolute;
  33. top: 5px;
  34. right: 5px;
  35. color: @gray-light;
  36. font-size: 24px;
  37. line-height: 24px;
  38. pointer-events: none;
  39. }
  40. }