diff --git a/css/style.css b/css/style.css index 8a67773f..1792e896 100755 --- a/css/style.css +++ b/css/style.css @@ -7,6 +7,10 @@ } /* end IE 8 fixes */ +#editor { + box-shadow: none !important; +} + #editor ::-webkit-scrollbar-thumb { background-color: #fff; } @@ -122,11 +126,11 @@ #odf-toolbar #dropdown{ right: auto; - top: 66px; + top: 83px; } #body-user #document-title #header{ - height: 32px; + height: 45px; } #document-title{ @@ -140,43 +144,49 @@ } #document-title div.logo-wide{ - float:left; - height: 24px; - width: 110px; - margin: 3px; - background-size:110px 24px; + float: left; + margin: 5px; z-index: 110; } #document-title div{ position: relative; } -#document-title #header input { - height:14px; - margin: 0; - padding:3px 6px; +#document-title .filename { + margin-top: 8px !important; width: 300px; - font-size: 12px; +} +#document-title-container { + padding-top: 7px; + font-weight: normal; } #odf-close{ - margin-top:0; + margin-top: 0; float: right; } +#odf-close.icon-close { + height: 29px; + width: 29px; +} #odf-invite{ - margin-top:0; + margin-top: 0; + margin-left: 3px; float: left; + background-position: 5px center; + padding-left: 24px; } #mainContainer{ - position:absolute; - z-index:500; + position: absolute; + z-index: 500; + background-color: #ddd !important; } #documents-overlay, #documents-overlay-below{ position: fixed; - top: 32px; + top: 45px; left: 0; width: 100%; height: 100%; @@ -187,8 +197,8 @@ } #documents-overlay-below{ - right:72px; - top:65px; + right: 72px; + top: 83px; filter:alpha(opacity=100); opacity: 1; background:#fff; @@ -240,16 +250,20 @@ width: 70px;padding:5px; } -#members{ - padding-top: 69px !important; +#members { + padding-top: 86px !important; + background-color: #ddd !important; } -.memberListButton span{ +.memberListButton { + background-color: transparent !important; + box-shadow: none !important; + border: none !important; +} + +.memberListButton span { display: block; - box-shadow: 0px 0px 5px rgb(90, 90, 90) inset; - background-color: rgb(200, 200, 200); - border-radius: 5px; - border: 2px solid; + border-radius: 3px; display: block; margin: auto; } @@ -262,10 +276,19 @@ width:46px; } +#memberList .memberListLabel { + color: #555 !important; + border-radius: 3px !important; + padding: 0 !important; + font-size: 10px !important; +} + #toolbar { - top:30px !important; + top: 45px !important; border-bottom: none !important; padding: 5px 0 0 !important; + box-shadow: none !important; + background-color: rgba(255,255,255,.95); } #toolbar > .dijit{ @@ -276,7 +299,11 @@ } #container { - top: 38px !important; + top: 83px !important; +} + +#canvas > div { + box-shadow: none !important; } cursor > div { diff --git a/js/documents.js b/js/documents.js index fba8023b..8485574b 100644 --- a/js/documents.js +++ b/js/documents.js @@ -118,7 +118,7 @@ $.widget('oc.documentGrid', { if (!hasDocuments){ $(this.options.context).before('
' - + t('documents', 'No documents are found. Please upload or create a document!') + + t('documents', 'No documents were found. Upload or create a document to get started!') + '
' ); } else { @@ -152,12 +152,10 @@ $.widget('oc.documentToolbar', { '' + '' + - ' ' + - ' ' + + ' ' + ' ' + @@ -380,6 +378,7 @@ var documentsMain = { ); if (documentsMain.isGuest){ $('#odf-close').text(t('documents', 'Save') ); + $('#odf-close').removeClass('icon-close'); } var serverFactory = new ServerFactory(); documentsMain.esId = response.es_id;