| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #panel .quick-visit-button {
- float: left;
- border: none;
- width: 40px;
- height: 40px;
- line-height: 40px;
- padding: 0;
- margin: 0;
- display: block;
- position: relative;
- -webkit-app-region: no-drag;
-
- &:after {
- content: ' ';
- position: absolute;
- display: block;
- width: 25px;
- height: 25px;
- left: 7.5px;
- top: 5.5px;
- background: url(../images/icons.png) no-repeat;
- }
- text-indent: -10000px;
-
- &.new {
- &:after {
- background-position: 0 -895px;
- }
- }
-
- &.save {
-
- &:after {
- background-position: 0 -920px;
- }
- }
-
- &.share {
- &:after {
- background-position: 0 -945px;
- }
- }
- &.feedback {
- float: right;
- margin-right: 5px;
- &:after {
- top: 6.5px;
- left: 7px;
- background-position: 0 -970px;
- }
- }
- &.editshare {
- margin-right: 5px;
- float: right;
- &:after {
- top: 6.5px;
- left: 7px;
- background-position: 0 -1060px;
- }
- }
- &:hover {
- background-color: @tab-hover;
- }
- &:active {
- background-color: @tab-active;
- }
- &:first-child {
- margin-left: 5px;
- }
- }
|