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:
authorVicDeo <dubiniuk@owncloud.com>2013-12-05 21:58:04 +0400
committerVicDeo <dubiniuk@owncloud.com>2013-12-05 21:58:04 +0400
commit10938317b57100cb673fdb729019068a12bd33ed (patch)
tree2ad3956e9f7e7e57e85f7a89ad99cb28278cb5c1 /css
parent38688514eed688cf46304f217e2c9299c28f8af1 (diff)
parentdac9fdf0b8e54fd0482ed9822e964c264a6421c6 (diff)
Merge pull request #159 from owncloud/renametitle
Make it possible to rename documents by clicking on title
Diffstat (limited to 'css')
-rwxr-xr-xcss/style.css14
1 files changed, 13 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css
index 5146f731..0be8fcd6 100755
--- a/css/style.css
+++ b/css/style.css
@@ -124,6 +124,13 @@
position: relative;
/*margin-left:-50%;*/
}
+#document-title>input {
+ height:9px;
+ margin: 0;
+ padding-top:4px;
+ width: 300px;
+}
+
#odf-close{
float: right;
}
@@ -280,4 +287,9 @@ margin-top:-1px;
.dojoTabular {border-collapse: collapse; border-spacing: 0; border: 1px solid #ccc; margin: 0 1.5em;}
.dojoTabular th {text-align: center; font-weight: bold;}
.dojoTabular thead,.dojoTabular tfoot {background-color: #efefef; border: 1px solid #ccc; border-width: 1px 0;}
-.dojoTabular th,.dojoTabular td {padding: 0.25em 0.5em;} \ No newline at end of file
+.dojoTabular th,.dojoTabular td {padding: 0.25em 0.5em;}
+
+/* raise notification z-index above the documents app */
+#odf-toolbar + #notification-container {
+ z-index: 501;
+}