mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 07:05:35 +00:00
40 lines
1.1 KiB
Plaintext
Executable File
40 lines
1.1 KiB
Plaintext
Executable File
.border-radius (@radius: 5px) {
|
|
-webkit-border-radius: @radius;
|
|
-moz-border-radius: @radius;
|
|
border-radius: @radius;
|
|
|
|
-moz-background-clip: padding;
|
|
-webkit-background-clip: padding-box;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
.border-bottom-radius (@radius: 5px) {
|
|
-webkit-border-bottom-left-radius: @radius;
|
|
-moz-border-bottom-left-radius: @radius;
|
|
border-bottom-left-radius: @radius;
|
|
-webkit-border-bottom-right-radius: @radius;
|
|
-moz-border-bottom-right-radius: @radius;
|
|
border-bottom-right-radius: @radius;
|
|
|
|
-moz-background-clip: padding;
|
|
-webkit-background-clip: padding-box;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
.user-select-none () {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
// Screens less than 1024 wide
|
|
// More will be added over time to support mobile devices better
|
|
.tablet(@rules) {
|
|
@media only screen and (min-width: 300px) and (max-width: 1024px) {
|
|
@rules();
|
|
}
|
|
}
|