Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
23da7d5b
Commit
23da7d5b
authored
Nov 17, 2016
by
Alexander Yuzhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DE mobile] Disable text select.
parent
8c3269ac
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
0 deletions
+44
-0
apps/documenteditor/mobile/resources/css/app-ios.css
apps/documenteditor/mobile/resources/css/app-ios.css
+10
-0
apps/documenteditor/mobile/resources/css/app-material.css
apps/documenteditor/mobile/resources/css/app-material.css
+10
-0
apps/documenteditor/mobile/resources/less/app-ios.less
apps/documenteditor/mobile/resources/less/app-ios.less
+12
-0
apps/documenteditor/mobile/resources/less/app-material.less
apps/documenteditor/mobile/resources/less/app-material.less
+12
-0
No files found.
apps/documenteditor/mobile/resources/css/app-ios.css
View file @
23da7d5b
...
...
@@ -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;
...
...
apps/documenteditor/mobile/resources/css/app-material.css
View file @
23da7d5b
...
...
@@ -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
;
...
...
apps/documenteditor/mobile/resources/less/app-ios.less
View file @
23da7d5b
...
...
@@ -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 {
...
...
apps/documenteditor/mobile/resources/less/app-material.less
View file @
23da7d5b
...
...
@@ -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,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment