2015-10-08 04:55:54 +08:00
|
|
|
@import "ui-variables";
|
|
|
|
@import "ui-mixins";
|
|
|
|
|
|
|
|
.btn-feedback {
|
|
|
|
position: fixed;
|
2016-01-21 03:26:14 +08:00
|
|
|
bottom: 7px;
|
|
|
|
right: 7px;
|
|
|
|
background: linear-gradient(to bottom, #419bf9 0%, #1081f7 100%);
|
|
|
|
width: 38px;
|
|
|
|
height: 38px;
|
|
|
|
border-radius: 25px;
|
2015-10-08 04:55:54 +08:00
|
|
|
display: inline-block;
|
2015-10-13 01:48:04 +08:00
|
|
|
font-size: 28px;
|
2015-10-08 04:55:54 +08:00
|
|
|
text-align: center;
|
2016-01-21 03:26:14 +08:00
|
|
|
line-height: 37px;
|
|
|
|
color: rgba(255, 255, 255, 0.9);
|
|
|
|
border: 1px solid #0668ce;
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
2015-10-08 04:55:54 +08:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
.btn-feedback:hover {
|
|
|
|
color:rgba(255,255,255,1);
|
|
|
|
background: linear-gradient(to bottom, lighten(@blue,5%) 0%, darken(@blue, 5%) 100%);
|
|
|
|
}
|
|
|
|
.btn-feedback:active {
|
|
|
|
background: linear-gradient(to bottom, darken(@blue,20%) 0%, darken(@blue, 10%) 100%);
|
|
|
|
}
|