mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
styles: Replace invalid user-drag property with -webkit-user-drag.
Commit abbd8a7f45 (#13112) should have
removed the nonexistent user-drag property rather than the
Webkit-specific -webkit-user-drag property.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
12dcaed177
commit
0f78efdbb5
@@ -2430,7 +2430,7 @@ div.topic_edit_spinner .loading_indicator_spinner {
|
||||
}
|
||||
|
||||
.no-drag {
|
||||
user-drag: none;
|
||||
-webkit-user-drag: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ module.exports = {
|
||||
rules: {
|
||||
// Add some exceptions for recommended rules
|
||||
"at-rule-no-unknown": [true, {ignoreAtRules: ["extend"]}],
|
||||
"property-no-unknown": [true, {ignoreProperties: [/^mso-/, "user-drag"]}],
|
||||
"property-no-unknown": [true, {ignoreProperties: [/^mso-/]}],
|
||||
|
||||
// Disable recommended rules we don't comply with yet
|
||||
"declaration-block-no-duplicate-properties": null,
|
||||
|
||||
Reference in New Issue
Block a user