mirror of
https://github.com/wassname/talk.git
synced 2026-07-15 11:26:58 +08:00
38 lines
588 B
CSS
38 lines
588 B
CSS
.buttonReset {
|
|
user-select: none;
|
|
outline: invert none medium;
|
|
border: none;
|
|
touch-action: manipulation;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
|
|
&::-moz-focus-inner: {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
.button > i {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.button {
|
|
composes: buttonReset;
|
|
background-color: transparent;
|
|
padding: 3px;
|
|
border: none;
|
|
color: #4e4e4e;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.button:hover{
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
background-color: #eae8e8;
|
|
}
|
|
|
|
.active {
|
|
border-radius: 3px;
|
|
background-color: #ddd;
|
|
}
|