Fixes as per internal testing

This commit is contained in:
trovier 2023-10-04 16:56:30 +02:00
parent ef3b69d053
commit 752f74c9f8
37 changed files with 248 additions and 145 deletions

View File

@ -0,0 +1,4 @@
<%@ Control Language="C#" %>
<ul class="leftmenu_pdfeditor_toggle_expand_menu leftmenu_basic_operations">
<li><a class="leftmenu_pdfeditor_opencreatenew" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/OpenCreateNew.aspx")%>">Open an existing PDF or create a new document</a></li>
</ul>

View File

@ -6,6 +6,9 @@
<li><a class="leftmenu_pdfeditor_toggle_menu toggler"><asp:Literal runat="server" Text="<%$ Resources:Resource, ProgramInterface %>" /></a>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/SideMenu/features/ONLYOFFICEEditors/PDFEditor/ProgramInterface/PDFProgramInterface.ascx" />
</li>
<li><a class="leftmenu_pdfeditor_toggle_menu toggler"><asp:Literal runat="server" Text="<%$ Resources:Resource, BasicOperations %>" /></a>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/SideMenu/features/ONLYOFFICEEditors/PDFEditor/BasicOperations/PDFBasicOperations.ascx" />
</li>
<li><a class="leftmenu_pdfeditor_toggle_menu toggler"><asp:Literal runat="server" Text="<%$ Resources:Resource, Collaboration %>" /></a>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/SideMenu/features/ONLYOFFICEEditors/PDFEditor/PDFCoediting/PDFCoediting.ascx" />
</li>

View File

@ -3,6 +3,7 @@
<li><a class="leftmenu_pdfeditor_html" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/HTML.aspx")%>">Edit HTML</a></li>
<li><a class="leftmenu_pdfeditor_typograf" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/Typograf.aspx")%>">Correct typography</a></li>
<li><a class="leftmenu_pdfeditor_wordcounter" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/WordCounter.aspx")%>">Count words</a></li>
<li><a class="leftmenu_pdfeditor_thesaurus" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/Thesaurus.aspx")%>">Replace a word by a synonym</a></li>
<li><a class="leftmenu_pdfeditor_translator" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/Translator.aspx")%>">Translate text</a></li>
<li><a class="leftmenu_pdfeditor_speech" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/Speech.aspx")%>">Read the text out loud</a></li>
<li><a class="leftmenu_pdfeditor_speechinput" href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/ONLYOFFICE-PDF-Editor/UsageInstructions/Speechinput.aspx")%>">Type via voice</a></li>

View File

@ -75,6 +75,9 @@
<li><h6><asp:Literal runat="server" Text="<%$ Resources:Resource, ProgramInterface %>" /></h6>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/SideMenu/features/ONLYOFFICEEditors/PDFEditor/ProgramInterface/PDFProgramInterface.ascx" />
</li>
<li><h6><asp:Literal runat="server" Text="<%$ Resources:Resource, BasicOperations %>" /></h6>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/SideMenu/features/ONLYOFFICEEditors/PDFEditor/BasicOperations/PDFBasicOperations.ascx" />
</li>
<li><h6><asp:Literal runat="server" Text="<%$ Resources:Resource, Collaboration %>" /></h6>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/SideMenu/features/ONLYOFFICEEditors/PDFEditor/PDFCoediting/PDFCoediting.ascx" />
</li>

View File

@ -0,0 +1,33 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Masters/Features/PDFEditor.master" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void OnInit(EventArgs e)
{
PageTitle = PageCaption = DocHelpParcing.Title;
MetaKeyWords = "";
MetaDescription = "";
}
</script>
<asp:Content ID="content3" ContentPlaceHolderID="breadstop" runat="server">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/VariousControls/TopControls/PDFEditorTop/PDFEditorTop.ascx" />
</asp:Content>
<asp:Content ID="Content1" ContentPlaceHolderID="guidescontent" runat="Server">
<div class="keyword_block">
<ul>
<li>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Tags/plugins/plugins.ascx" />
</li>
<li>
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Tags/edit-documents/edit-documents.ascx" />
</li>
</ul>
</div>
</asp:Content>
<asp:Content ID="content2" ContentPlaceHolderID="leftmenupage" runat="server">
<div class="teamlabeditorspage pdfeditor pdfeditor_ui thesaurus pdf_editor_plugins">
</asp:Content>

View File

@ -11,6 +11,7 @@
{"src": "UsageInstructions/HTML.htm", "name": "Edit HTML", "headername": "Plugins"},
{ "src": "UsageInstructions/Typograf.htm", "name": "Correct typography" },
{"src": "UsageInstructions/WordCounter.htm", "name": "Count words"},
{ "src": "UsageInstructions/Thesaurus.htm", "name": "Replace word by a synonym" },
{ "src": "UsageInstructions/Translator.htm", "name": "Translate text" },
{"src": "UsageInstructions/Speech.htm", "name": "Read the text out loud" },
{"src": "UsageInstructions/Speechinput.htm", "name": "Type via voice" },

View File

@ -20,22 +20,20 @@
<h3>Keyboard Shortcuts for Key Tips</h3>
<p>Use <b>keyboard shortcuts </b> for a faster and easier access to the features of the <!--<a href="https://www.onlyoffice.com/en/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> without using a mouse.</p>
<ol>
<li>Press <b>Alt</b> key to turn on all key tips for the editor header, the top toolbar, the left sidebar and the status bar.</li>
<li>Press <b>Alt</b> (<b>Option</b> for macOS) key to turn on all key tips for the editor header, the top toolbar, the left sidebar and the status bar.</li>
<li>
Press the letter that corresponds to the item you wish to use. The additional key tips may appear depending on the key you press. The first key tips hide when additional key tips appear.
<p>For example, to access the <b>Comment</b> tab, press <b>Alt</b> to see all primary key tips.</p>
<p>For example, to access the <b>Comment</b> tab, press <b>Alt</b> (<b>Option</b> for macOS) to see all primary key tips.</p>
<p><img alt="Primary Key Tips" src="../images/keytips1.png" /></p>
<p>Press letter <b>C</b> to access the <b>Comment</b> tab, and to see all the available shortcuts for this tab.</p>
<p><img alt="Secondary Key Tips" src="../images/keytips2.png" /></p>
<p>Then press the letter that corresponds to the item you wish to configure.</p>
</li>
<li>Press <b>Alt</b> to hide all key tips, or press <b>Escape</b> to go back to the previous group of key tips.</li>
<li>Press <b>Alt</b> (<b>Option</b> for macOS) to hide all key tips, or press <b>Escape</b> to go back to the previous group of key tips.</li>
</ol>
<p>Find the most common keyboard shortcuts in the list below:</p>
<ul class="shortcut_variants">
<li class="shortcut_toggle pc_option left_option">Windows/Linux</li>
<!--
-->
<li class="shortcut_toggle mac_option right_option">Mac OS</li>
</ul>
<table class="keyboard_shortcuts_table">

View File

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Search and Replace Function</title>
<title>Search Function</title>
<meta charset="utf-8" />
<meta name="description" content="The description of the PDF search and replace function in PDF Editor" />
<link type="text/css" rel="stylesheet" href="../../../../../../common/main/resources/help/editor.css" />
@ -14,7 +14,7 @@
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Search and Replace Function</h1>
<h1>Search Function</h1>
<p>To search for the required characters, words or phrases used in the currently edited PDF, click the <span class="icon icon-searchicon"></span> icon situated on the left sidebar of the <!--<a href="https://www.onlyoffice.com/en/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>-->, the <span class="icon icon-search_icon_header"></span> icon situated in the upper right corner, or use the <em>Ctrl+F</em> (<em>Command+F</em> for MacOS) key combination to open the small Find panel or the <em>Ctrl+H</em> key combination to open the full Find panel.</p>
<p>A small <b>Find</b> panel will open in the upper right corner of the working area. The panel includes the text field for typing in a search query, the number of search results, and controls for moving to the previous or next result, and closing the bar.</p>
<p><img alt="Find small panel" src="../../../../../../common/main/resources/help/en/images/find_small.png" /></p>

View File

@ -17,13 +17,13 @@
<h1>Comment tab</h1>
<p>The <b>Comment</b> tab in the <!--<a target="_blank" href="https://www.onlyoffice.com/presentation-editor.aspx" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> allows collaborating on a PDF using comments and various markup tools.</p>
<div class="onlineDocumentFeatures">
<p>The corresponding window of the <!--Online--> PDF Editor:</p>
<p>The corresponding window of the Online PDF Editor:</p>
<p><img alt="Comment tab" src="../images/interface/commenttab.png" /></p>
</div>
<!--<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop Presentation Editor:</p>
<p><img alt="File tab" src="../images/interface/desktop_filetab.png" /></p>
</div>-->
<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop PDF Editor:</p>
<p><img alt="Comment tab" src="../images/interface/desktop_commenttab.png" /></p>
</div>
<p>Using this tab, you can:</p>
<ul>
<li>highlight the selected text,</li>

View File

@ -17,24 +17,24 @@
<h1>File tab</h1>
<p>The <b>File</b> tab in the <!--<a target="_blank" href="https://www.onlyoffice.com/presentation-editor.aspx" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> allows performing some basic file operations.</p>
<div class="onlineDocumentFeatures">
<p>The corresponding window of the <!--Online--> PDF Editor:</p>
<p>The corresponding window of the Online PDF Editor:</p>
<p><img alt="File tab" src="../images/interface/filetab.png" /></p>
</div>
<!--<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop Presentation Editor:</p>
<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop PDF Editor:</p>
<p><img alt="File tab" src="../images/interface/desktop_filetab.png" /></p>
</div>-->
</div>
<p>Using this tab, you can:</p>
<ul>
<li>
<span class="onlineDocumentFeatures"><!--in the <em>online version</em>,--> <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">save</a> the current file<!-- (in case the <b>Autosave</b> option is disabled)-->, <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">download as</a> (save the document in the selected format to the hard disk drive of your computer), <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">save copy as</a> (save a copy of the document in the selected format to the portal documents), <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">print</a> the file or <a href="../UsageInstructions/ViewPDFInfo.htm" onclick="onhyperlinkclick(this)">rename</a> it,</span>
<!--<span class="desktopDocumentFeatures">in the <em>desktop version</em>, <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">save</a> the current file keeping the current format and location using the <b>Save</b> option or save the current file under a different name and change its location or format using the <b>Save as</b> option, <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">print</a> the file.</span>-->
<span class="onlineDocumentFeatures">in the <em>online version</em>, <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">save</a> the current file<!-- (in case the <b>Autosave</b> option is disabled)-->, <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">download as</a> (save the document in the selected format to the hard disk drive of your computer), <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">save copy as</a> (save a copy of the document in the selected format to the portal documents), <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">print</a> the file or <a href="../UsageInstructions/ViewPDFInfo.htm" onclick="onhyperlinkclick(this)">rename</a> it,</span>
<span class="desktopDocumentFeatures">in the <em>desktop version</em>, <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">save</a> the current file keeping the current format and location using the <b>Save</b> option or save the current file under a different name and change its location or format using the <b>Save as</b> option, <a href="../UsageInstructions/SavePrintDownload.htm" onclick="onhyperlinkclick(this)">print</a> the file.</span>
</li>
<li class="onlineDocumentFeatures"><a href="../UsageInstructions/OpenCreateNew.htm" onclick="onhyperlinkclick(this)">create</a> a new .docx file or open a recently edited one<!-- (available in the <em>online version</em> only)-->,</li>
<li class="onlineDocumentFeatures"><a href="../UsageInstructions/OpenCreateNew.htm" onclick="onhyperlinkclick(this)">create</a> a new .docx file or open a recently edited one (available in the <em>online version</em> only),</li>
<li>view <a href="../UsageInstructions/ViewPDFInfo.htm" onclick="onhyperlinkclick(this)">general information</a> about the PDF,</li>
<li class="onlineDocumentFeatures">manage <a href="../UsageInstructions/ViewPDFInfo.htm" onclick="onhyperlinkclick(this)">access rights</a><!-- (available in the <em>online version</em> only)-->,</li>
<li class="onlineDocumentFeatures">manage <a href="../UsageInstructions/ViewPDFInfo.htm" onclick="onhyperlinkclick(this)">access rights</a> (available in the <em>online version</em> only),</li>
<li>access the <a href="../HelpfulHints/AdvancedSettings.htm" onclick="onhyperlinkclick(this)">Advanced Settings</a> of the editor.</li>
<!--<li><span class="desktopDocumentFeatures">in the <em>desktop version</em>, open the folder, where the file is stored, in the <b>File Explorer</b> window.</span><span class="onlineDocumentFeatures"> In the <em>online version</em>, open the folder of the <b>Documents</b> module, where the file is stored, in a new browser tab.</span></li>-->
<li><span class="desktopDocumentFeatures">in the <em>desktop version</em>, open the folder, where the file is stored, in the <b>File Explorer</b> window.</span><span class="onlineDocumentFeatures"> In the <em>online version</em>, open the folder of the <b>Documents</b> module, where the file is stored, in a new browser tab.</span></li>
</ul>
</div>
</body>

View File

@ -17,13 +17,13 @@
<h1>Home tab</h1>
<p>The <b>Home</b> tab in the <!--<a target="_blank" href="https://www.onlyoffice.com/presentation-editor.aspx" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> opens by default when you open a PDF. It allows you to navigate the PDF, select text or objects, rotate pages, adjust zoom, fit to page or width.</p>
<div class="onlineDocumentFeatures">
<p>The corresponding window of the <!--Online--> PDF Editor:</p>
<p>The corresponding window of the Online PDF Editor:</p>
<p><img alt="Home tab" src="../images/interface/hometab.png" /></p>
</div>
<!--<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop Presentation Editor:</p>
<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop PDF Editor:</p>
<p><img alt="Home tab" src="../images/interface/desktop_hometab.png" /></p>
</div>-->
</div>
<p>Using this tab, you can:</p>
<ul>
<li><a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">navigate</a> the file,</li>

View File

@ -17,18 +17,18 @@
<h1>Plugins tab</h1>
<p>The <b>Plugins</b> tab in the <!--<a target="_blank" href="https://www.onlyoffice.com/presentation-editor.aspx" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> makes it possible to access advanced editing features using the available third-party components. <!--Here you can also use macros to simplify routine operations.--></p>
<div class="onlineDocumentFeatures">
<p>The corresponding window of the <!--Online--> PDF Editor:</p>
<p>The corresponding window of the Online PDF Editor:</p>
<p><img alt="Plugins tab" src="../images/interface/pluginstab.png" /></p>
</div>
<!--<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop Presentation Editor:</p>
<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop PDF Editor:</p>
<p><img alt="Plugins tab" src="../images/interface/desktop_pluginstab.png" /></p>
</div>-->
</div>
<!--<p class="desktopDocumentFeatures">The <b>Plugin Manager</b> button allows you to open the window where you can view and manage all installed plugins and add your own ones.</p>
<p>The <b>Macros</b> button allows to open the window where you can create your own macros and run them. To learn more about macros, please refer to our <a target="_blank" href="https://api.onlyoffice.com/plugin/macros" onclick="onhyperlinkclick(this)">API Documentation</a>.</p>-->
<p>Currently, the following plugins are available:</p>
<ul>
<!--<li class="desktopDocumentFeatures"><b>Send</b> allows sending the presentation via email using the default desktop mail client (available in the <em>desktop version</em> only),</li>-->
<li class="desktopDocumentFeatures"><b>Send</b> allows sending the presentation via email using the default desktop mail client (available in the <em>desktop version</em> only),</li>
<li><a href="../UsageInstructions/HTML.htm" onclick="onhyperlinkclick(this)"><b>Get and paste html</b></a> allows you to get the selected text as an HTML code.</li>
<li><a href="../UsageInstructions/CommunicationPlugins.htm" onclick="onhyperlinkclick(this)"><b>Telegram</b></a> can be integrated into your working area to continue chatting.</li>
<li><a href="../UsageInstructions/Typograf.htm" onclick="onhyperlinkclick(this)"><b>Typograf</b></a> automatically places non-breaking spaces and removes extra ones, as well as corrects minor typos, inserts correct quotes, replaces hyphens with dashes, etc.</li>

View File

@ -17,23 +17,23 @@
<h1>Introducing the user interface of the PDF Editor</h1>
<p>The <!--<a href="https://www.onlyoffice.com/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> uses a tabbed interface, where editing commands are grouped into tabs by functionality.</p>
<div class="onlineDocumentFeatures">
<p>Main window of the <!--Online--> PDF Editor:</p>
<p>Main window of the Online PDF Editor:</p>
<p><img alt="PDF Editor window" src="../images/interface/editorwindow.png" /></p>
</div>
<!--<div class="desktopDocumentFeatures">
<p>Main window of the Desktop Document Editor:</p>
<p><img alt="Desktop Document Editor window" src="../images/interface/desktop_editorwindow.png" /></p>
</div>-->
<div class="desktopDocumentFeatures">
<p>Main window of the Desktop PDF Editor:</p>
<p><img alt="Desktop PDF Editor window" src="../images/interface/desktop_editorwindow.png" /></p>
</div>
<p>The editor interface consists of the following main elements:</p>
<ol>
<li>
The <b>Editor header</b> displays the ONLYOFFICE logo<!--, <span class="desktopDocumentFeatures">tabs for all opened documents </span>with their names and menu tabs-->.
The <b>Editor header</b> displays the ONLYOFFICE logo, <span class="desktopDocumentFeatures">tabs for all opened documents </span>with their names and menu tabs.
<p>On the left side of the <b>Editor header</b>, the <b>Save</b>, <b>Print file</b>, <b>Undo</b> and <b>Redo</b> buttons are located.</p>
<p><img alt="Icons in the editor header" src="../images/interface/leftpart.png" /></p>
<p>On the right side of the <b>Editor header</b> along with the username, the following icons are displayed:</p>
<ul>
<li class="onlineDocumentFeatures"><div class="icon icon-access_rights"></div> <b>Share</b><!-- (available in the <em>online version</em> only)--> - allows adjusting <a href="../HelpfulHints/CollaborativeEditing.htm" onclick="onhyperlinkclick(this)">access rights</a> for the PDF stored in the cloud.</li>
<li><div class="icon icon-gotodocuments"></div> <b>Open file location</b> - <!--<span class="desktopDocumentFeatures">in the <em>desktop version</em>, it allows opening the folder, where the file is stored, in the <b>File explorer</b> window.</span>--> <span class="onlineDocumentFeatures"> <!--In the <em>online version</em>, it--> allows opening the folder of the <b>Documents</b> module, where the file is stored, in a new browser tab.</span></li>
<li class="onlineDocumentFeatures"><div class="icon icon-access_rights"></div> <b>Share</b> (available in the <em>online version</em> only) - allows adjusting <a href="https://helpcenter.onlyoffice.com/userguides/groups-guides-documents-share-documents.aspx" onclick="onhyperlinkclick(this)">access rights</a> for the PDF stored in the cloud.</li>
<li><div class="icon icon-gotodocuments"></div> <b>Open file location</b> - <span class="desktopDocumentFeatures">in the <em>desktop version</em>, it allows opening the folder, where the file is stored, in the <b>File explorer</b> window.</span> <span class="onlineDocumentFeatures"> In the <em>online version</em>, it allows opening the folder of the <b>Documents</b> module, where the file is stored, in a new browser tab.</span></li>
<li><div class="icon icon-favorites_icon"></div> <b>Mark as favorite</b> - click the star to add a file to favorites to make it easy to find. The added file is just a shortcut, so the file itself remains stored in its original location. Deleting a file from favorites does not remove the file from its original location.</li>
<li><div class="icon icon-search_icon_header"></div> <b>Search</b> - allows searching the PDF for a particular word or symbol, etc.</li>
</ul>
@ -47,14 +47,14 @@
<ul>
<li><div class="icon icon-searchicon"></div> - allows using the <a href="../HelpfulHints/Search.htm" onclick="onhyperlinkclick(this)">Search and Replace</a> tool.</li>
<li><div class="icon icon-commentsicon"></div> - allows opening the <a href="../HelpfulHints/Commenting.htm" onclick="onhyperlinkclick(this)">Comments</a> panel.</li>
<li><div class="icon icon-chaticon"></div> - <!--(available in the <em>online version</em> only)--> allows opening the <a href="../HelpfulHints/CollaborativeEditing.htm#chat" onclick="onhyperlinkclick(this)">Chat</a> panel.</li>
<li><div class="icon icon-chaticon"></div> - (available in the <em>online version</em> only) allows opening the <a href="../HelpfulHints/Communicating.htm" onclick="onhyperlinkclick(this)">Chat</a> panel.</li>
<li><div class="icon icon-navigationicon"></div> - allows opening the <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">Headings</a> panel that displays the list of all headings with corresponding nesting levels.</li>
<li><div class="icon icon-pagethumbnails"></div> - allows for the display of page thumbnails for quick <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">navigation</a>.</li>
<li><div class="icon icon-feedbackicon"></div> - <!--(available in the <em>online version</em> only)--> allows contacting our support team.</li>
<li><div class="icon icon-about"></div> - <!--(available in the <em>online version</em> only)--> allows viewing the information about the program.</li>
<li><div class="icon icon-feedbackicon"></div> - (available in the <em>online version</em> only) allows contacting our support team.</li>
<li><div class="icon icon-about"></div> - (available in the <em>online version</em> only) allows viewing the information about the program.</li>
</ul>
</li>
<li>The <b>Status bar</b> located at the bottom of the editor window indicates the page number<!--and word count-->, as well as displays some notifications (for example, "All changes saved", Connection is lost when there is no connection and the editor is trying to reconnect, etc.). It also allows <a href="../HelpfulHints/SpellChecking.htm" onclick="onhyperlinkclick(this)">setting the text language<!--, enabling spell checking--></a><!--turning on the <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">track changes mode</a>--> and adjusting <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">zoom</a>.</li>
<li>The <b>Status bar</b> located at the bottom of the editor window indicates the page number<!--and word count-->, as well as displays some notifications (for example, "All changes saved", Connection is lost when there is no connection and the editor is trying to reconnect, etc.). It also allows <!--<a href="../HelpfulHints/SpellChecking.htm" onclick="onhyperlinkclick(this)">setting the text language, enabling spell checking</a><!--turning on the <a href="../HelpfulHints/Review.htm" onclick="onhyperlinkclick(this)">track changes mode</a> and -->adjusting <a href="../HelpfulHints/Navigation.htm" onclick="onhyperlinkclick(this)">zoom</a>.</li>
<li><b>Working area</b> allows viewing PDF content, enter and edit data.</li>
<li><b>Scroll bar</b> on the right allows scrolling up and down multipage PDFs.</li>
</ol>

View File

@ -19,13 +19,13 @@
The <b>View</b> tab of the <!--<a href="https://www.onlyoffice.com/presentation-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> allows you to manage how your PDF looks while you are working on it, as well as helps you navigate PDFs easily.
</p>
<div class="onlineDocumentFeatures">
<p>The corresponding window of the <!--Online--> PDF Editor:</p>
<p>The corresponding window of the Online PDF Editor:</p>
<p><img alt="View tab" src="../images/interface/viewtab.png" /></p>
</div>
<!--<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop Presentation Editor:</p>
<p><img alt="Home tab" src="../images/interface/desktop_viewtab.png" /></p>
</div>-->
<div class="desktopDocumentFeatures">
<p>The corresponding window of the Desktop PDF Editor:</p>
<p><img alt="View tab" src="../images/interface/desktop_viewtab.png" /></p>
</div>
<p>View options available on this tab:</p>
<ul>
<li><b>Headings</b> panel displays a list of all headings with corresponding nesting levels. Click the heading to jump directly to a specific page. </li>

View File

@ -15,12 +15,12 @@
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Communicate while editing</h1>
<p>In ONLYOFFICE <!--<a href="https://www.onlyoffice.com/en/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>-->, you can always keep in touch with colleagues and use popular online messengers, such as Telegram.</p>
<div class="note">Telegram plugin is not installed by default. To find information on how to install it, please refer to the corresponding article: <!--<span class="desktopDocumentFeatures"><a target="_blank" href="https://helpcenter.onlyoffice.com/installation/desktop-getting-started.aspx#AddingPlugins_block" onclick="onhyperlinkclick(this)">Adding plugins to the ONLYOFFICE Desktop Editors</a></span>--><span class="onlineDocumentFeatures"> <a target="_blank" href="https://api.onlyoffice.com/plugin/installation/cloud" onclick="onhyperlinkclick(this)">Adding plugins to ONLYOFFICE Cloud</a><!--, or <a target="_blank" href="https://helpcenter.onlyoffice.com/installation/docs-add-plugin.aspx" onclick="onhyperlinkclick(this)">Adding new plugins to server editors</a></span>-->.</div>
<p>In ONLYOFFICE <!--<a href="https://www.onlyoffice.com/en/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>-->, you can always keep in touch with colleagues and use popular online messengers, such as Telegram.</p>
<div class="note">Telegram plugin is not installed by default. To find information on how to install it, please refer to the corresponding article: <span class="desktopDocumentFeatures"><a target="_blank" href="https://helpcenter.onlyoffice.com/installation/desktop-getting-started.aspx#AddingPlugins_block" onclick="onhyperlinkclick(this)">Adding plugins to ONLYOFFICE Desktop Editors</a></span><span class="onlineDocumentFeatures"> <a target="_blank" href="https://api.onlyoffice.com/plugin/installation/cloud" onclick="onhyperlinkclick(this)">Adding plugins to ONLYOFFICE Cloud</a></span><!--, or <a target="_blank" href="https://helpcenter.onlyoffice.com/installation/docs-add-plugin.aspx" onclick="onhyperlinkclick(this)">Adding new plugins to server editors</a></span>-->.</div>
<h2>Telegram</h2>
<p>To start chatting in the Telegram plugin,</p>
<ul>
<li>Switch to the <b>Plugins</b> tab and click <div class = "icon icon-telegram_icon"></div> <b>Telegram</b>,</li>
<li>Switch to the <b>Plugins</b> tab and click <div class="icon icon-telegram_icon"></div> <b>Telegram</b>,</li>
<li>enter your phone number into the corresponding field,</li>
<li>check the <b>Keep me signed in</b> checkbox if you want to save credentials for the current session and click the <b>Next</b> button,</li>
<li>
@ -33,17 +33,18 @@
<li>scan the image to Log in.</li>
</ul>
<p>Now you can use Telegram for instant messaging within the ONLYOFFICE editor's interface.</p>
<img alt="Telegram gif" src="../../images/telegram.gif" />
<p><img alt="Telegram plugin" src="../images/telegram_plugin.png" /></p>
<!--<img alt="Telegram gif" src="../../images/telegram.gif" />-->
<!--<h2>Rainbow</h2>
<p>To start chatting in the Rainbow plugin,</p>
<ol>
<li>Switch to the <b>Plugins</b> tab and click <div class = "icon icon-rainbow_icon"></div> <b>Rainbow</b>,</li>
<li>register a new account by clicking the <b>Sign up</b> button, or log into an already created one. To do this, enter your email into the corresponding field and click <b>Continue</b>,</li>
<li>then enter your account password,</li>
<li>check the <b>Keep my session alive</b> checkbox if you want to save credentials for the current session, and click the <b>Connect</b> button.</li>
</ol>
<p>Now you're all set and can simultaneously chat in Rainbow and work within ONLYOFFICE editors interface.</p>
<img alt="Rainbow gif" src="../../images/rainbow.gif" />-->
<p>To start chatting in the Rainbow plugin,</p>
<ol>
<li>Switch to the <b>Plugins</b> tab and click <div class = "icon icon-rainbow_icon"></div> <b>Rainbow</b>,</li>
<li>register a new account by clicking the <b>Sign up</b> button, or log into an already created one. To do this, enter your email into the corresponding field and click <b>Continue</b>,</li>
<li>then enter your account password,</li>
<li>check the <b>Keep my session alive</b> checkbox if you want to save credentials for the current session, and click the <b>Connect</b> button.</li>
</ol>
<p>Now you're all set and can simultaneously chat in Rainbow and work within ONLYOFFICE editors interface.</p>
<img alt="Rainbow gif" src="../../images/rainbow.gif" />-->
</div>
</body>
</html>

View File

@ -23,7 +23,8 @@
<li>Click <b>Paste into the document</b> to insert the text with its HTML code edited at the current cursor position in your document.</li>
</ol>
<p>You can also write your own HTML code (without selecting any document content) and then paste it into your document.</p>
<img class="gif" alt="HTML plugin gif" src="../../images/html_plugin.gif" width="600" />
<p><img alt="HTML plugin" src="../images/html_plugin.png" /></p>
<!--<img class="gif" alt="HTML plugin gif" src="../../images/html_plugin.gif" width="600" />-->
<p>For more information on the HTML plugin and its installation, please see the <a href="https://www.onlyoffice.com/en/app-directory/html">plugins page</a> on the AppDirectory.</p>
</div>
</body>

View File

@ -18,7 +18,7 @@
<p>In the <!--<a href="https://www.onlyoffice.com/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>-->, you can open a recently edited PDF, rename it, create a new document, or return to the list of existing files.</p>
<h3>To create a new document</h3>
<div class="onlineDocumentFeatures">
<!--<p>In the <em>online editor</em></p>-->
<p>In the <em>online editor</em></p>
<ol>
<li>click the <b>File</b> tab on the top toolbar,</li>
<li>select the <b>Create New</b> option. <!--Here you can choose whether to create a <b>blank</b> text document or use one of the available document <b>templates</b>: contract, letter, list, or plan.--></li>
@ -33,7 +33,7 @@
</ol>
</div>-->
<!--<div class="desktopDocumentFeatures">
<div class="desktopDocumentFeatures">
<h3>To open an existing document</h3>
<p>In the <em>desktop editor</em></p>
<ol>
@ -42,28 +42,28 @@
</ol>
<p>You can also right-click the required document in the file manager window, select the <b>Open with</b> option and choose the necessary application from the menu. If text documents are associated with the application you need, you can also open them by double-clicking the file name in the file explorer window.</p>
<p>All the directories that you have navigated through using the desktop editor will be displayed in the <b>Recent folders</b> list so that you can quickly access them afterwards. Click the required folder to select one of the files stored there.</p>
</div>-->
</div>
<h3>To open a recently edited PDF</h3>
<div class="onlineDocumentFeatures">
<!--<p>In the <em>online editor</em></p>-->
<p>In the <em>online editor</em></p>
<ol>
<li>click the <b>File</b> tab on the top toolbar,</li>
<li>select the <b>Open Recent</b> option,</li>
<li>choose the PDF you need from the list of recently edited files.</li>
</ol>
</div>
<!--<div class="desktopDocumentFeatures">
<div class="desktopDocumentFeatures">
<p>In the <em>desktop editor</em></p>
<ol>
<li>in the main program window, select the <b>Recent files</b> menu item on the left sidebar,</li>
<li>choose the document you need from the list of recently edited documents.</li>
</ol>
</div>-->
</div>
<h3>To rename an opened PDF</h3>
<div class="onlineDocumentFeatures">
<!--<p>In the <em>online editor</em></p>-->
<p>In the <em>online editor</em></p>
<ol>
<li>click the file name at the top of the page,</li>
<li>enter a new file name,</li>
@ -71,7 +71,7 @@
</ol>
</div>
<p>To open the folder, where the file is stored, <span class="onlineDocumentFeatures"> in a new browser tab in the <em>online editor</em></span> <!--<span class="desktopDocumentFeatures">in the file explorer window in the <em>desktop editor</em>,</span>--> click the <span class="icon icon-gotodocuments"></span> <b>Open file location</b> icon on the right side of the editor header. Alternatively, you can switch to the <b>File</b> tab on the top toolbar and select the <b>Open file location</b> option.</p>
<p>To open the folder, where the file is stored, <span class="onlineDocumentFeatures"> in a new browser tab in the <em>online editor</em></span> <span class="desktopDocumentFeatures">in the file explorer window in the <em>desktop editor</em>,</span> click the <span class="icon icon-gotodocuments"></span> <b>Open file location</b> icon on the right side of the editor header. Alternatively, you can switch to the <b>File</b> tab on the top toolbar and select the <b>Open file location</b> option.</p>
</div>
</body>
</html>

View File

@ -34,18 +34,18 @@
</div>-->
<div class="onlineDocumentFeatures">
<h3>Downloading</h3>
<p><!--In the <em>online version</em>,-->You can download the resulting PDF onto your computer hard disk drive,</p>
<p>In the <em>online version</em>, you can download the resulting PDF onto your computer hard disk drive,</p>
<ol>
<li>click the <b>File</b> tab of the top toolbar,</li>
<li>select the <b>Download as</b> option,</li>
<li>choose one of the available formats depending on your needs: DOCX, PDF, ODT, DOCXF, OFORM, DOTX, <!--PDF/A,--> OTT, RTF, TXT, FB2, EPUB, HTML, JPG, PNG.</li>
<li>choose one of the available formats depending on your needs: DOCX, PDF, ODT, <!--DOCXF, OFORM,--> DOTX, <!--PDF/A,--> OTT, RTF, TXT, FB2, EPUB, HTML, JPG, PNG.</li>
</ol>
<h3>Saving a copy</h3>
<p><!--In the <em>online version</em>,-->You can save a copy of the file on your portal,</p>
<p>In the <em>online version</em>, you can save a copy of the file on your portal,</p>
<ol>
<li>click the <b>File</b> tab of the top toolbar,</li>
<li>select the <b>Save Copy as</b> option,</li>
<li>choose one of the available formats depending on your needs: DOCX, PDF, ODT, DOCXF, OFORM, DOTX, <!--PDF/A,--> OTT, RTF, TXT, FB2, EPUB, HTML, JPG, PNG.</li>
<li>choose one of the available formats depending on your needs: DOCX, PDF, ODT, <!--DOCXF, OFORM,--> DOTX, <!--PDF/A,--> OTT, RTF, TXT, FB2, EPUB, HTML, JPG, PNG.</li>
<li>select the location of the file on the portal and press <b>Save</b>.</li>
</ol>
</div>
@ -75,7 +75,7 @@
<li><b>Options</b> - check the <b>Print headers and footers</b> checkbox to have them printed, or uncheck this box to have no headers and footers printed.</li>
<li><b>Print using the system dialogue</b> - click this caption to open the system dialogue to configure the printing process.</li>
</ul>
<!--<span class="desktopDocumentFeatures">In the <em>desktop version</em>, the available printing settings are <b>Print range</b>, number of <b>Pages</b>, <b>Copies</b>, <b>Print sides</b>, <b>Page size</b>, <b>Page orientation</b>, and <b>Margins</b>. You can also <b>print the file to PDF</b> or use the <b>Quick print</b> button in the top toolbar to print the file on the last selected or default printer.</span>-->
<span class="desktopDocumentFeatures">In the <em>desktop version</em>, the available printing settings are <b>Print range</b>, number of <b>Pages</b>, <b>Copies</b>, <b>Print sides</b>, <b>Page size</b>, <b>Page orientation</b>, and <b>Margins</b>. You can also <b>print the file to PDF</b> or use the <b>Quick print</b> button in the top toolbar to print the file on the last selected or default printer.</span>
</div>
</body>
</html>

View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>Replace a word by a synonym</title>
<meta charset="utf-8" />
<meta name="description" content="The description of Thesaurus plugin for ONLYOFFICE editors, which helps you find synonyms" />
<link type="text/css" rel="stylesheet" href="../../../../../../common/main/resources/help/editor.css" />
<link type = "text/css" rel = "stylesheet" href = "../../images/sprite.css" />
<script type="text/javascript" src="../callback.js"></script>
<script type="text/javascript" src="../search/js/page-search.js"></script>
</head>
<body>
<div class="mainpart">
<div class="search-field">
<input id="search" class="searchBar" placeholder="Search" type="text" onkeypress="doSearch(event)">
</div>
<h1>Replace a word by a synonym</h1>
<p>
If you are using the same word multiple times, or a word is just not quite the word you are looking for, ONLYOFFICE <!--<a href="https://www.onlyoffice.com/en/document-editor.aspx" target="_blank" onclick="onhyperlinkclick(this)">--><b>PDF Editor</b><!--</a>--> lets you look up synonyms.
It will show you the antonyms too.
</p>
<ol>
<li>Select the word in your document.</li>
<li>Switch to the <b>Plugins</b> tab and choose <div class="icon icon-thesaurus_icon"></div> <b>Thesaurus</b>.</li>
<li>The synonyms and antonyms will show up in the left sidebar.</li>
<li>Click a word to replace the word in your document.</li>
</ol>
<p><img alt="Thesaurus plugin" src="../images/thesaurus_plugin.png" /></p>
<!--<img class="gif" alt="Thesaurus plugin gif" src="../../images/thesaurus_plugin.gif" width="600" />-->
</div>
</body>
</html>

View File

@ -19,7 +19,7 @@
<h3>General Information</h3>
<p>The PDF information includes a number of the file properties that describe the PDF. Some of these properties are updated automatically, and some of them can be edited.</p>
<ul>
<li class ="onlineDocumentFeatures"><b>Location</b> - the folder in the <b>Documents</b> module where the file is stored. <b>Owner</b> - the name of the user who created the file. <b>Uploaded</b> - the date and time when the file was created. <!--These properties are available in the <em>online version</em> only.--></li>
<li class ="onlineDocumentFeatures"><b>Location</b> - the folder in the <b>Documents</b> module where the file is stored. <b>Owner</b> - the name of the user who created the file. <b>Uploaded</b> - the date and time when the file was created. These properties are available in the <em>online version</em> only.</li>
<li><b>Statistics</b> - the number of pages, paragraphs, words, characters, characters with spaces, and page size.</li>
<li><b>Last Modified</b> - the date and time when the file was last modified.</li>
<li><b>Application</b> and <b>PDF Producer</b> - the application the PDF has been created with.</li>

View File

@ -16,18 +16,20 @@
</div>
<h1>Count words</h1>
<p>To know the exact number of words and symbols both with and without spaces in your document, as well as the number of paragraphs altogether, use the Word Counter plugin.</p>
<ol>
<ol>
<li>Open the <b>Plugins</b> tab and click <b>Count words and characters</b>.</li>
<li>Select the text.</li>
</ol>
<div class="note">Please note that the following elements are not included in the word count:
<ul>
<li>footnote/endnote symbols,</li>
<li>numbers from numbered lists,</li>
<li>page numbers.</li>
</ul>
<div class="note">
Please note that the following elements are not included in the word count:
<ul>
<li>footnote/endnote symbols,</li>
<li>numbers from numbered lists,</li>
<li>page numbers.</li>
</ul>
</div>
<img class="gif" alt="Word counter plugin gif" src="../../images/wordcounter_plugin.gif" width="600" />
<p><img alt="Word counter" src="../images/wordcounter_plugin.png" /></p>
<!--<img class="gif" alt="Word counter plugin gif" src="../../images/wordcounter_plugin.gif" width="600" />-->
<p>For more information on the Word Counter plugin and its installation, please see the <a href="https://www.onlyoffice.com/en/app-directory/word-counter">plugins page</a> on the AppDirectory.</p>
</div>
</body>

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -42,8 +42,14 @@
height: 24px;
}
.icon-favorites_icon {
.icon-thesaurus_icon {
background-position: -56px 0px;
width: 28px;
height: 22px;
}
.icon-favorites_icon {
background-position: -56px -22px;
width: 20px;
height: 20px;
}
@ -61,19 +67,19 @@
}
.icon-removecomment_toptoolbar {
background-position: -56px -20px;
background-position: -53px -54px;
width: 15px;
height: 19px;
}
.icon-search_advanced {
background-position: -53px -54px;
background-position: -84px 0px;
width: 18px;
height: 18px;
}
.icon-search_icon_header {
background-position: -76px 0px;
background-position: -84px -18px;
width: 18px;
height: 18px;
}
@ -97,19 +103,19 @@
}
.icon-handtool {
background-position: -76px -18px;
background-position: -84px -36px;
width: 13px;
height: 16px;
}
.icon-pagethumbnails {
background-position: -76px -34px;
background-position: -84px -52px;
width: 12px;
height: 16px;
}
.icon-selectiontool {
background-position: -76px -50px;
background-position: -68px -54px;
width: 10px;
height: 16px;
}
@ -121,145 +127,151 @@
}
.icon-chaticon {
background-position: -56px -39px;
background-position: -83px -73px;
width: 18px;
height: 15px;
}
.icon-print {
background-position: -94px 0px;
background-position: -102px 0px;
width: 17px;
height: 15px;
}
.icon-about {
background-position: -94px -15px;
background-position: -102px -15px;
width: 15px;
height: 15px;
}
.icon-fitpage {
background-position: -94px -30px;
background-position: -102px -30px;
width: 13px;
height: 15px;
}
.icon-pagenumber {
background-position: 0px -90px;
width: 65px;
height: 14px;
}
.icon-commentsicon {
background-position: -94px -45px;
background-position: -102px -45px;
width: 14px;
height: 14px;
}
.icon-save {
background-position: -94px -59px;
background-position: -102px -59px;
width: 14px;
height: 14px;
}
.icon-searchicon {
background-position: -94px -73px;
background-position: -102px -73px;
width: 14px;
height: 14px;
}
.icon-firstpage {
background-position: -83px -73px;
background-position: -65px -90px;
width: 11px;
height: 14px;
}
.icon-lastpage {
background-position: 0px -90px;
background-position: -76px -90px;
width: 11px;
height: 14px;
}
.icon-nextpage {
background-position: -11px -90px;
background-position: -87px -90px;
width: 9px;
height: 14px;
}
.icon-previouspage {
background-position: -20px -90px;
background-position: -96px -90px;
width: 9px;
height: 14px;
}
.icon-feedbackicon {
background-position: -29px -90px;
background-position: 0px -104px;
width: 15px;
height: 13px;
}
.icon-copy {
background-position: -44px -90px;
background-position: -105px -90px;
width: 14px;
height: 13px;
}
.icon-paste {
background-position: -58px -90px;
background-position: -15px -104px;
width: 14px;
height: 13px;
}
.icon-selectall {
background-position: -72px -90px;
background-position: -29px -104px;
width: 14px;
height: 13px;
}
.icon-zoomin {
background-position: -86px -90px;
background-position: -43px -104px;
width: 13px;
height: 13px;
}
.icon-editcommenticon {
background-position: -99px -90px;
background-position: -56px -104px;
width: 12px;
height: 13px;
}
.icon-deletecommenticon {
background-position: -111px 0px;
background-position: -56px -42px;
width: 11px;
height: 12px;
}
.icon-fitwidth {
background-position: 0px -104px;
background-position: -67px -42px;
width: 16px;
height: 11px;
}
.icon-resolvedicon {
background-position: -16px -104px;
background-position: -68px -104px;
width: 12px;
height: 11px;
}
.icon-zoomout {
background-position: -111px -12px;
background-position: -80px -104px;
width: 10px;
height: 11px;
}
.icon-navigationicon {
background-position: -28px -104px;
background-position: -90px -104px;
width: 13px;
height: 10px;
}
.icon-searchdownbutton {
background-position: -41px -104px;
background-position: -103px -104px;
width: 14px;
height: 8px;
}
.icon-searchupbutton {
background-position: -55px -104px;
background-position: -119px 0px;
width: 14px;
height: 8px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 KiB

View File

@ -15378,8 +15378,14 @@ input[id^="expanded"]:not(:checked) + label + ul.collapsible {
height: 24px;
}
.icon-favorites_icon {
.icon-thesaurus_icon {
background-position: -56px 0px;
width: 28px;
height: 22px;
}
.icon-favorites_icon {
background-position: -56px -22px;
width: 20px;
height: 20px;
}
@ -15397,19 +15403,19 @@ input[id^="expanded"]:not(:checked) + label + ul.collapsible {
}
.icon-removecomment_toptoolbar {
background-position: -56px -20px;
background-position: -53px -54px;
width: 15px;
height: 19px;
}
.icon-search_advanced {
background-position: -53px -54px;
background-position: -84px 0px;
width: 18px;
height: 18px;
}
.icon-search_icon_header {
background-position: -76px 0px;
background-position: -84px -18px;
width: 18px;
height: 18px;
}
@ -15433,19 +15439,19 @@ input[id^="expanded"]:not(:checked) + label + ul.collapsible {
}
.icon-handtool {
background-position: -76px -18px;
background-position: -84px -36px;
width: 13px;
height: 16px;
}
.icon-pagethumbnails {
background-position: -76px -34px;
background-position: -84px -52px;
width: 12px;
height: 16px;
}
.icon-selectiontool {
background-position: -76px -50px;
background-position: -68px -54px;
width: 10px;
height: 16px;
}
@ -15457,145 +15463,151 @@ input[id^="expanded"]:not(:checked) + label + ul.collapsible {
}
.icon-chaticon {
background-position: -56px -39px;
background-position: -83px -73px;
width: 18px;
height: 15px;
}
.icon-print {
background-position: -94px 0px;
background-position: -102px 0px;
width: 17px;
height: 15px;
}
.icon-about {
background-position: -94px -15px;
background-position: -102px -15px;
width: 15px;
height: 15px;
}
.icon-fitpage {
background-position: -94px -30px;
background-position: -102px -30px;
width: 13px;
height: 15px;
}
.icon-pagenumber {
background-position: 0px -90px;
width: 65px;
height: 14px;
}
.icon-commentsicon {
background-position: -94px -45px;
background-position: -102px -45px;
width: 14px;
height: 14px;
}
.icon-save {
background-position: -94px -59px;
background-position: -102px -59px;
width: 14px;
height: 14px;
}
.icon-searchicon {
background-position: -94px -73px;
background-position: -102px -73px;
width: 14px;
height: 14px;
}
.icon-firstpage {
background-position: -83px -73px;
background-position: -65px -90px;
width: 11px;
height: 14px;
}
.icon-lastpage {
background-position: 0px -90px;
background-position: -76px -90px;
width: 11px;
height: 14px;
}
.icon-nextpage {
background-position: -11px -90px;
background-position: -87px -90px;
width: 9px;
height: 14px;
}
.icon-previouspage {
background-position: -20px -90px;
background-position: -96px -90px;
width: 9px;
height: 14px;
}
.icon-feedbackicon {
background-position: -29px -90px;
background-position: 0px -104px;
width: 15px;
height: 13px;
}
.icon-copy {
background-position: -44px -90px;
background-position: -105px -90px;
width: 14px;
height: 13px;
}
.icon-paste {
background-position: -58px -90px;
background-position: -15px -104px;
width: 14px;
height: 13px;
}
.icon-selectall {
background-position: -72px -90px;
background-position: -29px -104px;
width: 14px;
height: 13px;
}
.icon-zoomin {
background-position: -86px -90px;
background-position: -43px -104px;
width: 13px;
height: 13px;
}
.icon-editcommenticon {
background-position: -99px -90px;
background-position: -56px -104px;
width: 12px;
height: 13px;
}
.icon-deletecommenticon {
background-position: -111px 0px;
background-position: -56px -42px;
width: 11px;
height: 12px;
}
.icon-fitwidth {
background-position: 0px -104px;
background-position: -67px -42px;
width: 16px;
height: 11px;
}
.icon-resolvedicon {
background-position: -16px -104px;
background-position: -68px -104px;
width: 12px;
height: 11px;
}
.icon-zoomout {
background-position: -111px -12px;
background-position: -80px -104px;
width: 10px;
height: 11px;
}
.icon-navigationicon {
background-position: -28px -104px;
background-position: -90px -104px;
width: 13px;
height: 10px;
}
.icon-searchdownbutton {
background-position: -41px -104px;
background-position: -103px -104px;
width: 14px;
height: 8px;
}
.icon-searchupbutton {
background-position: -55px -104px;
background-position: -119px 0px;
width: 14px;
height: 8px;
}