mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 19:17:59 +08:00
29 lines
553 B
CSS
29 lines
553 B
CSS
.buttonReset {
|
|
|
|
/* reset button */
|
|
user-select: none;
|
|
outline: invert none medium;
|
|
border: none;
|
|
touch-action: manipulation;
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
/* Unify anchor and button. */
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
align-items: flex-start;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
background: transparent;
|
|
font-size: inherit;
|
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
|
|
&::-moz-focus-inner: {
|
|
border: 0;
|
|
}
|
|
}
|