Commit 23da7d5b authored by Alexander Yuzhin's avatar Alexander Yuzhin

[DE mobile] Disable text select.

parent 8c3269ac
......@@ -5826,6 +5826,16 @@ html.ios-gt-8 .notifications .item-subtitle {
[disabled] [disabled] {
opacity: 1;
}
* {
-webkit-user-select: none;
user-select: none;
}
input,
textarea {
-webkit-touch-callout: default;
-webkit-user-select: text;
user-select: text;
}
#editor-navbar.navbar .right a + a,
#editor-navbar.navbar .left a + a {
margin-left: 0;
......
......@@ -6094,6 +6094,16 @@ i.icon.icon-link {
height: 22px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22%23fff%22%3E%3Cg%3E%3Cpolygon%20points%3D%2210.9%2C16.9%202%2C8.1%204.1%2C6%2011.1%2C12.8%2017.9%2C6%2020%2C8.1%2011.2%2C16.9%2011.1%2C17%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
* {
-webkit-user-select: none;
user-select: none;
}
input,
textarea {
-webkit-touch-callout: default;
-webkit-user-select: text;
user-select: text;
}
#add-table .page,
#add-shape .page {
background-color: #fff;
......
......@@ -41,6 +41,18 @@
//@import url('../../../../../vendor/framework7/src/less/ios/login-screen.less');
@import url('../../../../../vendor/framework7/src/less/ios/disabled.less');
// Disable text select
* {
-webkit-user-select: none;
user-select: none;
}
input, textarea {
-webkit-touch-callout:default;
-webkit-user-select:text;
user-select:text;
}
// Main Toolbar
#editor-navbar.navbar .right a + a,
#editor-navbar.navbar .left a + a {
......
......@@ -56,6 +56,18 @@
@import url('material/_search.less');
@import url('material/_icons.less');
// Disable text select
* {
-webkit-user-select: none;
user-select: none;
}
input, textarea {
-webkit-touch-callout:default;
-webkit-user-select:text;
user-select:text;
}
// Add Container
#add-table,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment