inputs.less 488 B

12345678910111213141516171819202122232425262728293031
  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. }