_quickvisit.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #panel .quick-visit-button {
  2. float: left;
  3. border: none;
  4. width: 40px;
  5. height: 40px;
  6. line-height: 40px;
  7. padding: 0;
  8. margin: 0;
  9. display: block;
  10. position: relative;
  11. -webkit-app-region: no-drag;
  12. &:after {
  13. content: ' ';
  14. position: absolute;
  15. display: block;
  16. width: 25px;
  17. height: 25px;
  18. left: 7.5px;
  19. top: 5.5px;
  20. background: url(../images/icons.png) no-repeat;
  21. }
  22. text-indent: -10000px;
  23. &.new {
  24. &:after {
  25. background-position: 0 -895px;
  26. }
  27. }
  28. &.save {
  29. &:after {
  30. background-position: 0 -920px;
  31. }
  32. }
  33. &.share {
  34. &:after {
  35. background-position: 0 -945px;
  36. }
  37. }
  38. &.feedback {
  39. float: right;
  40. margin-right: 5px;
  41. &:after {
  42. top: 6.5px;
  43. left: 7px;
  44. background-position: 0 -970px;
  45. }
  46. }
  47. &.editshare {
  48. margin-right: 5px;
  49. float: right;
  50. &:after {
  51. top: 6.5px;
  52. left: 7px;
  53. background-position: 0 -1060px;
  54. }
  55. }
  56. &:hover {
  57. background-color: @tab-hover;
  58. }
  59. &:active {
  60. background-color: @tab-active;
  61. }
  62. &:first-child {
  63. margin-left: 5px;
  64. }
  65. }