mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-07 06:40:54 +00:00
31 lines
658 B
Plaintext
31 lines
658 B
Plaintext
.antialised() {
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.no-outlines() {
|
|
outline: none !important;
|
|
border-color: inherit !important;
|
|
-webkit-box-shadow: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.hover() {
|
|
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
|
|
}
|
|
|
|
.placeholder(@rules) {
|
|
&::-webkit-input-placeholder {
|
|
@rules();
|
|
}
|
|
&:-moz-placeholder {
|
|
@rules();
|
|
}
|
|
&::-moz-placeholder {
|
|
@rules();
|
|
}
|
|
&:-ms-input-placeholder {
|
|
@rules();
|
|
}
|
|
} |