From d56ef4f0b64e3bd27a92fbd8b2214dc3cbea7b3f Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 5 Dec 2013 14:04:36 +0100 Subject: Make it possible to rename documents by clicking on title --- css/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'css') diff --git a/css/style.css b/css/style.css index 5146f731..9f376c5d 100755 --- a/css/style.css +++ b/css/style.css @@ -280,4 +280,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; +} -- cgit v1.2.3 From fd4f4bf99ac848c2c37d9011c5131a90e758915c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 5 Dec 2013 14:54:47 +0100 Subject: Now using inline input field for rename action Also added validation of file name. --- css/style.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'css') diff --git a/css/style.css b/css/style.css index 9f376c5d..e12d3bde 100755 --- a/css/style.css +++ b/css/style.css @@ -124,6 +124,11 @@ position: relative; /*margin-left:-50%;*/ } +#document-title>input { + margin: 0; + width: 300px; +} + #odf-close{ float: right; } -- cgit v1.2.3 From dac9fdf0b8e54fd0482ed9822e964c264a6421c6 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Thu, 5 Dec 2013 20:55:00 +0300 Subject: More compact input --- css/style.css | 2 ++ 1 file changed, 2 insertions(+) (limited to 'css') diff --git a/css/style.css b/css/style.css index e12d3bde..0be8fcd6 100755 --- a/css/style.css +++ b/css/style.css @@ -125,7 +125,9 @@ /*margin-left:-50%;*/ } #document-title>input { + height:9px; margin: 0; + padding-top:4px; width: 300px; } -- cgit v1.2.3