forked from treehouse/mastodon
12 lines
180 B
CSS
12 lines
180 B
CSS
|
[inert] {
|
||
|
pointer-events: none;
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
[inert], [inert] * {
|
||
|
user-select: none;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
}
|