Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorAditya Bhatt <aditya@bhatts.org>2014-03-04 17:37:28 +0400
committerAditya Bhatt <aditya@bhatts.org>2014-03-04 19:19:31 +0400
commit3cd491a5ef061fa97780852aaca97352c9d5e1a8 (patch)
treedbefc197ca3f6b7709f93ded5214425817d7e5ca /css
parent8b71362d0e709815a4cb90d961456b3ce268d77d (diff)
Sync with WebODF e50bc588ff3e380178ffabecfe2fbca92bef6aed.
* Keyboard support in iOS and other touchscreens * Pinch-zoom support on touch devices * SVG selections that look like those in LibreOffice * Major speed improvements with all editing operations and cursor movements * IME support on desktop browsers * Word-by-word navigation with Ctrl+Left/Right * Fixes for IE11 * Ability to add/edit/remove Hyperlinks.
Diffstat (limited to 'css')
-rw-r--r--css/3rdparty/webodf/editor.css24
1 files changed, 18 insertions, 6 deletions
diff --git a/css/3rdparty/webodf/editor.css b/css/3rdparty/webodf/editor.css
index 23f86ee9..6f23a0c8 100644
--- a/css/3rdparty/webodf/editor.css
+++ b/css/3rdparty/webodf/editor.css
@@ -25,13 +25,18 @@ body.claro, #mainContainer {
#toolbar {
overflow: hidden;
+ top: 0;
+ left: 0;
+ right: 0;
+ position: absolute;
+ z-index: 5;
+ box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}
#container {
text-align: center;
background-color: #ddd;
overflow: auto;
-
position: absolute;
top: 30px;
bottom: 0;
@@ -40,7 +45,6 @@ body.claro, #mainContainer {
}
#canvas {
- box-shadow: 0px 0px 20px #aaa;
margin-top: 30px;
margin-left: 10px;
margin-right: 10px;
@@ -50,8 +54,16 @@ body.claro, #mainContainer {
-webkit-transform-origin: top center;
-moz-transform-origin: top center;
-o-transform-origin: top center;
- overflow: hidden;
+ overflow: visible;
+}
+/* Add shadow to the sizer and not the canvas,
+ * so that it will follow the smooth zooming
+ * of the slider and not have to be updated
+ * every time a gesture ends
+ */
+#canvas > div {
+ box-shadow: 0px 0px 20px #aaa;
border: 1px solid #ccc;
}
@@ -241,7 +253,7 @@ div.memberListLabel[fullname]:before {
text-align: center;
}
-cursor div {
+cursor .handle {
margin-top: 5px;
padding-top: 3px;
margin-left: auto;
@@ -269,11 +281,11 @@ cursor img {
margin: auto;
}
-cursor div.active {
+cursor .handle.active {
opacity: 0.8;
}
-cursor div:after {
+cursor .handle:after {
content: ' ';
position: absolute;
width: 0px;