_search.less 850 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #search {
  2. float: right;
  3. position: relative;
  4. -webkit-app-region: no-drag ;
  5. &:after {
  6. content: ' ';
  7. display: block;
  8. position: absolute;
  9. width: 24px;
  10. height: 24px;
  11. left: 5px;
  12. top: 7px;
  13. background: url(../images/icons.png) no-repeat 0 -345px;
  14. }
  15. input[type=search] {
  16. background: @tab-hover;
  17. border: none;
  18. height: 20px;
  19. line-height: 1em;
  20. border-radius: 15px;
  21. outline: none;
  22. color: @ui-fore;
  23. padding: 5px 10px 5px 30px;
  24. box-sizing: content-box;
  25. margin-top: 5px;
  26. margin-right: 3px;
  27. width: 30px;
  28. -webkit-appearance: none;
  29. transition: width .5s ease;
  30. transform: translateZ(0);
  31. &:focus {
  32. width: 150px;
  33. }
  34. }
  35. }