Merge branch 'develop' into feature/submit-forms

This commit is contained in:
Julia Radzhabova 2021-02-08 13:51:29 +03:00
commit a7be7f4d32
245 changed files with 2728 additions and 2243 deletions

View file

@ -49,7 +49,8 @@
fillForms: <can edit forms in view mode> // default = edit || review, fillForms: <can edit forms in view mode> // default = edit || review,
copy: <can copy data> // default = true, copy: <can copy data> // default = true,
editCommentAuthorOnly: <can edit your own comments only> // default = false editCommentAuthorOnly: <can edit your own comments only> // default = false
deleteCommentAuthorOnly: <can delete your own comments only> // default = false deleteCommentAuthorOnly: <can delete your own comments only> // default = false,
reviewGroup: ["Group1", ""] // current user can accept/reject review changes made by users from Group1 and users without a group. [] - use groups, but can't change any group's changes
} }
}, },
editorConfig: { editorConfig: {
@ -877,6 +878,9 @@
if (config.parentOrigin) if (config.parentOrigin)
params += "&parentOrigin=" + config.parentOrigin; params += "&parentOrigin=" + config.parentOrigin;
if (config.editorConfig && config.editorConfig.customization && config.editorConfig.customization.uiTheme )
params += "&uitheme=" + config.editorConfig.customization.uiTheme;
return params; return params;
} }

View file

@ -211,7 +211,7 @@ define([
'</div>' + '</div>' +
'<div class="inner-box-caption">' + '<div class="inner-box-caption">' +
'<span class="caption"><%= caption %></span>' + '<span class="caption"><%= caption %></span>' +
'<i class="caret img-commonctrl"></i>' + '<i class="caret"></i>' +
'</div>' + '</div>' +
'</button>' + '</button>' +
'</div>'; '</div>';
@ -226,7 +226,7 @@ define([
'<button type="button" class="btn <%= cls %> inner-box-caption dropdown-toggle" data-toggle="dropdown">' + '<button type="button" class="btn <%= cls %> inner-box-caption dropdown-toggle" data-toggle="dropdown">' +
'<span class="btn-fixflex-vcenter">' + '<span class="btn-fixflex-vcenter">' +
'<span class="caption"><%= caption %></span>' + '<span class="caption"><%= caption %></span>' +
'<i class="caret img-commonctrl"></i>' + '<i class="caret"></i>' +
'</span>' + '</span>' +
'</button>' + '</button>' +
'</div>'; '</div>';
@ -271,7 +271,7 @@ define([
'<% applyicon() %>', '<% applyicon() %>',
'<span class="caption"><%= caption %></span>', '<span class="caption"><%= caption %></span>',
'<span class="inner-box-caret">' + '<span class="inner-box-caret">' +
'<i class="caret img-commonctrl"></i>' + '<i class="caret"></i>' +
'</span>', '</span>',
'</button>', '</button>',
'</div>', '</div>',
@ -282,7 +282,7 @@ define([
'<span class="caption"><%= caption %></span>', '<span class="caption"><%= caption %></span>',
'</button>', '</button>',
'<button type="button" class="btn <%= cls %> dropdown-toggle" data-toggle="dropdown">', '<button type="button" class="btn <%= cls %> dropdown-toggle" data-toggle="dropdown">',
'<i class="caret img-commonctrl"></i>', '<i class="caret"></i>',
'<span class="sr-only"></span>', '<span class="sr-only"></span>',
'</button>', '</button>',
'</div>', '</div>',

View file

@ -41,16 +41,28 @@ define([
Common.UI.ColorButton = Common.UI.Button.extend(_.extend({ Common.UI.ColorButton = Common.UI.Button.extend(_.extend({
options : { options : {
hint: false, id : null,
enableToggle: false, hint : false,
visible: true enableToggle : false,
allowDepress : false,
toggleGroup : null,
cls : '',
iconCls : '',
caption : '',
menu : null,
disabled : false,
pressed : false,
split : false,
visible : true
}, },
template: _.template([ template: _.template([
'<div class="btn-group" id="<%= id %>">', '<div class="btn-group" id="<%= id %>">',
'<button type="button" class="btn btn-color dropdown-toggle <%= cls %>" data-toggle="dropdown" style="<%= style %>">', '<button type="button" class="btn btn-color dropdown-toggle <%= cls %>" data-toggle="dropdown" style="<%= style %>">',
'<span>&nbsp;</span>', '<span>&nbsp;</span>',
'<span class="inner-box-caret"><i class="caret img-commonctrl"></i></span>', '<span class="inner-box-caret">',
'<i class="caret"></i>',
'</span>',
'</button>', '</button>',
'</div>' '</div>'
].join('')), ].join('')),

View file

@ -77,9 +77,14 @@ define([
Common.UI.ComboBorderSize = Common.UI.ComboBox.extend(_.extend({ Common.UI.ComboBorderSize = Common.UI.ComboBox.extend(_.extend({
template: _.template([ template: _.template([
'<div class="input-group combobox combo-border-size input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">', '<div class="input-group combobox combo-border-size input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">',
'<div class="form-control" style="padding-top:2px; <%= style %>"></div>', '<div class="form-control" style="<%= style %>">',
'<i class="image"></i>',
'<span class="text"></span>',
'</div>',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">',
'<span class="caret"></span>',
'</button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">', '<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">',
'<% _.each(items, function(item) { %>', '<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem">', '<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem">',
@ -138,14 +143,15 @@ define([
updateFormControl: function(record) { updateFormControl: function(record) {
var formcontrol = $(this.el).find('.form-control'); var formcontrol = $(this.el).find('.form-control');
var image = formcontrol.find('> .image');
var text = formcontrol.find('> .text');
if (record.get('value')>0) { if (record.get('value')>0) {
formcontrol[0].innerHTML = ''; image.css('background-position', '10px -' + record.get('offsety') + 'px').show();
formcontrol.removeClass('text').addClass('image'); text.hide();
formcontrol.css('background-position', '10px -' + record.get('offsety') + 'px');
} else { } else {
formcontrol[0].innerHTML = this.txtNoBorders; image.hide();
formcontrol.removeClass('image').addClass('text'); text.text(this.txtNoBorders).show();
} }
}, },
@ -162,9 +168,7 @@ define([
this.updateFormControl(this._selectedItem); this.updateFormControl(this._selectedItem);
$('#' + this._selectedItem.get('id'), $(this.el)).addClass('selected'); $('#' + this._selectedItem.get('id'), $(this.el)).addClass('selected');
} else { } else {
var formcontrol = $(this.el).find('.form-control'); $(this.el).find('.form-control > .text').text("").show();
formcontrol[0].innerHTML = '';
formcontrol.removeClass('image').addClass('text');
} }
}, },
@ -175,7 +179,9 @@ define([
template: _.template([ template: _.template([
'<span class="input-group combobox combo-border-size input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">', '<span class="input-group combobox combo-border-size input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">',
'<input type="text" class="form-control text">', '<input type="text" class="form-control text">',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">',
'<span class="caret"></span>',
'</button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">', '<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">',
'<% _.each(items, function(item) { %>', '<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem">', '<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem">',
@ -224,9 +230,13 @@ define([
Common.UI.ComboBorderType = Common.UI.ComboBorderSize.extend(_.extend({ Common.UI.ComboBorderType = Common.UI.ComboBorderSize.extend(_.extend({
template: _.template([ template: _.template([
'<div class="input-group combobox combo-border-size input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">', '<div class="input-group combobox combo-border-size input-group-nr <%= cls %>" id="<%= id %>" style="<%= style %>">',
'<div class="form-control" style="<%= style %>"></div>', '<div class="form-control" style="<%= style %>">',
'<i class="image"></i>',
'</div>',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">',
'<span class="caret"></span>',
'</button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">', '<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">',
'<% _.each(items, function(item) { %>', '<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem" style="padding: 2px 0 2px 10px;">', '<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem" style="padding: 2px 0 2px 10px;">',
@ -262,10 +272,8 @@ define([
}, },
updateFormControl: function(record) { updateFormControl: function(record) {
var formcontrol = $(this.el).find('.form-control'); $(this.el).find('.form-control > .image')
formcontrol[0].innerHTML = ''; .css('background-position', '10px -' + record.get('offsety') + 'px');
formcontrol.removeClass('text').addClass('image');
formcontrol.css('background-position', '10px -' + record.get('offsety') + 'px');
} }
}, Common.UI.ComboBorderType || {})); }, Common.UI.ComboBorderType || {}));
@ -275,7 +283,9 @@ define([
'<div class="form-control" style="padding:2px 14px 2px 3px; <%= style %> display: block;">', '<div class="form-control" style="padding:2px 14px 2px 3px; <%= style %> display: block;">',
'<div style="display: inline-block;overflow: hidden;width: 100%;height: 100%;"></div>', '<div style="display: inline-block;overflow: hidden;width: 100%;height: 100%;"></div>',
'</div>', '</div>',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">',
'<span class="caret"></span>',
'</button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">', '<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">',
'<% _.each(items, function(item) { %>', '<% _.each(items, function(item) { %>',
'<% if (item.value==-1) { %>', '<% if (item.value==-1) { %>',

View file

@ -93,7 +93,9 @@ define([
template: _.template([ template: _.template([
'<span class="input-group combobox <%= cls %>" id="<%= id %>" style="<%= style %>">', '<span class="input-group combobox <%= cls %>" id="<%= id %>" style="<%= style %>">',
'<input type="text" class="form-control" spellcheck="false">', '<input type="text" class="form-control" spellcheck="false">',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">',
'<span class="caret"></span>',
'</button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">', '<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">',
'<% _.each(items, function(item) { %>', '<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem"><%= scope.getDisplayValue(item) %></a></li>', '<li id="<%= item.id %>" data-value="<%= item.value %>"><a tabindex="-1" type="menuitem"><%= scope.getDisplayValue(item) %></a></li>',

View file

@ -72,7 +72,7 @@ define([
'<div class="input-group combobox fonts <%= cls %>" id="<%= id %>" style="<%= style %>">', '<div class="input-group combobox fonts <%= cls %>" id="<%= id %>" style="<%= style %>">',
'<input type="text" class="form-control" spellcheck="false"> ', '<input type="text" class="form-control" spellcheck="false"> ',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">', '<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">',
'<li class="divider">', '<li class="divider">',
'<% _.each(items, function(item) { %>', '<% _.each(items, function(item) { %>',

View file

@ -120,8 +120,8 @@ define([
template : template :
'<input type="text" class="form-control" spellcheck="false">' + '<input type="text" class="form-control" spellcheck="false">' +
'<div class="spinner-buttons">' + '<div class="spinner-buttons">' +
'<button type="button" class="spinner-up"><i class="img-commonctrl"></i></button>' + '<button type="button" class="spinner-up"><i class="arrow"></i></button>' +
'<button type="button" class="spinner-down"><i class="img-commonctrl"></i></button>' + '<button type="button" class="spinner-down"><i class="arrow"></i></button>' +
'</div>', '</div>',
initialize : function(options) { initialize : function(options) {

View file

@ -166,7 +166,7 @@ define([
'<div class="header">' + '<div class="header">' +
'<div class="tools">' + '<div class="tools">' +
'<% if (closable!==false) %>' + '<% if (closable!==false) %>' +
'<div class="tool close img-commonctrl"></div>' + '<div class="tool close"></div>' +
'<% %>' + '<% %>' +
'<% if (help===true) %>' + '<% if (help===true) %>' +
'<div class="tool help">?</div>' + '<div class="tool help">?</div>' +
@ -455,7 +455,7 @@ define([
if (!options.width) options.width = 'auto'; if (!options.width) options.width = 'auto';
var template = '<div class="info-box">' + var template = '<div class="info-box">' +
'<% if (typeof iconCls !== "undefined") { %><div class="icon img-commonctrl <%= iconCls %>"></div><% } %>' + '<% if (typeof iconCls !== "undefined") { %><div class="icon img-commonctrl img-no-theme-filter <%= iconCls %>"></div><% } %>' +
'<div class="text" <% if (typeof iconCls == "undefined") { %> style="padding-left:10px;" <% } %>><span><%= msg %></span>' + '<div class="text" <% if (typeof iconCls == "undefined") { %> style="padding-left:10px;" <% } %>><span><%= msg %></span>' +
'<% if (dontshow) { %><div class="dont-show-checkbox"></div><% } %>' + '<% if (dontshow) { %><div class="dont-show-checkbox"></div><% } %>' +
'</div>' + '</div>' +
@ -709,12 +709,14 @@ define([
mask.attr('counter', parseInt(mask.attr('counter'))+1); mask.attr('counter', parseInt(mask.attr('counter'))+1);
mask.show(); mask.show();
} else { } else {
var maskOpacity = $(':root').css('--modal-window-mask-opacity');
mask.css('opacity', 0); mask.css('opacity', 0);
mask.attr('counter', parseInt(mask.attr('counter'))+1); mask.attr('counter', parseInt(mask.attr('counter'))+1);
mask.show(); mask.show();
setTimeout(function () { setTimeout(function () {
mask.css(_getTransformation('0.2')); mask.css(_getTransformation(maskOpacity));
}, 1); }, 1);
} }
@ -801,11 +803,12 @@ define([
if ( hide_mask ) { if ( hide_mask ) {
if (this.options.animate !== false) { if (this.options.animate !== false) {
var maskOpacity = $(':root').css('--modal-window-mask-opacity');
mask.css(_getTransformation(0)); mask.css(_getTransformation(0));
setTimeout(function () { setTimeout(function () {
if (parseInt(mask.attr('counter'))<1) { if (parseInt(mask.attr('counter'))<1) {
mask.css('opacity', '0.2'); mask.css('opacity', maskOpacity);
mask.hide(); mask.hide();
mask.attr('counter', 0); mask.attr('counter', 0);
} }
@ -841,11 +844,12 @@ define([
if ( hide_mask ) { if ( hide_mask ) {
if (this.options.animate !== false) { if (this.options.animate !== false) {
var maskOpacity = $(':root').css('--modal-window-mask-opacity');
mask.css(_getTransformation(0)); mask.css(_getTransformation(0));
setTimeout(function () { setTimeout(function () {
if (parseInt(mask.attr('counter'))<1) { if (parseInt(mask.attr('counter'))<1) {
mask.css('opacity', '0.2'); mask.css('opacity', maskOpacity);
mask.hide(); mask.hide();
mask.attr('counter', 0); mask.attr('counter', 0);
} }

View file

@ -56,6 +56,7 @@ define([
var createExternalEditor = function() { var createExternalEditor = function() {
!!customization && (customization.uiTheme = Common.localStorage.getItem("ui-theme", "theme-light"));
externalEditor = new DocsAPI.DocEditor('id-diagram-editor-placeholder', { externalEditor = new DocsAPI.DocEditor('id-diagram-editor-placeholder', {
width : '100%', width : '100%',
height : '100%', height : '100%',
@ -242,6 +243,15 @@ define([
} }
}, },
showExternalEditor: function () {
if ( externalEditor ) {
var value = Common.localStorage.getItem("ui-theme", "theme-light");
externalEditor.serviceCommand('theme:change', value);
}
this.diagramEditorView.show();
},
warningTitle: 'Warning', warningTitle: 'Warning',
warningText: 'The object is disabled because of editing by another user.', warningText: 'The object is disabled because of editing by another user.',
textClose: 'Close', textClose: 'Close',

View file

@ -0,0 +1,62 @@
/**
* Created by Maxim.Kadushkin on 2/5/2021.
*/
define([
'core'
], function () {
'use strict';
Common.UI.Themes = new (function() {
var sdk_themes_relation = {
'theme-light': 'flat',
'theme-dark': 'flatDark'
};
sdk_themes_relation.contains = function (name) {
return !!this[name];
}
return {
init: function (api) {
var me = this;
$(window).on('storage', function (e) {
if ( e.key == 'ui-theme' ) {
me.setTheme(e.originalEvent.newValue);
}
})
this.api = api;
api.asc_setSkin(sdk_themes_relation[Common.localStorage.getItem('ui-theme', 'theme-light')]);
// app.eventbus.addListeners({
// 'FileMenu': {
// 'settings:apply': function (menu) {
// }
// }
// }, {id: 'Themes'});
// getComputedStyle(document.documentElement).getPropertyValue('--background-normal');
},
current: function () {
return Common.localStorage.getItem('ui-theme', 'theme-light');
},
setTheme: function (name) {
if ( sdk_themes_relation.contains(name) ) {
var classname = document.documentElement.className.replace(/theme-\w+\s?/, '');
document.documentElement.className = classname;
this.api.asc_setSkin(sdk_themes_relation[name]);
$(':root').addClass(name);
Common.localStorage.setItem('ui-theme', name);
}
},
toggleTheme: function () {
this.setTheme(this.current() == 'theme-dark' ? 'theme-light' : 'theme-dark');
}
}
})();
});

View file

@ -73,11 +73,7 @@
<% if (removable) { %> <% if (removable) { %>
<div class="btn-delete img-commonctrl"></div> <div class="btn-delete img-commonctrl"></div>
<% } %> <% } %>
<% if (resolved) { %> <div class="btn-resolve <% if (resolved) print('comment-resolved') %>" data-toggle="tooltip"></div>
<div class="btn-resolve-check img-commonctrl" data-toggle="tooltip"></div>
<% } else { %>
<div class="btn-resolve img-commonctrl" data-toggle="tooltip"></div>
<% } %>
</div> </div>
<% } %> <% } %>

View file

@ -74,11 +74,7 @@
<% if (removable) { %> <% if (removable) { %>
<div class="btn-delete img-commonctrl"></div> <div class="btn-delete img-commonctrl"></div>
<% } %> <% } %>
<% if (resolved) { %> <div class="btn-resolve <% if (resolved) print('comment-resolved') %>" data-toggle="tooltip"></div>
<div class="btn-resolve-check img-commonctrl" data-toggle="tooltip"></div>
<% } else { %>
<div class="btn-resolve img-commonctrl" data-toggle="tooltip"></div>
<% } %>
</div> </div>
<% } %> <% } %>

View file

@ -972,7 +972,8 @@ Common.Utils.UserInfoParser = new(function() {
separator = String.fromCharCode(160), separator = String.fromCharCode(160),
username = '', username = '',
usergroups, usergroups,
permissions; reviewPermissions,
reviewGroups;
return { return {
setParser: function(value) { setParser: function(value) {
parse = !!value; parse = !!value;
@ -1002,23 +1003,27 @@ Common.Utils.UserInfoParser = new(function() {
setCurrentName: function(name) { setCurrentName: function(name) {
username = name; username = name;
this.setReviewPermissions(permissions); this.setReviewPermissions(reviewGroups, reviewPermissions);
}, },
getCurrentName: function() { getCurrentName: function() {
return username; return username;
}, },
setReviewPermissions: function(reviewPermissions) { setReviewPermissions: function(groups, permissions) {
if (reviewPermissions) { if (groups) {
if (typeof groups == 'object' && groups.length>0)
usergroups = groups;
reviewGroups = groups;
} else if (permissions) {
var arr = [], var arr = [],
groups = this.getParsedGroups(username); arrgroups = this.getParsedGroups(username);
groups && groups.forEach(function(group) { arrgroups && arrgroups.forEach(function(group) {
var item = reviewPermissions[group.trim()]; var item = permissions[group.trim()];
item && (arr = arr.concat(item)); item && (arr = arr.concat(item));
}); });
usergroups = arr; usergroups = arr;
permissions = reviewPermissions; reviewPermissions = permissions;
} }
}, },

View file

@ -87,7 +87,9 @@ define([
'<span class="input-group combobox <%= cls %> combo-langs" id="<%= id %>" style="<%= style %>">', '<span class="input-group combobox <%= cls %> combo-langs" id="<%= id %>" style="<%= style %>">',
'<input type="text" class="form-control">', '<input type="text" class="form-control">',
'<span class="icon input-icon spellcheck-lang toolbar__icon btn-ic-docspell"></span>', '<span class="icon input-icon spellcheck-lang toolbar__icon btn-ic-docspell"></span>',
'<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">',
'<span class="caret" />',
'</button>',
'<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">', '<ul class="dropdown-menu <%= menuCls %>" style="<%= menuStyle %>" role="menu">',
'<% _.each(items, function(item) { %>', '<% _.each(items, function(item) { %>',
'<li id="<%= item.id %>" data-value="<%= item.value %>">', '<li id="<%= item.id %>" data-value="<%= item.value %>">',

Binary file not shown.

Before

Width:  |  Height:  |  Size: 495 B

After

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 562 B

After

Width:  |  Height:  |  Size: 577 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 593 B

After

Width:  |  Height:  |  Size: 631 B

View file

@ -3,18 +3,14 @@
&.active, &:active { &.active, &:active {
&:not(:disabled):not(.disabled) { &:not(:disabled):not(.disabled) {
.toolbar__icon { .toolbar__icon {
@btn-active-icon-offset: -20px; background-position-x: var(--button-small-active-icon-offset-x, 0);
background-position-x: @btn-active-icon-offset;
--bgX: @btn-active-icon-offset;
} }
} }
} }
} }
.menu__icon { .menu__icon {
.no-checkmark.checked & { .no-checkmark.checked & {
@btn-active-icon-offset: -20px; background-position-x: @menu-icon-item-checked-offset-x;
background-position-x: @btn-active-icon-offset;
--bgX: @btn-active-icon-offset;
} }
} }
.toolbar__icon, .menu__icon { .toolbar__icon, .menu__icon {
@ -23,9 +19,6 @@
{{/spritesheet}} {{/spritesheet}}
{{#sprites}} {{#sprites}}
{{#parselang name}}.{{name}}{{/parselang}} { {{#parselang name}}.{{name}}{{/parselang}} {
background-position: {{px.offset_x}} {{px.offset_y}}; background-position: var(--button-small-normal-icon-offset-x, 0) {{px.offset_y}};
--bgX: {{px.offset_x}};
background-position: var(--bgX) {{px.offset_y}};
} }
{{/sprites}} {{/sprites}}

View file

@ -4,9 +4,7 @@
&.active, &:active { &.active, &:active {
&:not(:disabled):not(.disabled) { &:not(:disabled):not(.disabled) {
.toolbar__icon { .toolbar__icon {
@btn-active-icon-offset: -28px; background-position-x: var(--button-huge-active-icon-offset-x,0);
background-position-x: @btn-active-icon-offset;
--bgX: @btn-active-icon-offset;
} }
} }
} }
@ -18,9 +16,6 @@
{{/spritesheet}} {{/spritesheet}}
{{#sprites}} {{#sprites}}
{{#parselang name}}.x-huge .{{name}}{{/parselang}} { {{#parselang name}}.x-huge .{{name}}{{/parselang}} {
background-position: {{px.offset_x}} {{px.offset_y}}; background-position: var(--button-huge-normal-icon-offset-x,0) {{px.offset_y}};
--bgX: {{px.offset_x}};
background-position: var(--bgX) {{px.offset_y}};
} }
{{/sprites}} {{/sprites}}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 B

After

Width:  |  Height:  |  Size: 195 B

View file

@ -1,113 +1,113 @@
<svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="chart-column-normal" viewBox="0 0 40 40"> <symbol id="chart-column-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M33 6H27V34H33V6ZM20 14H26V34H20V14ZM19 20H13V34H19V20ZM12 26H6V34H12V26Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M33 6H27V34H33V6ZM20 14H26V34H20V14ZM19 20H13V34H19V20ZM12 26H6V34H12V26Z"/>
</symbol> </symbol>
<symbol id="chart-column-stack" viewBox="0 0 40 40"> <symbol id="chart-column-stack" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M33 17H27V34H33V17ZM20 22H26V34H20V22ZM19 26H13V34H19V26ZM12 29H6V34H12V29Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M33 17H27V34H33V17ZM20 22H26V34H20V22ZM19 26H13V34H19V26ZM12 29H6V34H12V29Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M33 6H27V17H33V6ZM20 14H26V22H20V14ZM19 20H13V26H19V20ZM12 25H6V29H12V25Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M33 6H27V17H33V6ZM20 14H26V22H20V14ZM19 20H13V26H19V20ZM12 25H6V29H12V25Z"/>
</symbol> </symbol>
<symbol id="chart-column-pstack" viewBox="0 0 40 40"> <symbol id="chart-column-pstack" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M33 14H27V34H33V14ZM20 16H26V34H20V16ZM19 18H13V34H19V18ZM12 21H6V34H12V21Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M33 14H27V34H33V14ZM20 16H26V34H20V16ZM19 18H13V34H19V18ZM12 21H6V34H12V21Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M12 6H6V21H12V6ZM19 6H13V18H19V6ZM20 6H26V16H20V6ZM33 6H27V14H33V6Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M12 6H6V21H12V6ZM19 6H13V18H19V6ZM20 6H26V16H20V6ZM33 6H27V14H33V6Z"/>
</symbol> </symbol>
<symbol id="chart-column-3d-normal" viewBox="0 0 40 40"> <symbol id="chart-column-3d-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M23 34L27 35V8L23 7V34ZM22 33L18 32V11L22 12V33ZM13 30L17 31V17L13 16V30ZM8 28L12 29V21L8 20V28Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M23 34L27 35V8L23 7V34ZM22 33L18 32V11L22 12V33ZM13 30L17 31V17L13 16V30ZM8 28L12 29V21L8 20V28Z"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M31 7L27 6L23 7L27 8L31 7ZM22 10L23 10.25V11.75L22 12L18 11L22 10ZM18 15.25L17 15L13 16L17 17L18 16.75V15.25ZM12 19L13 19.25V20.75L12 21L8 20L12 19Z" fill="#444444"/> <path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M31 7L27 6L23 7L27 8L31 7ZM22 10L23 10.25V11.75L22 12L18 11L22 10ZM18 15.25L17 15L13 16L17 17L18 16.75V15.25ZM12 19L13 19.25V20.75L12 21L8 20L12 19Z"/>
<path opacity="0.4" d="M31 7L27 8V35L31 34V7Z" fill="#444444"/> <path opacity="0.4" d="M31 7L27 8V35L31 34V7Z"/>
</symbol> </symbol>
<symbol id="chart-column-3d-stack" viewBox="0 0 40 40"> <symbol id="chart-column-3d-stack" viewBox="0 0 40 40">
<path opacity="0.2" d="M27 7L31 6V16L27 17V7Z" fill="#444444"/> <path opacity="0.2" d="M27 7L31 6V16L27 17V7Z"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M23 6L27 5L31 6L27 7L23 6ZM31 16L27 17V34L31 33V16ZM26 20H23V32H26V20ZM18 10L22 9L23 9.25V10.75L22 11L18 10ZM17 14L13 15L17 16L18 15.75V14.25L17 14ZM8 19L12 18L13 18.25V19.75L12 20L8 19Z" fill="#444444"/> <path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M23 6L27 5L31 6L27 7L23 6ZM31 16L27 17V34L31 33V16ZM26 20H23V32H26V20ZM18 10L22 9L23 9.25V10.75L22 11L18 10ZM17 14L13 15L17 16L18 15.75V14.25L17 14ZM8 19L12 18L13 18.25V19.75L12 20L8 19Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M27 7L23 6V16L27 17V7ZM22 11L18 10V20L22 21V11ZM12 20L8 19V23L12 24V20ZM13 15L17 16V23L13 22V15Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M27 7L23 6V16L27 17V7ZM22 11L18 10V20L22 21V11ZM12 20L8 19V23L12 24V20ZM13 15L17 16V23L13 22V15Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M23 16L27 17V34L23 33V16ZM22 21L18 20V31L22 32V21ZM13 22L17 23V30L13 29V22ZM8 23L12 24V28L8 27V23Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M23 16L27 17V34L23 33V16ZM22 21L18 20V31L22 32V21ZM13 22L17 23V30L13 29V22ZM8 23L12 24V28L8 27V23Z"/>
</symbol> </symbol>
<symbol id="chart-column-3d-pstack" viewBox="0 0 40 40"> <symbol id="chart-column-3d-pstack" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 35L28 36V17L24 16V35ZM23 34L19 33V18L23 19V34ZM14 31L18 32V21L14 20V31ZM9 29L13 30V23L9 22V29Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M24 35L28 36V17L24 16V35ZM23 34L19 33V18L23 19V34ZM14 31L18 32V21L14 20V31ZM9 29L13 30V23L9 22V29Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M13 6L9 5V22L13 23V6ZM14 7L18 8V21L14 20V7ZM23 10L19 9V18L23 19V10ZM28 12L24 11V16L28 17V12Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M13 6L9 5V22L13 23V6ZM14 7L18 8V21L14 20V7ZM23 10L19 9V18L23 19V10ZM28 12L24 11V16L28 17V12Z"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9 5L13 6L17 5L13 4L9 5ZM18 8L14 7L18 6L22 7L18 8ZM19 9L23 10L27 9L23 8L19 9ZM28 12L24 11L28 10L32 11L28 12ZM28 17L32 16V35L28 36V17Z" fill="#444444"/> <path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M9 5L13 6L17 5L13 4L9 5ZM18 8L14 7L18 6L22 7L18 8ZM19 9L23 10L27 9L23 8L19 9ZM28 12L24 11L28 10L32 11L28 12ZM28 17L32 16V35L28 36V17Z"/>
<path opacity="0.2" d="M28 12L32 11V16L28 17V12Z" fill="#444444"/> <path opacity="0.2" d="M28 12L32 11V16L28 17V12Z"/>
</symbol> </symbol>
<symbol id="chart-column-3d-normal-per" viewBox="0 0 40 40"> <symbol id="chart-column-3d-normal-per" viewBox="0 0 40 40">
<path d="M24.0002 6L28.0002 7V31L25 30V18V17.5V17L24.0002 16.7617V6Z" fill="#444444"/> <path d="M24.0002 6L28.0002 7V31L25 30V18V17.5V17L24.0002 16.7617V6Z"/>
<path d="M19 10L23 11V16.5L21 16L19 16.5V10Z" fill="#444444"/> <path d="M19 10L23 11V16.5L21 16L19 16.5V10Z"/>
<path d="M14 14L18 15V16.7617L17 17V20.25L16 20L14 20.5V14Z" fill="#444444"/> <path d="M14 14L18 15V16.7617L17 17V20.25L16 20L14 20.5V14Z"/>
<path opacity="0.2" d="M21 18L25 17V35L21 36V18Z" fill="#444444"/> <path opacity="0.2" d="M21 18L25 17V35L21 36V18Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M32 6L28 7V31L32 30V6ZM17.0002 17L21.0002 18V36L17.0002 35V17ZM12.0002 21L16.0002 22V34L12.0002 33V21ZM11 26L7 25V31L11 32V26Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M32 6L28 7V31L32 30V6ZM17.0002 17L21.0002 18V36L17.0002 35V17ZM12.0002 21L16.0002 22V34L12.0002 33V21ZM11 26L7 25V31L11 32V26Z"/>
<path id="lighter max_2" opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M23.9999 6L27.9999 5L31.9999 6L27.9999 7L23.9999 6ZM19.0001 10L23.0001 9L27.0001 10L23.0001 11L19.0001 10ZM18 13L14 14L18 15L22 14L18 13ZM25 17L21 16L17 17L21 18L25 17ZM16 20L17 20.25V21.75L16 22L12 21L16 20ZM11 24L12 24.25V25.75L11 26L7 25L11 24Z" fill="#444444"/> <path id="lighter max_2" opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M23.9999 6L27.9999 5L31.9999 6L27.9999 7L23.9999 6ZM19.0001 10L23.0001 9L27.0001 10L23.0001 11L19.0001 10ZM18 13L14 14L18 15L22 14L18 13ZM25 17L21 16L17 17L21 18L25 17ZM16 20L17 20.25V21.75L16 22L12 21L16 20ZM11 24L12 24.25V25.75L11 26L7 25L11 24Z"/>
</symbol> </symbol>
<symbol id="chart-line-normal" viewBox="0 0 40 40"> <symbol id="chart-line-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M26 16.5L28.5 14L24.5 10L19.5 15L22 17.5L24.5 15L26 16.5ZM6 28.5L8.5 31L19.5 20L17 17.5L6 28.5ZM34 19.5L31.5 22L28.5 19L31 16.5L34 19.5Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M26 16.5L28.5 14L24.5 10L19.5 15L22 17.5L24.5 15L26 16.5ZM6 28.5L8.5 31L19.5 20L17 17.5L6 28.5ZM34 19.5L31.5 22L28.5 19L31 16.5L34 19.5Z"/>
<path opacity="0.4" d="M6 20.5L15.5 11L23.5 19L31.5 11L34 13.5L23.5 24L15.5 16L8.5 23L6 20.5Z" fill="#444444"/> <path opacity="0.4" d="M6 20.5L15.5 11L23.5 19L31.5 11L34 13.5L23.5 24L15.5 16L8.5 23L6 20.5Z"/>
</symbol> </symbol>
<symbol id="chart-line-stack" viewBox="0 0 40 40"> <symbol id="chart-line-stack" viewBox="0 0 40 40">
<path d="M6 30.5L17.5 19L22.5 24L31.5 15L34 17.5L22.5 29L17.5 24L8.5 33L6 30.5Z" fill="#444444"/> <path d="M6 30.5L17.5 19L22.5 24L31.5 15L34 17.5L22.5 29L17.5 24L8.5 33L6 30.5Z"/>
<path opacity="0.4" d="M6 22.5L17.5 11L22.5 16L31.5 7L34 9.5L22.5 21L17.5 16L8.5 25L6 22.5Z" fill="#444444"/> <path opacity="0.4" d="M6 22.5L17.5 11L22.5 16L31.5 7L34 9.5L22.5 21L17.5 16L8.5 25L6 22.5Z"/>
</symbol> </symbol>
<symbol id="chart-line-pstack" viewBox="0 0 40 40"> <symbol id="chart-line-pstack" viewBox="0 0 40 40">
<path d="M6 29.5L17.5 18L22.5 23L31.5 14L34 16.5L22.5 28L17.5 23L8.5 32L6 29.5Z" fill="#444444"/> <path d="M6 29.5L17.5 18L22.5 23L31.5 14L34 16.5L22.5 28L17.5 23L8.5 32L6 29.5Z"/>
<rect opacity="0.4" x="6" y="8" width="28" height="4" fill="#444444"/> <rect opacity="0.4" x="6" y="8" width="28" height="4"/>
</symbol> </symbol>
<symbol id="chart-line-3d" viewBox="0 0 40 40"> <symbol id="chart-line-3d" viewBox="0 0 40 40">
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M17.5 18L5.5 10H9.5L22.5 18H17.5ZM20.5 33L12.5 21H16.5L25.5 33H20.5Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M17.5 18L5.5 10H9.5L22.5 18H17.5ZM20.5 33L12.5 21H16.5L25.5 33H20.5Z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.5 9H30.5L17.5 18H22.5L38.5 9ZM2.5 28L12.5 21L13.62 22.68L4.5 28H2.5ZM38.5 22H30.5L20.5 33H25.5L38.5 22Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M38.5 9H30.5L17.5 18H22.5L38.5 9ZM2.5 28L12.5 21L13.62 22.68L4.5 28H2.5ZM38.5 22H30.5L20.5 33H25.5L38.5 22Z"/>
</symbol> </symbol>
<symbol id="chart-pie-normal" viewBox="0 0 40 40"> <symbol id="chart-pie-normal" viewBox="0 0 40 40">
<path d="M5 20C5 22.9667 5.87973 25.8668 7.52796 28.3336C9.17618 30.8003 11.5189 32.7229 14.2597 33.8582C17.0006 34.9935 20.0166 35.2906 22.9264 34.7118C25.8361 34.133 28.5088 32.7044 30.6066 30.6066C32.7044 28.5088 34.133 25.8361 34.7118 22.9264C35.2906 20.0166 34.9935 17.0006 33.8582 14.2597C32.7229 11.5189 30.8003 9.17618 28.3336 7.52796C25.8668 5.87973 22.9667 5 20 5L20 20L5 20Z" fill="#444444"/> <path d="M5 20C5 22.9667 5.87973 25.8668 7.52796 28.3336C9.17618 30.8003 11.5189 32.7229 14.2597 33.8582C17.0006 34.9935 20.0166 35.2906 22.9264 34.7118C25.8361 34.133 28.5088 32.7044 30.6066 30.6066C32.7044 28.5088 34.133 25.8361 34.7118 22.9264C35.2906 20.0166 34.9935 17.0006 33.8582 14.2597C32.7229 11.5189 30.8003 9.17618 28.3336 7.52796C25.8668 5.87973 22.9667 5 20 5L20 20L5 20Z"/>
<path opacity="0.4" d="M20 5C18.0302 5 16.0796 5.38799 14.2597 6.14181C12.4399 6.89563 10.7863 8.00052 9.3934 9.3934C8.00052 10.7863 6.89563 12.4399 6.14181 14.2598C5.38799 16.0796 5 18.0302 5 20L20 20V5Z" fill="#444444"/> <path opacity="0.4" d="M20 5C18.0302 5 16.0796 5.38799 14.2597 6.14181C12.4399 6.89563 10.7863 8.00052 9.3934 9.3934C8.00052 10.7863 6.89563 12.4399 6.14181 14.2598C5.38799 16.0796 5 18.0302 5 20L20 20V5Z"/>
</symbol> </symbol>
<symbol id="chart-pie-doughnut" viewBox="0 0 40 40"> <symbol id="chart-pie-doughnut" viewBox="0 0 40 40">
<path d="M5 20C5 22.9667 5.87973 25.8668 7.52796 28.3336C9.17618 30.8003 11.5189 32.7229 14.2597 33.8582C17.0006 34.9935 20.0166 35.2906 22.9264 34.7118C25.8361 34.133 28.5088 32.7044 30.6066 30.6066C32.7044 28.5088 34.133 25.8361 34.7118 22.9264C35.2906 20.0166 34.9935 17.0006 33.8582 14.2597C32.7229 11.5189 30.8003 9.17618 28.3336 7.52796C25.8668 5.87973 22.9667 5 20 5L20 11C21.78 11 23.5201 11.5278 25.0001 12.5168C26.4802 13.5057 27.6337 14.9113 28.3149 16.5558C28.9961 18.2004 29.1743 20.01 28.8271 21.7558C28.4798 23.5016 27.6226 25.1053 26.364 26.364C25.1053 27.6226 23.5016 28.4798 21.7558 28.8271C20.01 29.1743 18.2004 28.9961 16.5558 28.3149C14.9113 27.6337 13.5057 26.4802 12.5168 25.0001C11.5278 23.5201 11 21.78 11 20L5 20Z" fill="#444444"/> <path d="M5 20C5 22.9667 5.87973 25.8668 7.52796 28.3336C9.17618 30.8003 11.5189 32.7229 14.2597 33.8582C17.0006 34.9935 20.0166 35.2906 22.9264 34.7118C25.8361 34.133 28.5088 32.7044 30.6066 30.6066C32.7044 28.5088 34.133 25.8361 34.7118 22.9264C35.2906 20.0166 34.9935 17.0006 33.8582 14.2597C32.7229 11.5189 30.8003 9.17618 28.3336 7.52796C25.8668 5.87973 22.9667 5 20 5L20 11C21.78 11 23.5201 11.5278 25.0001 12.5168C26.4802 13.5057 27.6337 14.9113 28.3149 16.5558C28.9961 18.2004 29.1743 20.01 28.8271 21.7558C28.4798 23.5016 27.6226 25.1053 26.364 26.364C25.1053 27.6226 23.5016 28.4798 21.7558 28.8271C20.01 29.1743 18.2004 28.9961 16.5558 28.3149C14.9113 27.6337 13.5057 26.4802 12.5168 25.0001C11.5278 23.5201 11 21.78 11 20L5 20Z"/>
<path opacity="0.4" d="M20 5C18.0302 5 16.0796 5.38799 14.2597 6.14181C12.4399 6.89563 10.7863 8.00052 9.3934 9.3934C8.00052 10.7863 6.89563 12.4399 6.14181 14.2598C5.38799 16.0796 5 18.0302 5 20L11 20C11 18.8181 11.2328 17.6478 11.6851 16.5559C12.1374 15.4639 12.8003 14.4718 13.636 13.636C14.4718 12.8003 15.4639 12.1374 16.5558 11.6851C17.6478 11.2328 18.8181 11 20 11V5Z" fill="#444444"/> <path opacity="0.4" d="M20 5C18.0302 5 16.0796 5.38799 14.2597 6.14181C12.4399 6.89563 10.7863 8.00052 9.3934 9.3934C8.00052 10.7863 6.89563 12.4399 6.14181 14.2598C5.38799 16.0796 5 18.0302 5 20L11 20C11 18.8181 11.2328 17.6478 11.6851 16.5559C12.1374 15.4639 12.8003 14.4718 13.636 13.636C14.4718 12.8003 15.4639 12.1374 16.5558 11.6851C17.6478 11.2328 18.8181 11 20 11V5Z"/>
</symbol> </symbol>
<symbol id="chart-pie-3d-normal" viewBox="0 0 40 40"> <symbol id="chart-pie-3d-normal" viewBox="0 0 40 40">
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M31.3137 9.22183C34.3143 11.2847 36 14.0826 36 17L36 22C36 24.9174 34.3143 27.7153 31.3137 29.7782C28.3131 31.8411 24.2435 33 20 33C15.7565 33 11.6869 31.8411 8.68629 29.7782C5.68571 27.7153 4 24.9174 4 22V17C4 14.0826 5.68571 11.2847 8.68629 9.22182C11.6869 7.15892 15.7565 6 20 6C24.2435 6 28.3131 7.15893 31.3137 9.22183Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M31.3137 9.22183C34.3143 11.2847 36 14.0826 36 17L36 22C36 24.9174 34.3143 27.7153 31.3137 29.7782C28.3131 31.8411 24.2435 33 20 33C15.7565 33 11.6869 31.8411 8.68629 29.7782C5.68571 27.7153 4 24.9174 4 22V17C4 14.0826 5.68571 11.2847 8.68629 9.22182C11.6869 7.15892 15.7565 6 20 6C24.2435 6 28.3131 7.15893 31.3137 9.22183Z"/>
<path d="M4 17C4 19.1756 4.93838 21.3023 6.69649 23.1113C8.45459 24.9202 10.9534 26.3301 13.8771 27.1627C16.8007 27.9952 20.0177 28.2131 23.1214 27.7886C26.2251 27.3642 29.0761 26.3166 31.3137 24.7782C33.5513 23.2398 35.0752 21.2798 35.6926 19.146C36.3099 17.0122 35.9931 14.8005 34.7821 12.7905C33.5711 10.7805 31.5203 9.06253 28.8891 7.85383C26.2579 6.64514 23.1645 6 20 6L20 17L4 17Z" fill="#444444"/> <path d="M4 17C4 19.1756 4.93838 21.3023 6.69649 23.1113C8.45459 24.9202 10.9534 26.3301 13.8771 27.1627C16.8007 27.9952 20.0177 28.2131 23.1214 27.7886C26.2251 27.3642 29.0761 26.3166 31.3137 24.7782C33.5513 23.2398 35.0752 21.2798 35.6926 19.146C36.3099 17.0122 35.9931 14.8005 34.7821 12.7905C33.5711 10.7805 31.5203 9.06253 28.8891 7.85383C26.2579 6.64514 23.1645 6 20 6L20 17L4 17Z"/>
</symbol> </symbol>
<symbol id="chart-bar-normal" viewBox="0 0 40 40"> <symbol id="chart-bar-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 6H6V12H15V6ZM6 27V33H34V27H6ZM6 13H20V19H6V13ZM26 20H6V26H26V20Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M15 6H6V12H15V6ZM6 27V33H34V27H6ZM6 13H20V19H6V13ZM26 20H6V26H26V20Z"/>
</symbol> </symbol>
<symbol id="chart-bar-stack" viewBox="0 0 40 40"> <symbol id="chart-bar-stack" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 6H6V12H11V6ZM14 13H6V19H14V13ZM6 20H18V26H6V20ZM23 27H6V33H23V27Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M11 6H6V12H11V6ZM14 13H6V19H14V13ZM6 20H18V26H6V20ZM23 27H6V33H23V27Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M15 6H11V12H15V6ZM20 13H14V19H20V13ZM18 20H26V26H18V20ZM34 27H23V33H34V27Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M15 6H11V12H15V6ZM20 13H14V19H20V13ZM18 20H26V26H18V20ZM34 27H23V33H34V27Z"/>
</symbol> </symbol>
<symbol id="chart-bar-pstack" viewBox="0 0 40 40"> <symbol id="chart-bar-pstack" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 6H6V12H20V6ZM22 13H6V19H22V13ZM6 20H24V26H6V20ZM26 27H6V33H26V27Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M20 6H6V12H20V6ZM22 13H6V19H22V13ZM6 20H24V26H6V20ZM26 27H6V33H26V27Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M34 6H20V12H34V6ZM34 13H22V19H34V13ZM24 20H34V26H24V20ZM34 27H26V33H34V27Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M34 6H20V12H34V6ZM34 13H22V19H34V13ZM24 20H34V26H24V20ZM34 27H26V33H34V27Z"/>
</symbol> </symbol>
<symbol id="chart-bar-3d-normal" viewBox="0 0 40 40"> <symbol id="chart-bar-3d-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 9L8 5V10L20 14V9ZM8 11L23 16V21L8 16V11ZM26 23L8 17L8 22L26 28V23ZM29 30L8 23V28L29 35L29 30Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M20 9L8 5V10L20 14V9ZM8 11L23 16V21L8 16V11ZM26 23L8 17L8 22L26 28V23ZM29 30L8 23V28L29 35L29 30Z"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M24 8L20 9V14L24 13V8ZM23 16L27 15V20L23 21V16ZM30 22L26 23V28L30 27V22ZM33 29L29 30V35L33 34V29Z" fill="#444444"/> <path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M24 8L20 9V14L24 13V8ZM23 16L27 15V20L23 21V16ZM30 22L26 23V28L30 27V22ZM33 29L29 30V35L33 34V29Z"/>
<path opacity="0.4" d="M12 4L24 8L20 9L8 5L12 4Z" fill="#444444"/> <path opacity="0.4" d="M12 4L24 8L20 9L8 5L12 4Z"/>
</symbol> </symbol>
<symbol id="chart-bar-3d-stack" viewBox="0 0 40 40"> <symbol id="chart-bar-3d-stack" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 6L8 5V10L11 11V6ZM8 16V11L14 13V18L8 16ZM17 20L8 17L8 22L17 25V20ZM8 23V28L20 32V27L8 23Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M11 6L8 5V10L11 11V6ZM8 16V11L14 13V18L8 16ZM17 20L8 17L8 22L17 25V20ZM8 23V28L20 32V27L8 23Z"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M15 5L12 4L8 5L11 6L15 5ZM20 9L24 8V13L20 14V9ZM27 15L23 16V21L27 20V15ZM26 23L30 22V27L26 28V23ZM29 30L33 29V34L29 35L29 30Z" fill="#444444"/> <path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M15 5L12 4L8 5L11 6L15 5ZM20 9L24 8V13L20 14V9ZM27 15L23 16V21L27 20V15ZM26 23L30 22V27L26 28V23ZM29 30L33 29V34L29 35L29 30Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M20 9L11 6V11L20 14V9ZM14 13L23 16V21L14 18V13ZM26 23L17 20V25L26 28V23ZM29 30L20 27V32L29 35V30Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M20 9L11 6V11L20 14V9ZM14 13L23 16V21L14 18V13ZM26 23L17 20V25L26 28V23ZM29 30L20 27V32L29 35V30Z"/>
<path opacity="0.2" d="M15 5L24 8L20 9L11 6L15 5Z" fill="#444444"/> <path opacity="0.2" d="M15 5L24 8L20 9L11 6L15 5Z"/>
</symbol> </symbol>
<symbol id="chart-bar-3d-pstack" viewBox="0 0 40 40"> <symbol id="chart-bar-3d-pstack" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 7L8 5V10L14 12V7ZM8 11L17 14V19L8 16V11ZM20 26V21L8 17V22L20 26ZM23 28L8 23V28L23 33V28Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M14 7L8 5V10L14 12V7ZM8 11L17 14V19L8 16V11ZM20 26V21L8 17V22L20 26ZM23 28L8 23V28L23 33V28Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M29 12L14 7V12L29 17V12ZM17 14L29 18V23L17 19V14ZM29 24L20 21V26L29 29V24ZM29 30L23 28V33L29 35V30Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M29 12L14 7V12L29 17V12ZM17 14L29 18V23L17 19V14ZM29 24L20 21V26L29 29V24ZM29 30L23 28V33L29 35V30Z"/>
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M18 6L12 4L8 5L14 7L18 6ZM29 12L33 11V16L29 17V12ZM33 17L29 18V23L33 22V17ZM29 24L33 23V28L29 29V24ZM29 30L33 29V34L29 35V30Z" fill="#444444"/> <path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M18 6L12 4L8 5L14 7L18 6ZM29 12L33 11V16L29 17V12ZM33 17L29 18V23L33 22V17ZM29 24L33 23V28L29 29V24ZM29 30L33 29V34L29 35V30Z"/>
<path opacity="0.2" d="M18 6L33 11L29 12L14 7L18 6Z" fill="#444444"/> <path opacity="0.2" d="M18 6L33 11L29 12L14 7L18 6Z"/>
</symbol> </symbol>
<symbol id="chart-area-normal" viewBox="0 0 40 40"> <symbol id="chart-area-normal" viewBox="0 0 40 40">
<path d="M15.5 24L19.5 29L34 14V34H6L15.5 24Z" fill="#444444"/> <path d="M15.5 24L19.5 29L34 14V34H6L15.5 24Z"/>
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M19.5 29L15.5 24L6 34L15.5 15L20.5 22H26.2667L19.5 29Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M19.5 29L15.5 24L6 34L15.5 15L20.5 22H26.2667L19.5 29Z"/>
</symbol> </symbol>
<symbol id="chart-area-stack" viewBox="0 0 40 40"> <symbol id="chart-area-stack" viewBox="0 0 40 40">
<path d="M15.5 24L19.5 29L34 14V34H6L15.5 24Z" fill="#444444"/> <path d="M15.5 24L19.5 29L34 14V34H6L15.5 24Z"/>
<path opacity="0.4" d="M15.5 17L19.5 22L34 7V14L19.5 29L15.5 24L6 34V27L15.5 17Z" fill="#444444"/> <path opacity="0.4" d="M15.5 17L19.5 22L34 7V14L19.5 29L15.5 24L6 34V27L15.5 17Z"/>
</symbol> </symbol>
<symbol id="chart-area-pstack" viewBox="0 0 40 40"> <symbol id="chart-area-pstack" viewBox="0 0 40 40">
<path d="M15.5 24L19.5 29L34 14V34H6L15.5 24Z" fill="#444444"/> <path d="M15.5 24L19.5 29L34 14V34H6L15.5 24Z"/>
<path opacity="0.4" d="M6 6H34V14L19.5 29L15.5 24L6 34V6Z" fill="#444444"/> <path opacity="0.4" d="M6 6H34V14L19.5 29L15.5 24L6 34V6Z"/>
</symbol> </symbol>
<symbol id="chart-point-normal" viewBox="0 0 40 40"> <symbol id="chart-point-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 7H7V20.5V34H34V33H8V7ZM11.5 30C12.3284 30 13 29.3284 13 28.5C13 27.6716 12.3284 27 11.5 27C10.6716 27 10 27.6716 10 28.5C10 29.3284 10.6716 30 11.5 30ZM16 22.5C16 23.3284 15.3284 24 14.5 24C13.6716 24 13 23.3284 13 22.5C13 21.6716 13.6716 21 14.5 21C15.3284 21 16 21.6716 16 22.5ZM20.5 21C21.3284 21 22 20.3284 22 19.5C22 18.6716 21.3284 18 20.5 18C19.6716 18 19 18.6716 19 19.5C19 20.3284 19.6716 21 20.5 21ZM28 19.5C28 20.3284 27.3284 21 26.5 21C25.6716 21 25 20.3284 25 19.5C25 18.6716 25.6716 18 26.5 18C27.3284 18 28 18.6716 28 19.5ZM26.5 27C27.3284 27 28 26.3284 28 25.5C28 24.6716 27.3284 24 26.5 24C25.6716 24 25 24.6716 25 25.5C25 26.3284 25.6716 27 26.5 27ZM34 19.5C34 20.3284 33.3284 21 32.5 21C31.6716 21 31 20.3284 31 19.5C31 18.6716 31.6716 18 32.5 18C33.3284 18 34 18.6716 34 19.5ZM29.5 15C30.3284 15 31 14.3284 31 13.5C31 12.6716 30.3284 12 29.5 12C28.6716 12 28 12.6716 28 13.5C28 14.3284 28.6716 15 29.5 15Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M8 7H7V20.5V34H34V33H8V7ZM11.5 30C12.3284 30 13 29.3284 13 28.5C13 27.6716 12.3284 27 11.5 27C10.6716 27 10 27.6716 10 28.5C10 29.3284 10.6716 30 11.5 30ZM16 22.5C16 23.3284 15.3284 24 14.5 24C13.6716 24 13 23.3284 13 22.5C13 21.6716 13.6716 21 14.5 21C15.3284 21 16 21.6716 16 22.5ZM20.5 21C21.3284 21 22 20.3284 22 19.5C22 18.6716 21.3284 18 20.5 18C19.6716 18 19 18.6716 19 19.5C19 20.3284 19.6716 21 20.5 21ZM28 19.5C28 20.3284 27.3284 21 26.5 21C25.6716 21 25 20.3284 25 19.5C25 18.6716 25.6716 18 26.5 18C27.3284 18 28 18.6716 28 19.5ZM26.5 27C27.3284 27 28 26.3284 28 25.5C28 24.6716 27.3284 24 26.5 24C25.6716 24 25 24.6716 25 25.5C25 26.3284 25.6716 27 26.5 27ZM34 19.5C34 20.3284 33.3284 21 32.5 21C31.6716 21 31 20.3284 31 19.5C31 18.6716 31.6716 18 32.5 18C33.3284 18 34 18.6716 34 19.5ZM29.5 15C30.3284 15 31 14.3284 31 13.5C31 12.6716 30.3284 12 29.5 12C28.6716 12 28 12.6716 28 13.5C28 14.3284 28.6716 15 29.5 15Z"/>
</symbol> </symbol>
<symbol id="chart-stock-normal" viewBox="0 0 40 40"> <symbol id="chart-stock-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 7H7V20.5V34H34V33H8V7ZM23 12H22V16H20V20H22V24H23V20H25V16H23V12ZM13 27H11V20H13V16H14V20H16V27H14V31H13V27ZM31 11H29V18H31V22H32V18H34V11H32V7H31V11Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M8 7H7V20.5V34H34V33H8V7ZM23 12H22V16H20V20H22V24H23V20H25V16H23V12ZM13 27H11V20H13V16H14V20H16V27H14V31H13V27ZM31 11H29V18H31V22H32V18H34V11H32V7H31V11Z"/>
</symbol> </symbol>
<symbol id="chart-combo-bar-line" viewBox="0 0 40 40"> <symbol id="chart-combo-bar-line" viewBox="0 0 40 40">
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M20 10H26V34H20V10ZM19 14H13V34H19V14ZM12 26H6V34H12V26ZM33 21H27V34H33V21Z" fill="#444444"/> <path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M20 10H26V34H20V10ZM19 14H13V34H19V14ZM12 26H6V34H12V26ZM33 21H27V34H33V21Z" fill="#444444"/>
@ -145,7 +145,7 @@
<path fill-rule="evenodd" clip-rule="evenodd" d="M34 25L37 28L39 26V25L37 23H36L34 25ZM25 37V34L33 26L36 29L28 37H25Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M34 25L37 28L39 26V25L37 23H36L34 25ZM25 37V34L33 26L36 29L28 37H25Z" fill="#444444"/>
</symbol> </symbol>
<symbol id="chart-spark-line" viewBox="0 0 40 40"> <symbol id="chart-spark-line" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.86358 21.8725L15.7636 27.7725L20.7636 16.7725L25.682 21.691L31.6394 5.65181L33.5143 6.34819L26.4717 25.309L21.3901 20.2275L16.3901 31.2275L10.2901 25.1275L5.44232 33.5008L3.71148 32.4987L9.86358 21.8725Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M9.86358 21.8725L15.7636 27.7725L20.7636 16.7725L25.682 21.691L31.6394 5.65181L33.5143 6.34819L26.4717 25.309L21.3901 20.2275L16.3901 31.2275L10.2901 25.1275L5.44232 33.5008L3.71148 32.4987L9.86358 21.8725Z"/>
</symbol> </symbol>
<defs> <defs>
<clipPath id="clip0"> <clipPath id="clip0">
@ -153,40 +153,40 @@
</clipPath> </clipPath>
</defs> </defs>
<symbol id="chart-spark-column" viewBox="0 0 40 40"> <symbol id="chart-spark-column" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M26 6H20V34H26V6ZM13 14H19V34H13V14ZM33 18H27V34H33V18ZM12 20H6V34H12V20Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M26 6H20V34H26V6ZM13 14H19V34H13V14ZM33 18H27V34H33V18ZM12 20H6V34H12V20Z"/>
</symbol> </symbol>
<symbol id="chart-spark-win" viewBox="0 0 40 40"> <symbol id="chart-spark-win" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 7H12V20H6V7ZM13 7H19V20H13V7ZM33 7H27V20H33V7Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M6 7H12V20H6V7ZM13 7H19V20H13V7ZM33 7H27V20H33V7Z"/>
<rect opacity="0.4" x="20" y="20" width="6" height="13" fill="#444444"/> <rect opacity="0.4" x="20" y="20" width="6" height="13"/>
</symbol> </symbol>
<symbol id="chart-surface-normal" viewBox="0 0 40 40"> <symbol id="chart-surface-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 6V15.0117L6 28.0117H8.29308L4.64648 31.6581L5.35357 32.3652L9.70733 28.0117H16.5L27 34.0117L30.7242 25.0116L36 25.0116L36 24.0116L31.138 24.0116L33 19.5117L22.5 8.01172L13 14.3451V6H12ZM17.837 24.3331L19.1385 18.5263L23.5873 23.1301C22.7174 23.5372 21.8181 23.8456 20.906 24.0206C19.7223 24.2476 18.7595 24.3698 17.837 24.3331ZM16.617 25.2036L16.2117 27.0117H7.56291L10.2783 21.1283C10.5037 21.3862 10.7771 21.6877 11.0846 22.0044C11.9473 22.8927 13.1287 23.9536 14.2985 24.4692C15.1229 24.8325 15.8764 25.0699 16.617 25.2036ZM16.8359 24.2269C16.1677 24.1101 15.4773 23.8959 14.7018 23.5541C13.72 23.1214 12.6514 22.1823 11.802 21.3077C11.4314 20.9262 11.1121 20.5669 10.8714 20.2852L18.1822 18.2208L16.8359 24.2269ZM17.615 25.3232C17.6295 25.3241 17.644 25.3249 17.6585 25.3257C18.7407 25.3857 19.8305 25.2451 21.0943 25.0027C22.1885 24.7928 23.2713 24.4012 24.3136 23.8817L28.3718 28.0812L26.5102 32.5801L17.1831 27.2503L17.615 25.3232ZM25.2274 23.3883L28.7887 27.0736L31.833 19.7166L30.7961 18.581C30.6237 18.79 30.4188 19.031 30.1871 19.2902C28.8262 20.8126 27.1112 22.2931 25.2274 23.3883ZM30.1147 17.8347L22.7292 9.74581L19.4441 17.4034L24.5166 22.6527C26.3887 21.6052 28.0891 20.1367 29.4415 18.6238C29.7055 18.3285 29.933 18.058 30.1147 17.8347ZM21.6168 9.80239L18.4881 17.0954L11.1883 19.1566L12.7896 15.6871L21.6168 9.80239Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M12 6V15.0117L6 28.0117H8.29308L4.64648 31.6581L5.35357 32.3652L9.70733 28.0117H16.5L27 34.0117L30.7242 25.0116L36 25.0116L36 24.0116L31.138 24.0116L33 19.5117L22.5 8.01172L13 14.3451V6H12ZM17.837 24.3331L19.1385 18.5263L23.5873 23.1301C22.7174 23.5372 21.8181 23.8456 20.906 24.0206C19.7223 24.2476 18.7595 24.3698 17.837 24.3331ZM16.617 25.2036L16.2117 27.0117H7.56291L10.2783 21.1283C10.5037 21.3862 10.7771 21.6877 11.0846 22.0044C11.9473 22.8927 13.1287 23.9536 14.2985 24.4692C15.1229 24.8325 15.8764 25.0699 16.617 25.2036ZM16.8359 24.2269C16.1677 24.1101 15.4773 23.8959 14.7018 23.5541C13.72 23.1214 12.6514 22.1823 11.802 21.3077C11.4314 20.9262 11.1121 20.5669 10.8714 20.2852L18.1822 18.2208L16.8359 24.2269ZM17.615 25.3232C17.6295 25.3241 17.644 25.3249 17.6585 25.3257C18.7407 25.3857 19.8305 25.2451 21.0943 25.0027C22.1885 24.7928 23.2713 24.4012 24.3136 23.8817L28.3718 28.0812L26.5102 32.5801L17.1831 27.2503L17.615 25.3232ZM25.2274 23.3883L28.7887 27.0736L31.833 19.7166L30.7961 18.581C30.6237 18.79 30.4188 19.031 30.1871 19.2902C28.8262 20.8126 27.1112 22.2931 25.2274 23.3883ZM30.1147 17.8347L22.7292 9.74581L19.4441 17.4034L24.5166 22.6527C26.3887 21.6052 28.0891 20.1367 29.4415 18.6238C29.7055 18.3285 29.933 18.058 30.1147 17.8347ZM21.6168 9.80239L18.4881 17.0954L11.1883 19.1566L12.7896 15.6871L21.6168 9.80239Z"/>
<g opacity="0.4"> <g opacity="0.4">
<path d="M19.1385 18.5263L17.837 24.3331C18.7595 24.3698 19.7223 24.2476 20.906 24.0206C21.8181 23.8456 22.7174 23.5372 23.5873 23.1301L19.1385 18.5263Z" fill="#444444"/> <path d="M19.1385 18.5263L17.837 24.3331C18.7595 24.3698 19.7223 24.2476 20.906 24.0206C21.8181 23.8456 22.7174 23.5372 23.5873 23.1301L19.1385 18.5263Z"/>
<path d="M14.7018 23.5541C15.4773 23.8959 16.1677 24.1101 16.8359 24.2269L18.1822 18.2208L10.8714 20.2852C11.1121 20.5669 11.4314 20.9262 11.802 21.3077C12.6514 22.1823 13.72 23.1214 14.7018 23.5541Z" fill="#444444"/> <path d="M14.7018 23.5541C15.4773 23.8959 16.1677 24.1101 16.8359 24.2269L18.1822 18.2208L10.8714 20.2852C11.1121 20.5669 11.4314 20.9262 11.802 21.3077C12.6514 22.1823 13.72 23.1214 14.7018 23.5541Z"/>
<path d="M22.7292 9.74581L30.1147 17.8347C29.933 18.058 29.7055 18.3285 29.4415 18.6238C28.0891 20.1367 26.3887 21.6052 24.5166 22.6527L19.4441 17.4034L22.7292 9.74581Z" fill="#444444"/> <path d="M22.7292 9.74581L30.1147 17.8347C29.933 18.058 29.7055 18.3285 29.4415 18.6238C28.0891 20.1367 26.3887 21.6052 24.5166 22.6527L19.4441 17.4034L22.7292 9.74581Z"/>
<path d="M18.4881 17.0954L21.6168 9.80239L12.7896 15.6871L11.1883 19.1566L18.4881 17.0954Z" fill="#444444"/> <path d="M18.4881 17.0954L21.6168 9.80239L12.7896 15.6871L11.1883 19.1566L18.4881 17.0954Z"/>
</g> </g>
</symbol> </symbol>
<symbol id="chart-surface-wireframe" viewBox="0 0 40 40"> <symbol id="chart-surface-wireframe" viewBox="0 0 40 40">
<g opacity="0.4"> <g opacity="0.4">
<path d="M24.4393 24.0117H17.909L17.6848 25.0117H25.4056L24.4393 24.0117Z" fill="#444444"/> <path d="M24.4393 24.0117H17.909L17.6848 25.0117H25.4056L24.4393 24.0117Z"/>
<path d="M29.6419 25.0117H26.7962L25.8299 24.0117H30.0557L29.6419 25.0117Z" fill="#444444"/> <path d="M29.6419 25.0117H26.7962L25.8299 24.0117H30.0557L29.6419 25.0117Z"/>
<path d="M16.66 25.0117L16.8842 24.0117H13.0004L13.0005 19.684L12.0005 19.9664L12.0004 24.3042L9.29291 27.0117H10.7071L12.7071 25.0117H16.66Z" fill="#444444"/> <path d="M16.66 25.0117L16.8842 24.0117H13.0004L13.0005 19.684L12.0005 19.9664L12.0004 24.3042L9.29291 27.0117H10.7071L12.7071 25.0117H16.66Z"/>
<path d="M12.0005 18.9273L13.0005 18.6449L13.0005 15.5466L12.7896 15.6871L12.0005 17.397L12.0005 18.9273Z" fill="#444444"/> <path d="M12.0005 18.9273L13.0005 18.6449L13.0005 15.5466L12.7896 15.6871L12.0005 17.397L12.0005 18.9273Z"/>
</g> </g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 15.0117V6H13V14.3451L22.5 8.01172L33 19.5117L31.138 24.0116L36 24.0116L36 25.0116L30.7242 25.0116L27 34.0117L16.5 28.0117H9.70733L5.35357 32.3652L4.64648 31.6581L8.29308 28.0117H6L12 15.0117ZM19.1385 18.5263L17.1831 27.2503L26.5102 32.5801L28.3718 28.0812L19.1385 18.5263ZM18.4881 17.0954L21.6168 9.80239L12.7896 15.6871L11.1883 19.1566L18.4881 17.0954ZM22.7292 9.74581L19.4441 17.4034L28.7887 27.0736L31.833 19.7166L22.7292 9.74581ZM7.56291 27.0117L10.6369 20.3514L18.1822 18.2208L16.2117 27.0117H7.56291Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M12 15.0117V6H13V14.3451L22.5 8.01172L33 19.5117L31.138 24.0116L36 24.0116L36 25.0116L30.7242 25.0116L27 34.0117L16.5 28.0117H9.70733L5.35357 32.3652L4.64648 31.6581L8.29308 28.0117H6L12 15.0117ZM19.1385 18.5263L17.1831 27.2503L26.5102 32.5801L28.3718 28.0812L19.1385 18.5263ZM18.4881 17.0954L21.6168 9.80239L12.7896 15.6871L11.1883 19.1566L18.4881 17.0954ZM22.7292 9.74581L19.4441 17.4034L28.7887 27.0736L31.833 19.7166L22.7292 9.74581ZM7.56291 27.0117L10.6369 20.3514L18.1822 18.2208L16.2117 27.0117H7.56291Z"/>
</symbol> </symbol>
<symbol id="chart-contour-normal" viewBox="0 0 40 40"> <symbol id="chart-contour-normal" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 7V34H34V7H7ZM19.9994 8H8V20H19.9994V8ZM20.9994 8V20H25.9058C26.221 19.4031 26.5232 18.7899 26.8155 18.1718C27.1967 17.366 27.5639 16.5451 27.9217 15.7452C28.5259 14.3941 29.1035 13.1029 29.6756 12.047C30.1349 11.1992 30.6145 10.4552 31.137 9.91811C31.66 9.38042 32.2762 8.99994 32.9999 8.99993L33 8H20.9994ZM25.355 21H20.9994V25.8163C21.7839 25.398 22.5013 24.8046 23.1681 24.0797C23.9739 23.2036 24.6942 22.147 25.355 21ZM20.9994 26.9284C22.0933 26.4431 23.0537 25.6812 23.9041 24.7567C24.8901 23.6847 25.7426 22.3795 26.5028 21H33V33H20.9994V26.9284ZM19.9994 26.2398V21H8V21.875L8.31595 22.112L8.36241 22.1465C8.40379 22.1771 8.46567 22.2224 8.54631 22.2805C8.70763 22.3967 8.94385 22.5636 9.24104 22.7648C9.83585 23.1676 10.6726 23.7061 11.6401 24.2494C13.5964 25.3479 16.0074 26.4194 18.02 26.5003C18.7238 26.5286 19.3815 26.4361 19.9994 26.2398ZM19.9994 27.2817V33H8V23.1193C8.16619 23.2385 8.3967 23.4008 8.68037 23.5929C9.29197 24.007 10.1529 24.5612 11.1505 25.1214C13.1245 26.2298 15.7135 27.4084 17.9798 27.4995C18.6961 27.5283 19.368 27.4498 19.9994 27.2817ZM33 20H27.0327C27.2702 19.5352 27.4986 19.0664 27.7195 18.5994C28.1239 17.7445 28.5003 16.9021 28.8609 16.0954C29.4506 14.7758 29.9978 13.5515 30.5548 12.5234C30.9997 11.7023 31.4275 11.0537 31.8538 10.6154C32.2796 10.1776 32.6537 9.99993 33 9.99993V20Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M7 7V34H34V7H7ZM19.9994 8H8V20H19.9994V8ZM20.9994 8V20H25.9058C26.221 19.4031 26.5232 18.7899 26.8155 18.1718C27.1967 17.366 27.5639 16.5451 27.9217 15.7452C28.5259 14.3941 29.1035 13.1029 29.6756 12.047C30.1349 11.1992 30.6145 10.4552 31.137 9.91811C31.66 9.38042 32.2762 8.99994 32.9999 8.99993L33 8H20.9994ZM25.355 21H20.9994V25.8163C21.7839 25.398 22.5013 24.8046 23.1681 24.0797C23.9739 23.2036 24.6942 22.147 25.355 21ZM20.9994 26.9284C22.0933 26.4431 23.0537 25.6812 23.9041 24.7567C24.8901 23.6847 25.7426 22.3795 26.5028 21H33V33H20.9994V26.9284ZM19.9994 26.2398V21H8V21.875L8.31595 22.112L8.36241 22.1465C8.40379 22.1771 8.46567 22.2224 8.54631 22.2805C8.70763 22.3967 8.94385 22.5636 9.24104 22.7648C9.83585 23.1676 10.6726 23.7061 11.6401 24.2494C13.5964 25.3479 16.0074 26.4194 18.02 26.5003C18.7238 26.5286 19.3815 26.4361 19.9994 26.2398ZM19.9994 27.2817V33H8V23.1193C8.16619 23.2385 8.3967 23.4008 8.68037 23.5929C9.29197 24.007 10.1529 24.5612 11.1505 25.1214C13.1245 26.2298 15.7135 27.4084 17.9798 27.4995C18.6961 27.5283 19.368 27.4498 19.9994 27.2817ZM33 20H27.0327C27.2702 19.5352 27.4986 19.0664 27.7195 18.5994C28.1239 17.7445 28.5003 16.9021 28.8609 16.0954C29.4506 14.7758 29.9978 13.5515 30.5548 12.5234C30.9997 11.7023 31.4275 11.0537 31.8538 10.6154C32.2796 10.1776 32.6537 9.99993 33 9.99993V20Z"/>
<g opacity="0.4"> <g opacity="0.4">
<path d="M19.9994 20H8V8H19.9994V20Z" fill="#444444"/> <path d="M19.9994 20H8V8H19.9994V20Z"/>
<path d="M20.9994 8V20H25.9058C26.221 19.4031 26.5232 18.7899 26.8155 18.1718C27.1967 17.366 27.5639 16.5451 27.9217 15.7452C28.5259 14.3941 29.1035 13.1029 29.6756 12.047C30.1349 11.1992 30.6145 10.4552 31.137 9.91811C31.66 9.38042 32.2762 8.99994 32.9999 8.99993L33 8H20.9994Z" fill="#444444"/> <path d="M20.9994 8V20H25.9058C26.221 19.4031 26.5232 18.7899 26.8155 18.1718C27.1967 17.366 27.5639 16.5451 27.9217 15.7452C28.5259 14.3941 29.1035 13.1029 29.6756 12.047C30.1349 11.1992 30.6145 10.4552 31.137 9.91811C31.66 9.38042 32.2762 8.99994 32.9999 8.99993L33 8H20.9994Z"/>
<path d="M8 21.875L8.31595 22.112L8.36241 22.1465C8.40379 22.1771 8.46567 22.2224 8.54631 22.2805C8.70763 22.3967 8.94385 22.5636 9.24104 22.7648C9.83585 23.1676 10.6726 23.7061 11.6401 24.2494C13.5964 25.3479 16.0074 26.4194 18.02 26.5003C18.7238 26.5286 19.3815 26.4361 19.9994 26.2398V21H8V21.875Z" fill="#444444"/> <path d="M8 21.875L8.31595 22.112L8.36241 22.1465C8.40379 22.1771 8.46567 22.2224 8.54631 22.2805C8.70763 22.3967 8.94385 22.5636 9.24104 22.7648C9.83585 23.1676 10.6726 23.7061 11.6401 24.2494C13.5964 25.3479 16.0074 26.4194 18.02 26.5003C18.7238 26.5286 19.3815 26.4361 19.9994 26.2398V21H8V21.875Z"/>
<path d="M20.9994 21H25.355C24.6942 22.147 23.9739 23.2036 23.1681 24.0797C22.5013 24.8046 21.7839 25.398 20.9994 25.8163V21Z" fill="#444444"/> <path d="M20.9994 21H25.355C24.6942 22.147 23.9739 23.2036 23.1681 24.0797C22.5013 24.8046 21.7839 25.398 20.9994 25.8163V21Z"/>
</g> </g>
</symbol> </symbol>
<symbol id="chart-contour-wireframe" viewBox="0 0 40 40"> <symbol id="chart-contour-wireframe" viewBox="0 0 40 40">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 7V34H34V7H7ZM19.9994 8H8V20H19.9994V8ZM20.9994 8V20H25.9058C26.221 19.4031 26.5232 18.7899 26.8155 18.1718C27.1967 17.366 27.5639 16.5451 27.9217 15.7452C28.5259 14.3941 29.1035 13.1029 29.6756 12.047C30.1349 11.1992 30.6145 10.4552 31.137 9.91811C31.66 9.38042 32.2762 8.99994 32.9999 8.99993L33 8H20.9994ZM25.355 21H20.9994V25.8163C21.7839 25.398 22.5013 24.8046 23.1681 24.0797C23.9739 23.2036 24.6942 22.147 25.355 21ZM20.9994 26.9284C22.0933 26.4431 23.0537 25.6812 23.9041 24.7567C24.8901 23.6847 25.7426 22.3795 26.5028 21H33V33H20.9994V26.9284ZM19.9994 26.2398V21H8V21.8716L8.30468 22.1035L8.31595 22.112L8.36241 22.1465C8.40379 22.1771 8.46567 22.2224 8.54631 22.2805C8.70763 22.3967 8.94385 22.5636 9.24104 22.7648C9.83585 23.1676 10.6726 23.7061 11.6401 24.2494C13.5964 25.3479 16.0074 26.4194 18.02 26.5003C18.7238 26.5286 19.3815 26.4361 19.9994 26.2398ZM19.9994 27.2817V33H8V23.1193C8.16619 23.2385 8.3967 23.4008 8.68037 23.5929C9.29197 24.007 10.1529 24.5612 11.1505 25.1214C13.1245 26.2298 15.7135 27.4084 17.9798 27.4995C18.6961 27.5283 19.368 27.4498 19.9994 27.2817ZM33 20H27.0327C27.2702 19.5352 27.4986 19.0664 27.7195 18.5994C28.1239 17.7445 28.5003 16.9021 28.8609 16.0954C29.4506 14.7758 29.9978 13.5515 30.5548 12.5234C30.9997 11.7023 31.4275 11.0537 31.8538 10.6154C32.2796 10.1776 32.6537 9.99993 33 9.99993V20Z" fill="#444444"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M7 7V34H34V7H7ZM19.9994 8H8V20H19.9994V8ZM20.9994 8V20H25.9058C26.221 19.4031 26.5232 18.7899 26.8155 18.1718C27.1967 17.366 27.5639 16.5451 27.9217 15.7452C28.5259 14.3941 29.1035 13.1029 29.6756 12.047C30.1349 11.1992 30.6145 10.4552 31.137 9.91811C31.66 9.38042 32.2762 8.99994 32.9999 8.99993L33 8H20.9994ZM25.355 21H20.9994V25.8163C21.7839 25.398 22.5013 24.8046 23.1681 24.0797C23.9739 23.2036 24.6942 22.147 25.355 21ZM20.9994 26.9284C22.0933 26.4431 23.0537 25.6812 23.9041 24.7567C24.8901 23.6847 25.7426 22.3795 26.5028 21H33V33H20.9994V26.9284ZM19.9994 26.2398V21H8V21.8716L8.30468 22.1035L8.31595 22.112L8.36241 22.1465C8.40379 22.1771 8.46567 22.2224 8.54631 22.2805C8.70763 22.3967 8.94385 22.5636 9.24104 22.7648C9.83585 23.1676 10.6726 23.7061 11.6401 24.2494C13.5964 25.3479 16.0074 26.4194 18.02 26.5003C18.7238 26.5286 19.3815 26.4361 19.9994 26.2398ZM19.9994 27.2817V33H8V23.1193C8.16619 23.2385 8.3967 23.4008 8.68037 23.5929C9.29197 24.007 10.1529 24.5612 11.1505 25.1214C13.1245 26.2298 15.7135 27.4084 17.9798 27.4995C18.6961 27.5283 19.368 27.4498 19.9994 27.2817ZM33 20H27.0327C27.2702 19.5352 27.4986 19.0664 27.7195 18.5994C28.1239 17.7445 28.5003 16.9021 28.8609 16.0954C29.4506 14.7758 29.9978 13.5515 30.5548 12.5234C30.9997 11.7023 31.4275 11.0537 31.8538 10.6154C32.2796 10.1776 32.6537 9.99993 33 9.99993V20Z"/>
</symbol> </symbol>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View file

@ -23,18 +23,19 @@
margin: 0 30px; margin: 0 30px;
font: 12px Tahoma; font: 12px Tahoma;
letter-spacing: 1px; letter-spacing: 1px;
color: #666666; color: @text-normal;
font-weight: bold;
white-space: nowrap; white-space: nowrap;
} }
.asc-about-version { .asc-about-version {
font: 15px Tahoma; font: 15px Tahoma;
color: #b6b6b6; color: @text-tertiary;
} }
.asc-about-companyname { .asc-about-companyname {
font: bold 15px Tahoma; font: bold 15px Tahoma;
color: #333; color: @text-normal;
} }
label { label {
@ -42,11 +43,11 @@
&.asc-about-desc-name, &.asc-about-desc-name,
&.asc-about-lic { &.asc-about-lic {
font: 12px Tahoma; font: 12px Tahoma;
color: #333; color: @text-normal;
} }
&.asc-about-desc-name { &.asc-about-desc-name {
color: #666666; color: @text-normal;
white-space: pre; white-space: pre;
} }
@ -58,7 +59,7 @@
a { a {
font: 12px Tahoma; font: 12px Tahoma;
color: #333; color: @text-normal;
} }
.separator.horizontal { .separator.horizontal {

View file

@ -85,12 +85,16 @@
*/ */
:root { :root {
--bgX: 0px; --bgX: 0px;
&.theme-dark {
--bgX: -20px;
}
} }
.button-normal-icon(@icon-class, @index, @icon-size) { .button-normal-icon(@icon-class, @index, @icon-size, @normal-h-offset: 0px) {
.@{icon-class} { .@{icon-class} {
background-position: -0*@icon-size -@index*@icon-size; background-position: -0*@icon-size -@index*@icon-size;
background-position: var(--bgX) -@index*@icon-size; background-position: @normal-h-offset -@index*@icon-size;
} }
// .@{icon-class} {background-position-y: -@index*@icon-size;} // .@{icon-class} {background-position-y: -@index*@icon-size;}
} }
@ -110,19 +114,17 @@
} }
} }
.mx-button-otherstates-icon2(@icon-size) { .mx-button-otherstates-icon2(@offset) {
&.active, &:active{ &.active, &:active{
&:not(:disabled):not(.disabled) { &:not(:disabled):not(.disabled) {
.icon { .icon {
@btn-active-icon-offset: -1 * @icon-size; background-position-x: @offset;
background-position-x: @btn-active-icon-offset;
--bgX: @btn-active-icon-offset;
} }
} }
} }
&.active svg.icon, //&.active svg.icon,
&:active svg.icon {fill:#fff;} //&:active svg.icon {fill:#fff;}
} }
.button-otherstates-icon2(@icon-class, @icon-size) { .button-otherstates-icon2(@icon-class, @icon-size) {
@ -205,6 +207,7 @@
{ {
background-image: if(@icon-src-base64, data-uri(%("%s",'@{common-image-path}/@{common-controls}')), ~"url(@{common-image-const-path}/@{common-controls})"); background-image: if(@icon-src-base64, data-uri(%("%s",'@{common-image-path}/@{common-controls}')), ~"url(@{common-image-const-path}/@{common-controls})");
background-repeat: no-repeat; background-repeat: no-repeat;
filter: @component-normal-icon-filer;
@1d5ximage: replace(@common-controls, '\.png$', '@1.5x.png'); @1d5ximage: replace(@common-controls, '\.png$', '@1.5x.png');
@2ximage: replace(@common-controls, '\.png$', '@2x.png'); @2ximage: replace(@common-controls, '\.png$', '@2x.png');

View file

@ -4,7 +4,7 @@
.btn { .btn {
border-radius: 1px; border-radius: 1px;
color: @gray-deep; color: @text-normal;
.btnsize(@value) { .btnsize(@value) {
min-width: @value; min-width: @value;
@ -43,6 +43,11 @@
&:focus { &:focus {
outline: 0; outline: 0;
outline-offset: 0; outline-offset: 0;
color: @text-normal;
}
&:hover {
color: @text-normal;
} }
&:active, &.active { &:active, &.active {
@ -51,18 +56,22 @@
} }
.caret { .caret {
width: 7px; width: 4px;
height: 7px; height: 4px;
border: 0; border: solid 1px @icon-normal;
background-position: @arrow-small-offset-x @arrow-small-offset-y; border-bottom: none;
position: relative; border-right: none;
background-image: none;
transition: transform 0.2s ease;
transform: rotate(-135deg) translate(1px,1px);
} }
//&:active, //&:active,
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled){ &.active:not(.disabled){
.caret { .caret {
background-position: @arrow-small-offset-x - 7px @arrow-small-offset-y; transform: rotate(45deg);
} }
} }
@ -94,7 +103,7 @@
&::after { &::after {
content: ' '; content: ' ';
position: absolute; position: absolute;
border: 1px solid #000; border: 1px solid @icon-notification-badge;
border-left: 0 none; border-left: 0 none;
border-right: 0 none; border-right: 0 none;
width: 6px; width: 6px;
@ -109,7 +118,7 @@
width: 10px; width: 10px;
height: 7px; height: 7px;
bottom: 2px; bottom: 2px;
background-color: #ffd112; background-color: @background-notification-badge;
border-radius: 2px; border-radius: 2px;
right: 0; right: 0;
} }
@ -125,7 +134,7 @@
width: 8px; width: 8px;
height: 8px; height: 8px;
background-color: transparent; background-color: transparent;
border: solid 1px @gray-deep; border: solid 1px @text-normal;
border-bottom: none; border-bottom: none;
border-right: none; border-right: none;
} }
@ -157,7 +166,7 @@
&.active:not(.disabled) { &.active:not(.disabled) {
.caret-up, .caret-down { .caret-up, .caret-down {
&::after { &::after {
border-color: #FFFFFF; border-color: @background-normal;
} }
} }
} }
@ -213,8 +222,8 @@
only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 1.5dppx), only screen and (min-resolution: 1.5dppx),
only screen and (min-resolution: 144dpi) { only screen and (min-resolution: 144dpi) {
width:calc(~"40px/1.5"); //width:calc(~"40px/1.5");
height:calc(~"40px/1.5"); //height:calc(~"40px/1.5");
} }
} }
@ -265,11 +274,11 @@
.icon-top { .icon-top {
&.x-huge { &.x-huge {
.btn&, .btn-group& .btn-toolbar { .btn&, .btn-group& .btn-toolbar {
.mx-button-otherstates-icon2(@x-huge-btn-icon-size); .mx-button-otherstates-icon2(@button-huge-active-icon-offset-x);
} }
.btn.small { .btn.small {
.mx-button-otherstates-icon2(20px); .mx-button-otherstates-icon2(@button-small-active-icon-offset-x);
} }
} }
} }
@ -286,7 +295,7 @@
.btn.small; .btn.small;
&.bg-white { &.bg-white {
background-color: #fff; background-color: @background-normal;
} }
&:before, &:before,
@ -297,14 +306,14 @@
&:hover:not(.disabled), &:hover:not(.disabled),
.over:not(.disabled) { .over:not(.disabled) {
background-color: @secondary; background-color: @highlight-button-hover;
} }
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled) { &.active:not(.disabled) {
color: lighten(@gray-lighter, 10%); color: @text-normal;
background-color: @primary; background-color: @highlight-button-pressed;
} }
&:not(.icon-top) &:not(.icon-top)
@ -363,7 +372,7 @@
height: 3px; height: 3px;
background-color: red; background-color: red;
&.bordered { &.bordered {
border: 1px solid @gray-deep; border: 1px solid @border-regular-control;
} }
} }
@ -381,13 +390,13 @@
&:hover:not(.disabled), &:hover:not(.disabled),
.over:not(.disabled) { .over:not(.disabled) {
background-color: @secondary; background-color: @highlight-button-hover;
} }
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled) { &.active:not(.disabled) {
background-color: @primary; background-color: @highlight-button-pressed;
color: #fff; color: @text-normal-pressed;
} }
.icon { .icon {
@ -400,7 +409,7 @@
&[disabled], &[disabled],
&.disabled { &.disabled {
color: #000; //color: #000; btn-category has no text
opacity: @btn-disabled-opacity; opacity: @btn-disabled-opacity;
} }
} }
@ -436,7 +445,7 @@
&.open { &.open {
> .btn-toolbar { > .btn-toolbar {
//color: lighten(@gray-lighter, 10%); //color: @text-normal;
// Show no shadow for `.btn-link` since it has no other button styles. // Show no shadow for `.btn-link` since it has no other button styles.
&.btn-link { &.btn-link {
@ -451,7 +460,7 @@
&.over { &.over {
> button { > button {
//background-color: @secondary; //background-color: @highlight-button-hover;
} }
} }
@ -494,16 +503,11 @@
} }
} }
@color-gray: @secondary;
@color-dark: @primary;
//@color-gray: #079e2f;
//@color-dark: #c52c0e;
&.split { &.split {
&.over:not(.disabled), &.over:not(.disabled),
&.open { &.open {
box-shadow: inset 0 0 0 1px @color-gray; box-shadow: inset 0 0 0 1px @highlight-button-hover;
button:not(.active):not(.btn-text-split-default) { button:not(.active):not(.btn-text-split-default) {
background-color: transparent; background-color: transparent;
@ -514,13 +518,13 @@
button { button {
&:not(.active) { &:not(.active) {
&:hover { &:hover {
background-color: @color-gray; background-color: @highlight-button-hover;
} }
} }
&:active, &:active,
&:active:hover { &:active:hover {
background-color: @color-dark; background-color: @highlight-button-pressed;
} }
} }
} }
@ -528,7 +532,7 @@
&.open { &.open {
> button:not(.active) { > button:not(.active) {
&:last-of-type { &:last-of-type {
background-color: @color-dark; background-color: @highlight-button-pressed;
} }
} }
@ -538,7 +542,7 @@
} }
button.active:not(.disabled) { button.active:not(.disabled) {
background-color: @color-dark; background-color: @highlight-button-pressed;
} }
.btn + .btn { .btn + .btn {
@ -551,20 +555,20 @@
width: 45px; width: 45px;
height: 22px; height: 22px;
padding: 1px 11px 1px 1px; padding: 1px 11px 1px 1px;
border:1px solid @input-border; border:1px solid @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
span:nth-child(1) { span:nth-child(1) {
float: left; float: left;
width: 100%; width: 100%;
height: 100%; height: 100%;
border: 1px solid rgba(0, 0, 0, 0.2); border: 1px solid @border-color-shading;
background-color: transparent; background-color: transparent;
} }
.inner-box-caret { .inner-box-caret {
position: absolute; position: absolute;
right: 0; right: 1px;
top: 2px; top: 2px;
} }
@ -573,7 +577,7 @@
.over, .over,
&:active, &:active,
&.active { &.active {
background: #fff !important; background: @background-normal !important;
.box-shadow(none) !important; .box-shadow(none) !important;
} }
@ -594,7 +598,6 @@
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled) { &.active:not(.disabled) {
.caret { .caret {
background-position: @arrow-small-offset-x @arrow-small-offset-y;
} }
} }
} }
@ -619,7 +622,7 @@
background-color: transparent; background-color: transparent;
&.bg-white { &.bg-white {
background-color: #fff; background-color: @background-normal;
} }
.icon { .icon {
@ -633,25 +636,25 @@
background-repeat: no-repeat; background-repeat: no-repeat;
} }
box-shadow: inset 0 0 0 1px @gray; box-shadow: inset 0 0 0 1px @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
&:hover, &:hover,
&.over { &.over {
background-color: @secondary; background-color: @highlight-button-hover;
} }
&:active, &:active,
&.active { &.active {
background-color: @primary; background-color: @highlight-button-pressed;
} }
} }
.btn-text-default { .btn-text-default {
width: 75px; width: 75px;
height: 22px; height: 22px;
background: @input-bg; background: @background-normal;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
&.auto { &.auto {
@ -662,14 +665,14 @@
&:hover:not(.disabled), &:hover:not(.disabled),
.over:not(.disabled) { .over:not(.disabled) {
background-color: @secondary !important; background-color: @highlight-button-hover !important;
} }
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled) { &.active:not(.disabled) {
background-color: @primary !important; background-color: @highlight-button-pressed !important;
border-color: @primary; border-color: @highlight-button-pressed;
color: white; color: @text-normal-pressed;
} }
&[disabled], &[disabled],
@ -681,8 +684,8 @@
.btn-text-menu-default { .btn-text-menu-default {
width: 100%; width: 100%;
height: 22px; height: 22px;
background: @input-bg; background: @background-normal;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
button { button {
@ -697,12 +700,12 @@
&:hover:not(.disabled), &:hover:not(.disabled),
.over:not(.disabled) { .over:not(.disabled) {
background-color: @secondary !important; background-color: @highlight-button-hover !important;
} }
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled) { &.active:not(.disabled) {
background-color: @primary !important; background-color: @highlight-button-pressed !important;
color: white; color: white;
} }
@ -715,8 +718,8 @@
.btn-text-split-default { .btn-text-split-default {
width: 75px; width: 75px;
height: 22px; height: 22px;
background: @input-bg; background: @background-normal;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
&.dropdown-toggle { &.dropdown-toggle {
@ -729,14 +732,14 @@
&:hover:not(.disabled), &:hover:not(.disabled),
.over:not(.disabled) { .over:not(.disabled) {
background-color: @secondary !important; background-color: @highlight-button-hover !important;
} }
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled) { &.active:not(.disabled) {
background-color: @primary !important; background-color: @highlight-button-pressed !important;
border-color: @primary; border-color: @highlight-button-pressed;
color: white; color: @text-normal-pressed;
} }
&[disabled], &[disabled],
@ -748,8 +751,8 @@
.btn-icon-default { .btn-icon-default {
width: 45px; width: 45px;
height: 22px; height: 22px;
background: @input-bg; background: @background-normal;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
.icon { .icon {
@ -767,12 +770,12 @@
&:hover:not(.disabled), &:hover:not(.disabled),
.over:not(.disabled) { .over:not(.disabled) {
background-color: @secondary !important; background-color: @highlight-button-hover !important;
} }
&:active:not(.disabled), &:active:not(.disabled),
&.active:not(.disabled) { &.active:not(.disabled) {
background-color: @primary !important; background-color: @highlight-button-pressed !important;
} }
&[disabled], &[disabled],
@ -788,8 +791,8 @@
padding: 2px; padding: 2px;
margin:0; margin:0;
box-shadow: none; box-shadow: none;
background-color: @input-bg; background-color: @background-normal;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
&.template-table { &.template-table {
@ -814,7 +817,7 @@
margin-right: 3px; margin-right: 3px;
background-color: transparent; background-color: transparent;
background-repeat: no-repeat; background-repeat: no-repeat;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
position: relative; position: relative;
} }
@ -828,7 +831,7 @@
.over, .over,
&:active, &:active,
&.active { &.active {
background-color: @input-bg !important; background-color: @background-normal !important;
} }
&:active:not(.disabled), &:active:not(.disabled),
@ -850,21 +853,23 @@
.dlg-btn { .dlg-btn {
font-weight: bold; font-weight: bold;
width: 86px; width: 86px;
color: @gray-deep; color: @text-normal;
background-color: @secondary; background-color: @background-normal;
border: 1px solid @border-regular-control;
&:hover:not(.disabled), &:hover:not(.disabled),
&.hover:not(.disabled) { &.hover:not(.disabled) {
background-color: @secondary-hover; background-color: @highlight-button-hover;
} }
&.primary { &.primary {
color: #fff; color: @text-inverse;
background-color: @primary; background-color: @background-primary-dialog-button;
border: 0 none;
&:hover:not(.disabled), &:hover:not(.disabled),
&.hover:not(.disabled) { &.hover:not(.disabled) {
background-color: @primary-hover; background-color: @highlight-primary-dialog-button-hover;
} }
} }

View file

@ -1,4 +1,4 @@
@calendar-bg-color: @tabs-bg-color; @calendar-bg-color: @header-background-color;
.calendar-window { .calendar-window {
border-radius: 0; border-radius: 0;

View file

@ -11,7 +11,7 @@
.area { .area {
position: absolute; position: absolute;
border-bottom: 1px solid @gray-dark; border-bottom: 1px solid @border-toolbar;
overflow: hidden; overflow: hidden;
} }
@ -57,7 +57,7 @@
margin: 0 5px 3px 0; margin: 0 5px 3px 0;
width: 12px; width: 12px;
height: 12px; height: 12px;
border: 1px solid @gray-dark; border: 1px solid @border-toolbar;
} }
.name { .name {
@ -101,7 +101,7 @@
} }
.user-name { .user-name {
color: @gray-deep; color: @text-normal;
font-size: 12px; font-size: 12px;
font-weight: bold; font-weight: bold;
overflow: hidden; overflow: hidden;
@ -112,7 +112,7 @@
.color { .color {
width: 12px; width: 12px;
height: 12px; height: 12px;
border: 1px solid @gray-dark; border: 1px solid @border-toolbar;
margin: 0 5px 3px 0; margin: 0 5px 3px 0;
vertical-align: middle; vertical-align: middle;
} }
@ -121,12 +121,12 @@
word-wrap: break-word; word-wrap: break-word;
width: 100%; width: 100%;
&.service { //&.service {
text-align: center; // text-align: center;
color: #CECECE; // color: #CECECE;
text-shadow: 0 1px 0 #fff; // text-shadow: 0 1px 0 #fff;
padding-right: 20px; // padding-right: 20px;
} //}
} }
} }
} }
@ -143,11 +143,11 @@
height: 100%; height: 100%;
resize: none; resize: none;
margin-bottom: 5px; margin-bottom: 5px;
border: 1px solid @gray-dark; border: 1px solid @border-regular-control;
font-size: 12px; font-size: 12px;
&:focus { &:focus {
border-color: @gray-darker; border-color: @border-preview-select;
} }
} }
} }

View file

@ -12,8 +12,8 @@
+ label { + label {
width: 14px; width: 14px;
height: 14px; height: 14px;
background: #fff; background: @background-normal;
border: 1px solid @gray; border: 1px solid @border-regular-control;
border-radius: 2px; border-radius: 2px;
position: absolute; position: absolute;
left: 0; left: 0;
@ -25,7 +25,7 @@
&::before { &::before {
content: ''; content: '';
position: absolute; position: absolute;
border: solid @gray-deep; border: solid @text-normal;
border-width: 0 2px 2px 0; border-width: 0 2px 2px 0;
transform: rotate(45deg); transform: rotate(45deg);
width: 5px; width: 5px;
@ -40,8 +40,8 @@
&::before { &::before {
content: ''; content: '';
position: absolute; position: absolute;
border: 1px solid @gray-deep; border: 1px solid @text-normal;
background: @gray-soft; background: @icon-normal;
width: 8px; width: 8px;
height: 8px; height: 8px;
left: 2px; left: 2px;

View file

@ -7,7 +7,7 @@
&:hover, &:hover,
&.selected { &.selected {
.box-shadow(0 0 0 1px @primary); .box-shadow(0 0 0 1px @highlight-button-pressed);
} }
} }
} }
@ -26,7 +26,7 @@
padding: 10px; padding: 10px;
.palette-color-item { .palette-color-item {
padding: 0; padding: 0;
border: 1px solid #fff; border: 1px solid @background-normal;
display: inline-block; display: inline-block;
text-decoration: none; text-decoration: none;
-moz-outline: 0 none; -moz-outline: 0 none;
@ -43,21 +43,21 @@
width: 12px; width: 12px;
cursor: pointer; cursor: pointer;
display: block; display: block;
border: 1px solid rgba(0, 0, 0, 0.2); border: 1px solid @border-color-shading;
} }
} }
&:hover, &.selected { &:hover, &.selected {
border-color: #000; border-color: @icon-normal;
em span { em span {
border-color: #fff; border-color: @background-normal;
} }
} }
} }
.color-transparent { .color-transparent {
em span { em span {
border:solid 1px #C0C0C0; border:solid 1px @border-color-shading;
} }
} }
} }

View file

@ -0,0 +1,110 @@
:root {
&.theme-dark {
--toolbar-header-document: #2a2a2a;
--toolbar-header-spreadsheet: #2a2a2a;
--toolbar-header-presentation: #2a2a2a;
--background-normal: #333;
--background-toolbar: #404040;
--background-toolbar-additional: #505050;
--background-primary-dialog-button: #ddd;
--background-tab-underline: #ddd;
--background-notification-popover: #3e5968;
--background-notification-badge: #ffd114;
--background-scrim: fade(black, 60%);
--background-loader: fade(#181818, 90%);
--highlight-button-hover: #555;
--highlight-button-pressed: #606060;
--highlight-button-pressed-hover: #808080;
--highlight-primary-dialog-button-hover: #e5e5e5;
--highlight-header-button-hover: fade(#000, 20%);
--highlight-header-button-pressed: fade(#000, 25%);
--highlight-toolbar-tab-underline: #ddd;
--highlight-text-select: #96c8fd;
--border-toolbar: #2a2a2a;
--border-divider: #505050;
--border-regular-control: #666666;
--border-toolbar-button-hover: #5a5a5a;
--border-preview-select: #666666;
--border-control-focus: #ccc;
--border-color-shading: fade(#fff, 5%);
--border-error: #f62211;
--text-normal: fade(#fff, 80%);
--text-normal-pressed: fade(#fff, 80%);
--text-secondary: fade(#fff, 60%);
--text-tertiary: fade(#fff, 40%);
--text-link: #acbfff;
--text-inverse: #333;
--text-toolbar-header: fade(#fff, 80%);
--text-contrast-background: #fff;
--icon-normal: fade(#fff, 80%);
--icon-normal-pressed: fade(#fff, 80%);
--icon-inverse: #444;
--icon-toolbar-header: fade(#fff, 80%);
--icon-notification-badge: #000;
--icon-contrast-popover: #fff;
--icon-success: #090;
// Canvas colors
--canvas-background: #666666;
--canvas-content-background: #fff;
--canvas-page-border: #555;
--canvas-ruler-background: #555;
--canvas-ruler-margins-background: #444;
--canvas-ruler-mark: #b2b2b2;
--canvas-ruler-handle-border: #b2b2b2;
--canvas-ruler-handle-border-disabled: #717171;
--canvas-high-contrast: #fff;
--canvas-high-contrast-disabled: #888;
--canvas-cell-border: fade(#000, 10%);
--canvas-cell-title-border: #757575;
--canvas-cell-title-border-hover: #858585;
--canvas-cell-title-border-selected: #9e9e9e;
--canvas-cell-title-hover: #787878;
--canvas-cell-title-selected: #939393;
--canvas-dark-cell-title: #111;
--canvas-dark-cell-title-hover: #000;
--canvas-dark-cell-title-selected: #333;
--canvas-dark-cell-title-border: #282828;
--canvas-dark-cell-title-border-hover: #191919;
--canvas-dark-cell-title-border-selected: #474747;
--canvas-scroll-thumb: #404040;
--canvas-scroll-thumb-hover: #999;
--canvas-scroll-thumb-pressed: #adadad;
--canvas-scroll-thumb-border: #2a2a2a;
--canvas-scroll-thumb-border-hover: #2a2a2a;
--canvas-scroll-thumb-border-pressed: #2a2a2a;
--canvas-scroll-arrow: #999;
--canvas-scroll-arrow-hover: #404040;
--canvas-scroll-arrow-pressed: #404040;
--canvas-scroll-thumb-target: #999;
--canvas-scroll-thumb-target-hover: #404040;
--canvas-scroll-thumb-target-pressed: #404040;
// Others
--button-small-normal-icon-offset-x: -20px;
--button-small-active-icon-offset-x: -20px;
--button-large-normal-icon-offset-x: -31px;
--button-large-active-icon-offset-x: -31px;
--button-huge-normal-icon-offset-x: -28px;
--button-huge-active-icon-offset-x: -28px;
--modal-window-mask-opacity: 0.6;
--image-border-types-filter: invert(100%) brightness(4);
--image-border-types-filter-selected: invert(100%) brightness(4);
--component-normal-icon-filter: invert(100%);
--menu-icon-item-checked-offset-x: -20px;
}
}

View file

@ -0,0 +1,193 @@
// Brand colors
// -------------------------
@brand-primary: #428bca;
@brand-success: #5cb85c;
@brand-warning: #f0ad4e;
@brand-danger: #d9534f;
@brand-info: #5bc0de;
:root {
--toolbar-header-document: #446995;
--toolbar-header-spreadsheet: #40865c;
--toolbar-header-presentation: #aa5252;
--background-normal: #fff;
--background-toolbar: #f7f7f7;
--background-toolbar-additional: #efefef;
--background-primary-dialog-button: #444;
--background-tab-underline: #444;
--background-notification-popover: #fcfed7;
--background-notification-badge: #ffd112;
--background-scrim: fade(#000, 20%);
--background-loader: fade(#181818, 90%);
--highlight-button-hover: #e0e0e0;
--highlight-button-pressed: #ccc;
--highlight-button-pressed-hover: #bababa;
--highlight-primary-dialog-button-hover: #2b2b2b;
--highlight-header-button-hover: fade(#fff, 20%);
--highlight-header-button-pressed: fade(#fff, 25%);
--highlight-toolbar-tab-underline: #444;
--highlight-text-select: #3494fb;
--border-toolbar: #cbcbcb;
--border-divider: #dfdfdf;
--border-regular-control: #c0c0c0;
--border-toolbar-button-hover: #e0e0e0;
--border-preview-select: #aaa;
--border-control-focus: #848484;
--border-color-shading: fade(#000, 10%);
--border-error: #f62211;
--text-normal: fade(#000, 80%);
--text-normal-pressed: fade(#000, 80%);
--text-secondary: fade(#000, 60%);
--text-tertiary: fade(#000, 40%);
--text-link: #445799;
--text-inverse: #fff;
--text-toolbar-header: #fff;
--text-contrast-background: #fff;
--icon-normal: #444;
--icon-normal-pressed: #444;
--icon-inverse: #fff;
--icon-toolbar-header: #fff;
--icon-notification-badge: #000;
--icon-contrast-popover: #fff;
--icon-success: #090;
// Canvas
--canvas-background: #f0f0f0;
--canvas-content-background: #fff;
--canvas-page-border: #ccc;
--canvas-ruler-background: #fff;
--canvas-ruler-margins-background: #d9d9d9;
--canvas-ruler-mark: #555;
--canvas-ruler-handle-border: #555;
--canvas-ruler-handle-border-disabled: #bbb;
--canvas-high-contrast: #000;
--canvas-high-contrast-disabled: #999;
--canvas-cell-border: fade(black, 10%);
--canvas-cell-title-border: #d8d8d8;
--canvas-cell-title-border-hover: #c9c9c9;
--canvas-cell-title-border-selected: #bbb;
--canvas-cell-title-hover: #dfdfdf;
--canvas-cell-title-selected: #cfcfcf;
--canvas-dark-cell-title: #444;
--canvas-dark-cell-title-hover: #666 ;
--canvas-dark-cell-title-selected: #111;
--canvas-dark-cell-title-border: #3d3d3d;
--canvas-dark-cell-title-border-hover: #5c5c5c;
--canvas-dark-cell-title-border-selected: #0f0f0f;
--canvas-scroll-thumb: #f7f7f7;
--canvas-scroll-thumb-hover: #c0c0c0;
--canvas-scroll-thumb-pressed: #adadad;
--canvas-scroll-thumb-border: #c0c0c0;
--canvas-scroll-thumb-border-hover: #c0c0c0;
--canvas-scroll-thumb-border-pressed: #0%;
--canvas-scroll-arrow: #adadad;
--canvas-scroll-arrow-hover: #f7f7f7;
--canvas-scroll-arrow-pressed: #f7f7f7;
--canvas-scroll-thumb-target: #c0c0c0;
--canvas-scroll-thumb-target-hover: #f7f7f7;
--canvas-scroll-thumb-target-pressed: #f7f7f7;
// Others
//--button-small-normal-icon-offset-x: 0;
//--button-small-active-icon-offset-x: 0;
//--button-large-normal-icon-offset-x: 0;
//--button-large-active-icon-offset-x: 0;
//--button-huge-normal-icon-offset-x: 0;
//--button-huge-active-icon-offset-x: 0;
--button-header-normal-icon-offset-x: -20px;
--button-header-active-icon-offset-x: -20px;
//--menu-icon-item-checked-offset-x: 0;
--modal-window-mask-opacity: 0.2;
--image-border-types-filter: none;
--image-border-types-filter-selected: none;
--component-normal-icon-filter: none;
}
// Background
// -------------------------
@background-normal: var(--background-normal);
@background-toolbar: var(--background-toolbar);
@background-toolbar-additional: var(--background-toolbar-additional);
@background-primary-dialog-button: var(--background-primary-dialog-button);
@background-tab-underline: var(--background-tab-underline);
@background-notification-popover: var(--background-notification-popover);
@background-notification-badge: var(--background-notification-badge);
@background-scrim: var(--background-scrim);
@background-loader: var(--background-loader);
// Highlight
// -------------------------
@highlight-button-hover: var(--highlight-button-hover);
@highlight-button-pressed: var(--highlight-button-pressed);
@highlight-button-pressed-hover: var(--highlight-button-pressed-hover);
@highlight-primary-dialog-button-hover: var(--highlight-primary-dialog-button-hover);
@highlight-header-button-hover: var(--highlight-header-button-hover);
@highlight-header-button-pressed: var(--highlight-header-button-pressed);
@highlight-toolbar-tab-underline: var(--highlight-toolbar-tab-underline);
@highlight-text-select: var(--highlight-text-select);
// Border
// -------------------------
@border-toolbar: var(--border-toolbar);
@border-divider: var(--border-divider);
@border-regular-control: var(--border-regular-control);
@border-toolbar-button-hover: var(--border-toolbar-button-hover);
@border-preview-select: var(--border-preview-select);
@border-control-focus: var(--border-control-focus);
@border-color-shading: var(--border-color-shading);
@border-error: var(--border-error);
// Text
// -------------------------
@text-normal: var(--text-normal);
@text-normal-pressed: var(--text-normal-pressed);
@text-secondary: var(--text-secondary);
@text-tertiary: var(--text-tertiary);
@text-link: var(--text-link);
@text-inverse: var(--text-inverse);
@text-toolbar-header: var(--text-toolbar-header);
@text-contrast-background: var(--text-contrast-background);
// Icon
// -------------------------
@icon-normal: var(--icon-normal);
@icon-normal-pressed: var(--icon-normal-pressed);
@icon-inverse: var(--icon-inverse);
@icon-toolbar-header: var(--icon-toolbar-header);
@icon-contrast-popover: var(--icon-contrast-popover);
@icon-notification-badge: var(--icon-notification-badge);
@icon-success: var(--icon-success);
@button-small-normal-icon-offset-x: var(--button-small-normal-icon-offset-x,0);
@button-small-active-icon-offset-x: var(--button-small-active-icon-offset-x,0);
@button-large-normal-icon-offset-x: var(--button-large-normal-icon-offset-x, 0);
@button-large-active-icon-offset-x: var(--button-large-active-icon-offset-x, 0);
@button-huge-normal-icon-offset-x: var(--button-huge-normal-icon-offset-x, 0);
@button-huge-active-icon-offset-x: var(--button-huge-active-icon-offset-x, 0);
@button-header-normal-icon-offset-x: var(--button-header-normal-icon-offset-x, -20px);
@button-header-active-icon-offset-x: var(--button-header-active-icon-offset-x, -20px);
@component-normal-icon-filer: var(--component-normal-icon-filter);
@menu-icon-item-checked-offset-x: var(--menu-icon-item-checked-offset-x, 0);
// Canvas
// ---------------------------
@canvas-content-background: var(--canvas-content-background);

View file

@ -22,8 +22,17 @@
} }
} }
.image {
position: relative;
width: 100%;
height: 100%;
display: inline-block;
background-color: transparent;
margin: -1px 0 0 -3px;
}
img, .image { img, .image {
background: ~"url(@{common-image-const-path}/combo-border-size/BorderSize.png) no-repeat 0 0 #fff"; background: ~"url(@{common-image-const-path}/combo-border-size/BorderSize.png) no-repeat 0 0";
@media only screen { @media only screen {
//@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9), //@media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9),

View file

@ -10,8 +10,8 @@
width: @combo-dataview-width; width: @combo-dataview-width;
height: 100%; height: 100%;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
border: 1px solid @input-border; border: 1px solid @border-regular-control;
background-color: @input-bg; background-color: @background-normal;
.dataview { .dataview {
padding: 1px; padding: 1px;
@ -24,8 +24,8 @@
button { button {
border-radius:0 @border-radius-small @border-radius-small 0; border-radius:0 @border-radius-small @border-radius-small 0;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
background-color: @input-bg; background-color: @background-normal;
&.dropdown-toggle { &.dropdown-toggle {
.inner-box-caret { .inner-box-caret {
@ -35,15 +35,16 @@
.caret { .caret {
// width: 7px; // width: 7px;
// height: 7px; // height: 7px;
border: 0; // border: 0;
background-position: @arrow-small-offset-x @arrow-small-offset-y; // background-position: @arrow-small-offset-x @arrow-small-offset-y;
margin-left: 1px;
} }
} }
} }
} }
.dropdown-menu { .dropdown-menu {
border-color: @gray; border-color: @border-regular-control;
border-top-right-radius: 0; border-top-right-radius: 0;
border-top-left-radius: 2px; border-top-left-radius: 2px;
margin: 0; margin: 0;
@ -84,17 +85,17 @@
.item { .item {
padding: 3px; padding: 3px;
border: 1px solid @gray; border: 1px solid @border-regular-control;
.box-shadow(none); .box-shadow(none);
margin: 0 -1px -1px 0; margin: 0 -1px -1px 0;
&:hover { &:hover {
.box-inner-shadow(0 0 0 2px @gray); .box-inner-shadow(0 0 0 2px @border-regular-control);
} }
&.selected { &.selected {
.box-inner-shadow(0 0 0 2px @gray-darker); .box-inner-shadow(0 0 0 2px @border-preview-select);
} }
} }
@ -125,7 +126,7 @@
width: auto; width: auto;
position: relative; position: relative;
border: none; border: none;
.box-shadow(0 0 0 1px @body-bg); .box-shadow(0 0 0 1px @background-normal);
> div { > div {
background-repeat: no-repeat; background-repeat: no-repeat;
@ -142,15 +143,24 @@
padding: 0; padding: 0;
.caret { .caret {
width: 27px; //width: 27px;
height: 27px; //height: 27px;
background-position: @arrow-big-offset-x @arrow-big-offset-y; //background-position: @arrow-big-offset-x @arrow-big-offset-y;
transition: transform .2s; width: 8px;
height: 8px;
background-color: transparent;
border: solid 1px @icon-normal;
border-bottom: none;
border-right: none;
background-image: none;
transition: transform 0.2s ease;
transform: rotate(-135deg) translate(2px,2px);
} }
&.active { &.active {
.caret { .caret {
transform: rotate(180deg); transform: rotate(45deg);
} }
} }
} }
@ -188,7 +198,7 @@
&.disabled { &.disabled {
.item { .item {
&:hover:not(.selected) { &:hover:not(.selected) {
.box-shadow(0 0 0 1px @gray); .box-shadow(0 0 0 1px @border-regular-control);
} }
} }
} }
@ -238,7 +248,7 @@
.item { .item {
&:hover { &:hover {
.box-shadow(0 0 0 1px @gray); .box-shadow(0 0 0 1px @border-regular-control);
} }
} }
@ -265,13 +275,13 @@
.item { .item {
margin-left: 4px; margin-left: 4px;
.box-shadow(0 0 0 1px @gray); .box-shadow(0 0 0 1px @border-regular-control);
} }
&.disabled { &.disabled {
.item { .item {
&:hover:not(.selected) { &:hover:not(.selected) {
.box-shadow(0 0 0 1px @gray); .box-shadow(0 0 0 1px @border-regular-control);
} }
} }
} }

View file

@ -1,3 +1,6 @@
@img-borders-filter: var(--image-border-types-filter);
@img-borders-filter-selected: var(--image-border-types-filter-selected);
.combobox { .combobox {
display: block; display: block;
@ -23,36 +26,21 @@
padding-right: 7px + 2 * @padding-base-horizontal; padding-right: 7px + 2 * @padding-base-horizontal;
} }
&.input-group-nr > .btn {
&.dropdown-toggle {
.caret {
width: 7px;
height: 7px;
border: 0;
background-position: @arrow-small-offset-x @arrow-small-offset-y;
}
&:active,
&.active {
.caret {
background-position: @arrow-small-offset-x @arrow-small-offset-y;
}
}
}
}
.form-control { .form-control {
border-right: 0; border-right: 0;
position: static; position: static;
z-index: auto; z-index: auto;
float: none; float: none;
.image {
-webkit-filter: @img-borders-filter;
filter: @img-borders-filter;
}
} }
.btn, .btn {
.btn:hover,
.btn:focus {
border-left: 0; border-left: 0;
border-color: @input-border; border-color: @border-regular-control;
background-color: transparent; background-color: transparent;
margin-left: -1px; margin-left: -1px;
position: absolute; position: absolute;
@ -62,21 +50,33 @@
.btn-default:not(.disabled), .btn-default:not(.disabled),
&.open .dropdown-toggle.btn-default { &.open .dropdown-toggle.btn-default {
background-color: @input-bg; background-color: @background-normal;
border-color: @input-border; border-color: @border-regular-control;
padding-right: 4px;
}
.btn-default.disabled {
&:hover, &:focus {
background-color: transparent;
border-color: @border-regular-control;
}
} }
&.input-group-nr.open:not(.no-highlighted) { &.input-group-nr.open:not(.no-highlighted) {
& > .form-control, & > .form-control,
& > .btn { & > .btn {
border-color: @gray-darker; border-color: @border-control-focus;
.caret {
transform: rotate(45deg);
}
} }
} }
&.input-group-nr:not(.no-highlighted) > .form-control { &.input-group-nr:not(.no-highlighted) > .form-control {
&:focus, &:focus,
&:focus ~ button.dropdown-toggle { &:focus ~ button.dropdown-toggle {
border-color: @gray-darker; border-color: @border-control-focus;
} }
} }
@ -86,16 +86,16 @@
} }
&.selected { &.selected {
background-color: @primary; background-color: @highlight-button-pressed;
a { a {
color: @dropdown-link-active-color; color: @text-normal-pressed;
&:hover, &:hover,
&.hover, &.hover,
&:focus, &:focus,
&.focus { &.focus {
background-color: @primary; background-color: @highlight-button-pressed;
} }
} }
} }
@ -104,14 +104,23 @@
// Font combobox // Font combobox
// ------------------------ // ------------------------
li { li {
img {
-webkit-filter: @img-borders-filter;
filter: @img-borders-filter;
}
canvas {
-webkit-filter: @img-borders-filter;
filter: @img-borders-filter;
}
&.selected { &.selected {
img { img {
-webkit-filter: invert(100%) brightness(4); -webkit-filter: @img-borders-filter-selected;
filter: invert(100%) brightness(4); filter: @img-borders-filter-selected;
} }
canvas { canvas {
-webkit-filter: invert(100%) brightness(4); -webkit-filter: @img-borders-filter-selected;
filter: invert(100%) brightness(4); filter: @img-borders-filter-selected;
} }
} }
@ -141,7 +150,7 @@
&.input-group-nr:not(.no-highlighted) { &.input-group-nr:not(.no-highlighted) {
& > .form-control, & > .form-control,
& > .btn { & > .btn {
border-color: @gray-darker; border-color: @border-control-focus;
} }
} }
} }

View file

@ -1,77 +0,0 @@
.comments-panel {
display: table;
position: relative;
width: 100%;
height: 100%;
border-collapse: collapse;
font: 12px arial;
.row {
display: table-row;
}
.user-name {
color: @gray-deep;
font-size: 12px;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: default;
padding: 10px 10px 0 20px;
height: 26px;
max-width: 155px;
}
.color {
width: 12px;
height: 12px;
border: 1px solid @gray-dark;
margin: 0 5px 3px 0;
vertical-align: middle;
}
.user-date {
color: @gray-darker;
font-size: 10px;
padding: 0 0 0 20px;
height: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: default;
}
.user-quote {
color: @gray-darker;
font-style: italic;
border-left: 1px solid @gray-darker;
margin-left: 20px;
margin-top: 3px;
padding: 5px 9px 5px 9px;
white-space: pre-wrap;
cursor: pointer;
}
.user-message {
.user-select(text);
color: @black;
padding: 9px 10px 0 20px;
white-space: pre-wrap;
word-wrap: break-word;
cursor: default;
}
.user-reply {
color: @black;
border-bottom-width: 1px solid @black;
box-sizing: border-box;
height: auto;
margin-left: 18px;
margin-top: 10px;
white-space: pre-wrap;
width: auto;
cursor: pointer;
}
}

View file

@ -14,7 +14,7 @@
right: 0; right: 0;
bottom: 45px; bottom: 45px;
height: 300px; height: 300px;
border-bottom: 1px solid @gray-dark; border-bottom: 1px solid @border-toolbar;
&.stretch { &.stretch {
border-bottom: none; border-bottom: none;
@ -32,10 +32,10 @@
text-align: center; text-align: center;
label { label {
color: @black; color: @text-normal;
font: 12px arial; font: 12px arial;
line-height: normal; line-height: normal;
border-bottom: 1px dotted @black; border-bottom: 1px dotted @text-normal;
padding-top: 12px; padding-top: 12px;
outline: none; outline: none;
height: 29px; height: 29px;
@ -58,10 +58,10 @@
width: 100%; width: 100%;
resize: none; resize: none;
margin-bottom: 5px; margin-bottom: 5px;
border: 1px solid @gray-dark; border: 1px solid @border-regular-control;
height: 100%; height: 100%;
&:focus { &:focus {
border-color: @gray-darker; border-color: @border-control-focus;
} }
} }
} }
@ -83,19 +83,19 @@
line-height: normal; line-height: normal;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
color: @gray-darker; color: @border-preview-select;
textarea { textarea {
width: 100%; width: 100%;
height: 50px; height: 50px;
resize: none; resize: none;
margin-bottom: 5px; margin-bottom: 5px;
border: 1px solid @gray-dark; border: 1px solid @border-regular-control;
word-break: break-all; word-break: break-all;
line-height: 15px; line-height: 15px;
color: @gray-deep; color: @text-normal;
&:focus { &:focus {
border-color: @gray-darker; border-color: @border-control-focus;
} }
} }
@ -109,7 +109,7 @@
} }
.separator-cmt { .separator-cmt {
border-bottom: 1px solid @gray-dark; border-bottom: 1px solid @border-toolbar;
margin: 20px 0px 0px 0px; margin: 20px 0px 0px 0px;
} }
@ -119,7 +119,7 @@
} }
.user-name { .user-name {
color: @gray-deep; color: @text-normal;
font-size: 12px; font-size: 12px;
font-weight: bold; font-weight: bold;
overflow: hidden; overflow: hidden;
@ -133,7 +133,7 @@
.color { .color {
width: 12px; width: 12px;
height: 12px; height: 12px;
border: 1px solid @gray-dark; border: 1px solid @border-toolbar;
margin: 0 5px 3px 0; margin: 0 5px 3px 0;
vertical-align: middle; vertical-align: middle;
} }
@ -177,7 +177,7 @@
} }
.user-message { .user-message {
color: @black; color: @text-normal;
padding: 9px 0px 0 0px; padding: 9px 0px 0 0px;
white-space: pre-wrap; white-space: pre-wrap;
word-wrap: break-word; word-wrap: break-word;
@ -200,11 +200,11 @@
} }
.user-reply { .user-reply {
color: @black; color: @text-normal;
margin-top: 10px; margin-top: 10px;
white-space: pre-wrap; white-space: pre-wrap;
width: auto; width: auto;
border-bottom: 1px dotted @black; border-bottom: 1px dotted @text-normal;
height: 16px; height: 16px;
cursor: pointer; cursor: pointer;
} }
@ -265,7 +265,25 @@
} }
.btn-resolve { .btn-resolve {
background-position: -2px -253px; position: relative;
&:after {
content: '';
position: absolute;
border: solid @text-normal;
border-width: 0 2px 2px 0;
transform: rotate(40deg);
width: 7px;
height: 12px;
left: 6px;
top: -2px;
}
&.comment-resolved {
&:after {
border-color: @icon-success;
}
}
} }
.btn-resolve-check { .btn-resolve-check {
@ -402,12 +420,12 @@
left: 2px; left: 2px;
width: 15px; width: 15px;
height: 15px; height: 15px;
background-color: #ffffff; background-color: @background-normal;
-moz-transform: rotate(45deg); -moz-transform: rotate(45deg);
-ms-transform: rotate(45deg); -ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg); -webkit-transform: rotate(45deg);
-o-transform: rotate(45deg); -o-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border: solid 1px @gray-dark; border: solid 1px @border-toolbar;
} }
} }

View file

@ -1,6 +1,6 @@
label { label {
&.link { &.link {
border-bottom: 1px dotted #aaa; border-bottom: 1px dotted @text-secondary;
cursor: pointer; cursor: pointer;
&.disabled { &.disabled {
@ -9,7 +9,7 @@ label {
} }
&.link-solid { &.link-solid {
border-bottom: 1px solid #aaa; border-bottom: 1px solid @text-secondary;
cursor: pointer; cursor: pointer;
&.disabled { &.disabled {
@ -36,4 +36,62 @@ label {
.user-select { .user-select {
.user-select(text); .user-select(text);
} }
.dropdown-menu {
> li > a {
color: @text-normal;
}
}
textarea {
background-color: @background-normal;
color: @text-normal
}
.btn-edit-table,
.btn-change-shape {
.background-ximage-v2('right-panels/rowscols_icon.png', 84px);
margin-right: 2px !important;
margin-bottom: 1px !important;
}
.btn-edit-table {
background-position: 0 0;
button.over & {
//background-position: -28px 0;
}
.btn-group.open &,
button.active:not(.disabled) &,
button:active:not(.disabled) &
{
//background-position: -56px 0;
}
// TODO: not good, must be controled by variable
.theme-dark & {
background-position-x: -56px;
}
}
.btn-change-shape {
background-position: 0 -16px;
button.over & {
//background-position: -28px -16px;
}
.btn-group.open &,
button.active:not(.disabled) &,
button:active:not(.disabled) &
{
//background-position: -56px -16px;
}
// TODO: not good, must be controled by variable
.theme-dark & {
background-position-x: -56px;
}
}

View file

@ -9,7 +9,7 @@
text-align: center; text-align: center;
height: 100%; height: 100%;
width: 100%; width: 100%;
color: #b2b2b2; color: @text-tertiary;
td { td {
padding: 5px; padding: 5px;
} }
@ -22,11 +22,11 @@
margin: 4px; margin: 4px;
cursor: pointer; cursor: pointer;
.box-shadow(0 0 0 1px @gray); .box-shadow(0 0 0 1px @border-regular-control);
&:hover, &:hover,
&.selected { &.selected {
.box-shadow(0 0 0 2px @primary); .box-shadow(0 0 0 2px @border-preview-select);
} }
} }
@ -58,11 +58,11 @@
opacity: 0.5; opacity: 0.5;
} }
.box-shadow(0 0 0 1px @gray); .box-shadow(0 0 0 1px @border-regular-control);
&:hover:not(.disabled), &:hover:not(.disabled),
&.selected:not(.disabled) { &.selected:not(.disabled) {
.box-shadow(0 0 0 2px @primary); .box-shadow(0 0 0 2px @highlight-button-pressed);
} }
} }
} }

View file

@ -3,6 +3,9 @@
} }
.dropdown-menu { .dropdown-menu {
background-color: @background-normal;
border-color: @border-regular-control;
&.scrollable-menu { &.scrollable-menu {
height: auto; height: auto;
max-height: 400px; max-height: 400px;
@ -30,22 +33,32 @@
& > a { & > a {
padding: 5px 20px; padding: 5px 20px;
cursor: pointer; cursor: pointer;
color: @text-normal;
&:focus, &.focus { &:focus, &.focus {
outline: 0; outline: 0;
} }
&.focus { &.focus {
text-decoration: none; //text-decoration: none;
color: @dropdown-link-hover-color; //color: @dropdown-link-hover-color;
background-color: @dropdown-link-hover-bg; //background-color: @dropdown-link-hover-bg;
}
&:hover {
color: @text-normal-pressed;
background-color: @highlight-button-hover;
} }
} }
&.over > a { &.over > a {
text-decoration: none; text-decoration: none;
color: @dropdown-link-hover-color; color: @text-normal-pressed;
background-color: @dropdown-link-hover-bg; background-color: @highlight-button-hover;
&:after {
border-left-color: @icon-normal-pressed;
}
} }
.checked:not(.no-checkmark) { .checked:not(.no-checkmark) {
@ -80,7 +93,7 @@
.no-checkmark.checked { .no-checkmark.checked {
.menu-item-icon { .menu-item-icon {
background-color: @primary; background-color: @highlight-button-pressed;
border-radius: 2px; border-radius: 2px;
} }
} }
@ -107,4 +120,8 @@
} }
} }
} }
.divider {
background-color: @border-divider;
}
} }

View file

@ -23,7 +23,7 @@
border-color: transparent; border-color: transparent;
border-style: solid; border-style: solid;
border-width: 3px 0 3px 3px; border-width: 3px 0 3px 3px;
border-left-color: @dropdown-link-color; border-left-color: @icon-normal;
margin-top: 5px; margin-top: 5px;
margin-right: -10px; margin-right: -10px;
} }

View file

@ -37,7 +37,7 @@
width: 63px; width: 63px;
height: 20px; height: 20px;
background-color: transparent; background-color: transparent;
border: 1px solid rgb(190, 190, 190); border: 1px solid @border-regular-control;
&.top { &.top {
border-bottom: none; border-bottom: none;

View file

@ -29,7 +29,7 @@
.toolbar { .toolbar {
.extra { .extra {
svg.icon { svg.icon {
fill: #fff; fill: @icon-toolbar-header;
} }
.btn-slot { .btn-slot {
@ -57,12 +57,12 @@
} }
label { label {
color: #fff; color: @text-toolbar-header;
} }
.dropdown-menu { .dropdown-menu {
label { label {
color: @gray-deep; color: @text-normal;
} }
} }
@ -70,13 +70,13 @@
.btn-header { .btn-header {
&:hover { &:hover {
&:not(.disabled):not(.icon) { &:not(.disabled):not(.icon) {
background-color: rgba(255,255,255,0.2); background-color: @highlight-header-button-hover;
} }
} }
&:active, &.active { &:active, &.active {
&:not(.disabled):not(.icon) { &:not(.disabled):not(.icon) {
background-color: rgba(0,0,0,0.2); background-color: @highlight-header-button-pressed;
} }
} }
@ -98,30 +98,18 @@
min-width: 50px; min-width: 50px;
text-align: center; text-align: center;
color: #fff; color: @text-toolbar-header;
background-color: transparent; background-color: transparent;
border: 0 none; border: 0 none;
cursor: default; cursor: default;
line-height: 32px; line-height: 32px;
//&:hover:not(:disabled) {
// border: 1px solid @gray-dark;
// background-color: rgba(255,255,255,0.2);
//}
//
//&:focus:not(:active) {
// border: 1px solid @gray-dark;
// cursor: text;
// background-color: white;
// color: @gray-deep;
//}
} }
#rib-save-status { #rib-save-status {
white-space: nowrap; white-space: nowrap;
&.locked { &.locked {
text-decoration: none; text-decoration: none;
color: @gray-darker; color: @border-preview-select;
cursor: default; cursor: default;
} }
@ -191,7 +179,7 @@
padding: 0; padding: 0;
&.icon--inverse { &.icon--inverse {
background-position-x: -20px; background-position-x: @button-header-normal-icon-offset-x;
} }
} }
@ -259,7 +247,7 @@
} }
label { label {
color: @gray-deep; color: @text-normal;
} }
.cousers-list { .cousers-list {
@ -288,12 +276,12 @@
height: 12px; height: 12px;
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
border: 1px solid @gray-dark; border: 1px solid @border-toolbar;
margin: 0 5px 1px 0; margin: 0 5px 1px 0;
} }
.user-name { .user-name {
color: @gray-deep; color: @text-normal;
font-size: 12px; font-size: 12px;
font-weight: bold; font-weight: bold;
white-space: nowrap; white-space: nowrap;
@ -332,7 +320,17 @@
position: relative; position: relative;
&.icon--inverse { &.icon--inverse {
background-position-x: -20px; background-position-x: @button-header-normal-icon-offset-x;
}
}
.btn& {
&:active, &.active {
.icon.toolbar__icon {
&.icon--inverse {
background-position-x: @button-header-active-icon-offset-x;
}
}
} }
} }
@ -355,7 +353,7 @@
&:hover { &:hover {
&:not(.disabled) { &:not(.disabled) {
background-color: rgba(255,255,255,0.2); background-color: @highlight-header-button-hover;
} }
} }
@ -373,10 +371,10 @@
} }
#box-document-title { #box-document-title {
background-color: @tabs-bg-color; background-color: @header-background-color;
display: flex; display: flex;
height: 100%; height: 100%;
color:#fff; color: @text-toolbar-header;
position: relative; position: relative;
.btn-slot { .btn-slot {
@ -384,7 +382,7 @@
} }
svg.icon { svg.icon {
fill: #fff; fill: @icon-toolbar-header;
&.icon-save { &.icon-save {
&.btn-save-coauth, &.btn-synch { &.btn-save-coauth, &.btn-synch {

View file

@ -1,6 +1,6 @@
#history-box { #history-box {
position: relative; position: relative;
border-right: 1px solid #cbcbcb; border-right: 1px solid @border-toolbar;
} }
#history-header { #history-header {
@ -10,7 +10,7 @@
top: 0; top: 0;
right: 0; right: 0;
overflow: hidden; overflow: hidden;
border-bottom: 1px solid @gray-dark; border-bottom: 1px solid @border-toolbar;
#history-btn-back { #history-btn-back {
height: 27px; height: 27px;
@ -21,7 +21,7 @@
cursor: pointer; cursor: pointer;
&:hover { &:hover {
background-color: @secondary; background-color: @highlight-button-hover;
} }
} }
} }
@ -33,7 +33,7 @@
bottom: 0; bottom: 0;
right: 0; right: 0;
overflow: hidden; overflow: hidden;
border-top: 1px solid @gray-dark; border-top: 1px solid @border-toolbar;
#history-btn-expand { #history-btn-expand {
height: 27px; height: 27px;
@ -44,7 +44,7 @@
cursor: pointer; cursor: pointer;
&:hover { &:hover {
background-color: @secondary; background-color: @highlight-button-hover;
} }
} }
} }
@ -64,20 +64,15 @@
&:hover:not(.selected), &:hover:not(.selected),
&.over { &.over {
background-color: @secondary; background-color: @highlight-button-hover;
.user-version {
color: #fff;
background-color: #ababab;
}
} }
&.selected { &.selected {
background-color: @primary; background-color: @highlight-button-pressed;
.user-name, .user-name,
.user-date { .user-date {
color: #fff; color: @text-normal-pressed;
} }
.revision-expand { .revision-expand {
@ -88,7 +83,7 @@
.history-item-wrap { .history-item-wrap {
padding: 10px 2px 15px 20px; padding: 10px 2px 15px 20px;
color: @gray-deep; color: @text-normal;
text-overflow: ellipsis; text-overflow: ellipsis;
.user-date { .user-date {
@ -104,11 +99,12 @@
display: inline-block; display: inline-block;
max-width: 60px; max-width: 60px;
height: 18px; height: 18px;
color: @primary; color: @highlight-button-pressed;
font-size: 10px; font-size: 10px;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
background-color: #e6e6e6; color: @text-tertiary;
background-color: @background-normal;
text-align: center; text-align: center;
padding: 1px 5px; padding: 1px 5px;
border-radius: 2px; border-radius: 2px;
@ -128,7 +124,7 @@
.color { .color {
width: 12px; width: 12px;
height: 12px; height: 12px;
border: 1px solid @gray-dark; border: 1px solid @border-toolbar;
margin: 0 5px 3px 0; margin: 0 5px 3px 0;
vertical-align: middle; vertical-align: middle;
} }
@ -148,8 +144,8 @@
} }
.revision-restore { .revision-restore {
color: #fff; color: @text-normal;
border-bottom: 1px dotted #fff; border-bottom: 1px dotted @text-normal;
height: 16px; height: 16px;
margin-top: 5px; margin-top: 5px;
white-space: pre-wrap; white-space: pre-wrap;

View file

@ -8,7 +8,7 @@
width: 22px; width: 22px;
height: 22px; height: 22px;
float: left; float: left;
border: 1px solid #C4C4C4; border: 1px solid @border-regular-control;
background-image: none; background-image: none;
background-position: 0 -206px; background-position: 0 -206px;
background-repeat: no-repeat; background-repeat: no-repeat;
@ -22,7 +22,7 @@
} }
.color-text { .color-text {
color: #464646; color: @text-normal;
height: 22px; height: 22px;
padding: 4px 32px; padding: 4px 32px;
cursor: default; cursor: default;
@ -34,7 +34,7 @@
width: 195px; width: 195px;
height: 196px; height: 196px;
position: relative; position: relative;
border: 1px solid #C4C4C4; border: 1px solid @border-regular-control;
background-position: 0 0; background-position: 0 0;
} }
@ -49,7 +49,7 @@
width: 10px; width: 10px;
height: 100%; height: 100%;
position: relative; position: relative;
border: 1px solid #C4C4C4; border: 1px solid @border-regular-control;
background-position: -195px 0; background-position: -195px 0;
} }
@ -70,7 +70,7 @@
} }
.empty-color { .empty-color {
color: #464646; color: @text-normal;
height: 16px; height: 16px;
margin: 5px 0; margin: 5px 0;
@ -91,7 +91,7 @@
height: 10px; height: 10px;
margin-right: 5px; margin-right: 5px;
margin-top: 1px; margin-top: 1px;
border: 1px solid #C4C4C4; border: 1px solid @border-regular-control;
} }
} }
} }

View file

@ -1,11 +1,14 @@
.form-control { .form-control {
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
.box-shadow(none); .box-shadow(none);
color: @gray-deep; color: @text-normal;
.user-select(text); .user-select(text);
border: 1px solid @border-regular-control;
background-color: @background-normal;
&:focus { &:focus {
border-color: @input-border; border-color: @border-control-focus;
outline: 0; outline: 0;
.box-shadow(none); .box-shadow(none);
} }
@ -13,12 +16,12 @@
.form-control[readonly] { .form-control[readonly] {
cursor: pointer; cursor: pointer;
background-color: @input-bg; background-color: @background-normal;
} }
.form-control[disabled] { .form-control[disabled] {
cursor: default; cursor: default;
background-color: @input-bg; background-color: @background-normal;
.user-select(none); .user-select(none);
} }
@ -49,7 +52,7 @@
&.form-control:focus, &.form-control:focus,
.form-control:focus { .form-control:focus {
border-color: @gray-darker; //border-color: @border-control-focus;
} }
&.error { &.error {
@ -99,12 +102,12 @@ input[type="password"] {
} }
input[type="text"]::selection, textarea::selection { input[type="text"]::selection, textarea::selection {
background: #3494fb; background: @highlight-text-select;
color: white; color: @text-inverse;
} }
textarea.form-control:focus { textarea.form-control:focus {
border-color: @gray-darker; //border-color: @border-control-focus;
} }
.input-field-btn { .input-field-btn {

View file

@ -12,7 +12,7 @@ li {
&.selected, a.checked { &.selected, a.checked {
.icon.spellcheck-lang { .icon.spellcheck-lang {
background-position-x: -20px; --bgX: -20px; background-position-x: @button-small-active-icon-offset-x;
} }
} }
} }
@ -23,10 +23,10 @@ li {
&:before { &:before {
display: none; display: none;
} }
background-color: @primary; background-color: @highlight-button-pressed;
&, &:hover, &:focus { &, &:hover, &:focus {
color: @dropdown-link-active-color; color: @text-normal-pressed;
} }
} }
} }

View file

@ -17,7 +17,7 @@
.layout-resizer { .layout-resizer {
z-index: @zindex-dropdown - 10; z-index: @zindex-dropdown - 10;
background: @gray-light; background: @background-toolbar;
border: 0 none; border: 0 none;
&.move { &.move {
@ -36,8 +36,8 @@
cursor: row-resize; cursor: row-resize;
&.move { &.move {
border-top: solid 1px @gray-dark; border-top: solid 1px @border-toolbar;
border-bottom: solid 1px @gray-dark; border-bottom: solid 1px @border-toolbar;
} }
} }
} }
@ -53,8 +53,8 @@
cursor: col-resize; cursor: col-resize;
&.move { &.move {
border-left: solid 1px @gray-dark; border-left: solid 1px @border-toolbar;
border-right: solid 1px @gray-dark; border-right: solid 1px @border-toolbar;
} }
} }
} }

View file

@ -1,5 +1,5 @@
.listview { .listview {
border: 1px solid @input-border; border: 1px solid @border-regular-control;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
line-height: 15px; line-height: 15px;
@ -14,7 +14,7 @@
text-align: center; text-align: center;
width: 100%; width: 100%;
height: 100%; height: 100%;
color: #b2b2b2; color: @text-tertiary;
td { td {
padding: 5px; padding: 5px;
} }
@ -22,7 +22,7 @@
} }
&:not(.no-focus):focus { &:not(.no-focus):focus {
border-color: @gray-darker; border-color: @border-preview-select;
} }
& > .item { & > .item {
@ -32,25 +32,25 @@
cursor: pointer; cursor: pointer;
white-space: pre-wrap; white-space: pre-wrap;
background-color: @list-group-bg; background-color: @background-normal;
border-color: @list-group-border; border-color: @border-regular-control;
border-style: solid; border-style: solid;
border-width: 1px 0; border-width: 1px 0;
border-top-color: #fafafa; border-top-color: transparent;
} }
&:not(.disabled) > .item { &:not(.disabled) > .item {
&:hover { &:hover {
background-color: @secondary; background-color: @highlight-button-hover;
border-color: @secondary; border-color: @highlight-button-hover;
border-style: solid; border-style: solid;
border-width: 1px 0; border-width: 1px 0;
} }
&.selected { &.selected {
background-color: @primary; background-color: @highlight-button-pressed;
color: #fff; color: @text-normal-pressed;
border-color: @primary; border-color: @highlight-button-pressed;
border-style: solid; border-style: solid;
border-width: 1px 0; border-width: 1px 0;
} }

View file

@ -22,8 +22,8 @@
line-height: @loadmask-image-height; line-height: @loadmask-image-height;
border: none; border: none;
background-image: none; background-image: none;
background-color: fade(@gray-deep, 95%); background-color: @background-loader;
color: @gray-light; color: @text-contrast-background;
.border-radius(@border-radius-large); .border-radius(@border-radius-large);
left: 50%; left: 50%;
@ -52,7 +52,7 @@
.left-panel & { .left-panel & {
line-height: @loadmask-small-image-height; line-height: @loadmask-small-image-height;
background-color: transparent; background-color: transparent;
color: @gray-deep; color: @text-normal;
padding: 8px; padding: 8px;
top: 78px; top: 78px;
transform: translate(-50%, 0); transform: translate(-50%, 0);

View file

@ -1,10 +1,10 @@
.masked-field { .masked-field {
text-align: right; text-align: right;
border: 1px solid @gray; border: 1px solid @border-regular-control;
border-radius: 2px; border-radius: 2px;
padding: 0 3px; padding: 0 3px;
&:focus { &:focus {
border-color: @gray-darker; border-color: @border-preview-select;
} }
} }

View file

@ -12,19 +12,19 @@
left: 2px; left: 2px;
width: 9px; width: 9px;
height: 9px; height: 9px;
background-color: #ffffff; background-color: @background-normal;
-moz-transform: rotate(45deg); -moz-transform: rotate(45deg);
-ms-transform: rotate(45deg); -ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg); -webkit-transform: rotate(45deg);
-o-transform: rotate(45deg); -o-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
border-top: solid 1px @gray-darker; border-top: solid 1px @border-regular-control;
border-left: solid 1px @gray-darker; border-left: solid 1px @border-regular-control;
border-radius: 0 3px; border-radius: 0 3px;
box-sizing: content-box; box-sizing: content-box;
.thumb-top-inner { .thumb-top-inner {
border-top: solid 1px #fff; border-top: solid 1px @background-normal;
border-left: solid 1px #fff; border-left: solid 1px @background-normal;
height: 100%; height: 100%;
} }
} }
@ -35,13 +35,13 @@
left: 1px; left: 1px;
width: 10px; width: 10px;
height: 9px; height: 9px;
background-color: #ffffff; background-color: @background-normal;
border: solid 1px @gray-darker; border: solid 1px @border-regular-control;
border-top: none; border-top: none;
border-radius: 2px; border-radius: 2px;
box-sizing: content-box; box-sizing: content-box;
.thumb-bottom-inner { .thumb-bottom-inner {
border: solid 1px #fff; border: solid 1px @border-regular-control;
border-top: none; border-top: none;
height: 100%; height: 100%;
} }
@ -49,11 +49,11 @@
&.active { &.active {
.thumb-top { .thumb-top {
border-top: solid 1px #000; border-top: solid 1px @border-control-focus;
border-left: solid 1px #000; border-left: solid 1px @border-control-focus;
} }
.thumb-bottom { .thumb-bottom {
border: solid 1px #000; border: solid 1px @border-control-focus;
border-top: none; border-top: none;
} }
} }
@ -80,8 +80,8 @@
// filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */ // filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
background-position: 0 0; background-position: 0 0;
outline: 1px solid rgba(162, 162, 162, 1); outline: 1px solid @border-control-focus;
border: 1px solid #FFFFFF; border: 1px solid @border-regular-control;
cursor: copy; cursor: copy;
} }
} }

View file

@ -43,7 +43,7 @@
height: 110px !important; height: 110px !important;
position:relative; position:relative;
overflow:hidden; overflow:hidden;
border: @gray-soft solid 1px; border: @border-regular-control solid 1px;
} }
#id-preview-data { #id-preview-data {
@ -59,7 +59,7 @@
td { td {
padding: 1px 8px 1px 0; padding: 1px 8px 1px 0;
border-right: @gray-soft solid 1px; border-right: @border-regular-control solid 1px;
min-width: 30px; min-width: 30px;
height: 17px; height: 17px;
white-space: nowrap; white-space: nowrap;

View file

@ -26,11 +26,11 @@
&:hover, &:hover,
&.over { &.over {
background-color: @secondary; background-color: @highlight-button-hover;
} }
&.selected { &.selected {
background-color: @primary; background-color: @highlight-button-pressed;
color: #fff; color: #fff;
} }
} }
@ -82,7 +82,7 @@
width: 100%; width: 100%;
height: 38px; height: 38px;
padding: 10px 12px; padding: 10px 12px;
border-bottom: 1px solid @gray-dark; border-bottom: 1px solid @border-toolbar;
label { label {
width: 100%; width: 100%;
@ -118,7 +118,7 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
opacity: 0.4; opacity: 0.4;
background-color: @gray-light; background-color: @background-toolbar;
z-index: @zindex-tooltip + 1; z-index: @zindex-tooltip + 1;
} }

View file

@ -18,8 +18,8 @@
width: 14px; width: 14px;
height: 14px; height: 14px;
background: #fff; background: @background-normal;
border: 1px solid @gray; border: 1px solid @border-regular-control;
border-radius: 50%; border-radius: 50%;
} }
@ -28,7 +28,7 @@
&::before { &::before {
content: ''; content: '';
position: absolute; position: absolute;
background: @gray-deep; background: @text-normal;
border-radius: 50%; border-radius: 50%;
width: 8px; width: 8px;
height: 8px; height: 8px;

View file

@ -11,13 +11,13 @@
} }
.ps-scrollbar-x { .ps-scrollbar-x {
background-color: @gray-light; background-color: @background-toolbar;
&.always-visible-x { &.always-visible-x {
bottom: 0px; bottom: 0px;
height: 9px; height: 9px;
background-color: @gray-light; background-color: @background-toolbar;
background-image: data-uri('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAuSURBVChTY6AfOH/+/H9SaSYQg1RAlqZhCT5+/AgOSlJoOgY50DqSNZJhEwMDACkvNZLpune5AAAAAElFTkSuQmCC'); background-image: data-uri('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAuSURBVChTY6AfOH/+/H9SaSYQg1RAlqZhCT5+/AgOSlJoOgY50DqSNZJhEwMDACkvNZLpune5AAAAAElFTkSuQmCC');
background-repeat: no-repeat; background-repeat: no-repeat;
@ -31,7 +31,7 @@
background-position: center 0; background-position: center 0;
.border-radius(2px); .border-radius(2px);
border: 1px solid @gray; border: 1px solid @border-regular-control;
-o-transition: background-color .5s 0 linear; -o-transition: background-color .5s 0 linear;
-webkit-transition: background-color .5s 0 linear; -webkit-transition: background-color .5s 0 linear;
-moz-transition: background-color .5s 0 linear; -moz-transition: background-color .5s 0 linear;
@ -43,7 +43,7 @@
.hover { .hover {
.ps-scrollbar-x { .ps-scrollbar-x {
&.always-visible-x { &.always-visible-x {
background-color: @gray; background-color: @border-regular-control;
background-position: center -7px; background-position: center -7px;
} }
} }
@ -52,8 +52,8 @@
&.in-scrolling { &.in-scrolling {
.ps-scrollbar-x { .ps-scrollbar-x {
&.always-visible-x { &.always-visible-x {
background-color: @gray-soft; background-color: @border-regular-control;
border-color: @gray-soft; border-color: @border-regular-control;
background-position: center -7px; background-position: center -7px;
} }
} }
@ -72,20 +72,20 @@
} }
.ps-scrollbar-y { .ps-scrollbar-y {
background-color: @gray-light; background-color: @background-toolbar;
&.always-visible-y { &.always-visible-y {
right: 0px; right: 0px;
width: 9px; width: 9px;
background-color: @gray-light; background-color: @background-toolbar;
.background-ximage('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAQAAAAz1Zf0AAAAIUlEQVR42mNgAILz/0GQAQo+/gdBBqLAqE5ydH5k+sgEANHgUH2JtDRHAAAAAElFTkSuQmCC', .background-ximage('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAQAAAAz1Zf0AAAAIUlEQVR42mNgAILz/0GQAQo+/gdBBqLAqE5ydH5k+sgEANHgUH2JtDRHAAAAAElFTkSuQmCC',
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAaAgMAAADZOtQaAAAACVBMVEUAAADPz8/x8fFVrc9qAAAAAXRSTlMAQObYZgAAABZJREFUeNpjYAgNYOBaxcDEgAsMLXkA/sUJfm1m4l8AAAAASUVORK5CYII=', 14px); 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAaAgMAAADZOtQaAAAACVBMVEUAAADPz8/x8fFVrc9qAAAAAXRSTlMAQObYZgAAABZJREFUeNpjYAgNYOBaxcDEgAsMLXkA/sUJfm1m4l8AAAAASUVORK5CYII=', 14px);
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0 center; background-position: 0 center;
.border-radius(2px); .border-radius(2px);
border: 1px solid @gray; border: 1px solid @border-regular-control;
-o-transition: background-color .5s 0 linear; -o-transition: background-color .5s 0 linear;
-webkit-transition: background-color .5s 0 linear; -webkit-transition: background-color .5s 0 linear;
-moz-transition: background-color .5s 0 linear; -moz-transition: background-color .5s 0 linear;
@ -97,7 +97,7 @@
.hover { .hover {
.ps-scrollbar-y { .ps-scrollbar-y {
&.always-visible-y { &.always-visible-y {
background-color: @gray; background-color: @border-regular-control;
background-position: -7px center; background-position: -7px center;
} }
} }
@ -106,8 +106,8 @@
&.in-scrolling { &.in-scrolling {
.ps-scrollbar-y { .ps-scrollbar-y {
&.always-visible-y { &.always-visible-y {
background-color: @gray-soft; background-color: @border-regular-control;
border-color: @gray-soft; border-color: @border-regular-control;
background-position: -7px center; background-position: -7px center;
} }
} }

View file

@ -9,7 +9,7 @@
.separator { .separator {
display: inline-block; display: inline-block;
position: inherit; position: inherit;
border-left: 1px solid @gray-dark; border-left: 1px solid @border-divider;
vertical-align: top; vertical-align: top;
padding: 0; padding: 0;
width: 0; width: 0;
@ -20,6 +20,6 @@
border-left: none; border-left: none;
border-right: none; border-right: none;
border-top: 1px solid @gray-dark; border-top: 1px solid @border-divider;
} }
} }

View file

@ -10,7 +10,7 @@
padding-right: @trigger-width + 2px; padding-right: @trigger-width + 2px;
&:focus { &:focus {
border-color: @gray-darker; // border-color: @border-preview-select;
} }
} }
@ -18,7 +18,7 @@
display: block; display: block;
position: relative; position: relative;
width: @trigger-width; width: @trigger-width;
height: @spin-height/2; height: @spin-height/2 - 1;
padding: 0; padding: 0;
margin: 0; margin: 0;
border: none; border: none;
@ -39,35 +39,39 @@
position: absolute; position: absolute;
top: 0; top: 0;
right: 1px; right: 1px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
i { i {
display: inline-block; display: inline-block;
width: @trigger-width; width: 4px;
height: @spin-height/2; height: 4px;
border: solid 1px @icon-normal;
border-bottom: none;
border-right: none;
} }
button { button {
&.disabled { &.disabled {
opacity: .35; opacity: .35;
} }
&:hover {
background-color: @highlight-button-hover;
}
} }
} }
.spinner-up { .spinner-up {
i { i {
background-position: @spinner-offset-x @spinner-offset-y; transform: rotate(45deg) translate(-1px,-1px);
} }
&.over i { background-position: @spinner-offset-x - @trigger-width @spinner-offset-y; }
&.active i { background-position: @spinner-offset-x @spinner-offset-y; }
} }
.spinner-down { .spinner-down {
i { i {
background-position: @spinner-offset-x @spinner-offset-y - @spin-height / 2; transform: rotate(-135deg) translate(2px,2px);
} }
&.over i { background-position: @spinner-offset-x - @trigger-width @spinner-offset-y - @spin-height / 2; }
&.active i { background-position: @spinner-offset-x @spinner-offset-y - @spin-height / 2; }
} }
} }

View file

@ -8,7 +8,7 @@
.sw-left { .sw-left {
display: inline-block; display: inline-block;
height: 100%; height: 100%;
background-color: @primary; background-color: @highlight-button-pressed;
border-top-left-radius: 2px; border-top-left-radius: 2px;
border-bottom-left-radius: 2px; border-bottom-left-radius: 2px;
} }
@ -16,7 +16,7 @@
.sw-right { .sw-right {
display: inline-block; display: inline-block;
height: 100%; height: 100%;
background-color: @gray; background-color: @border-regular-control;
border-top-right-radius: 2px; border-top-right-radius: 2px;
border-bottom-right-radius: 2px; border-bottom-right-radius: 2px;
} }
@ -27,8 +27,8 @@
right: auto; right: auto;
top: 0; top: 0;
height: 100%; height: 100%;
background-color: #ffffff; background-color: @background-normal;
border: 1px solid @primary; border: 1px solid @highlight-button-pressed;
border-radius: 3px; border-radius: 3px;
} }
@ -43,11 +43,11 @@
cursor: default; cursor: default;
.sw-left { .sw-left {
background-color: @gray; background-color: @border-regular-control;
} }
.thumb { .thumb {
border-color: @gray; border-color: @border-regular-control;
} }
} }
} }

View file

@ -7,9 +7,9 @@
.cell{ .cell{
width: 31px; width: 31px;
height: 33px; height: 33px;
border-right: 1px solid @gray-soft; border-right: 1px solid @border-regular-control;
border-bottom: 1px solid @gray-soft; border-bottom: 1px solid @border-regular-control;
background: #ffffff; background: @background-normal;
align-content: center; align-content: center;
vertical-align: middle; vertical-align: middle;
text-align: center; text-align: center;
@ -24,7 +24,7 @@
} }
.cell-selected{ .cell-selected{
background-color: @gray-darker; background-color: @border-preview-select;
color: white; color: white;
} }
} }
@ -33,7 +33,7 @@
width: 100%; width: 100%;
height: 32px; height: 32px;
overflow: hidden; overflow: hidden;
border: @gray-soft solid 1px; border: @border-regular-control solid 1px;
} }
#symbol-table-scrollable-div { #symbol-table-scrollable-div {
@ -42,7 +42,7 @@
height: 132px; height: 132px;
position:relative; position:relative;
overflow:hidden; overflow:hidden;
border: @gray-soft solid 1px; border: @border-regular-control solid 1px;
} }
#id-preview-data { #id-preview-data {

View file

@ -99,7 +99,7 @@
.asc-synchronizetip { .asc-synchronizetip {
padding: 15px 8px 15px 15px; padding: 15px 8px 15px 15px;
border-radius: 5px; border-radius: 5px;
background-color: #fcfed7; background-color: @background-notification-popover;
overflow: visible; overflow: visible;
.right & { .right & {
@ -123,7 +123,7 @@
position: absolute; position: absolute;
top: 5px; top: 5px;
left: 8px; left: 8px;
background-color: #fcfed7; background-color: @background-notification-popover;
width: 15px; width: 15px;
height: 15px; height: 15px;
@ -141,8 +141,8 @@
} }
.show-link label { .show-link label {
border-bottom: 1px dotted #445799; border-bottom: 1px dotted @text-link;
color: #445799; color: @text-link;
cursor: pointer; cursor: pointer;
} }

View file

@ -8,9 +8,9 @@
&.active { &.active {
> span, > span:hover, > span:focus { > span, > span:hover, > span:focus {
background-color: #fff; background-color: @background-normal;
color: #000; color: @text-normal;
border-color: #fff; border-color: @background-normal;
cursor: pointer; cursor: pointer;
} }
} }
@ -21,8 +21,8 @@
> span { > span {
display: inline; display: inline;
background-color: #7a7a7a; background-color: @background-toolbar;
color: #fff; color: @text-secondary;
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;
@ -36,8 +36,8 @@
} }
&:hover, &:focus { &:hover, &:focus {
background-color: #7a7a7a; background-color: @background-toolbar;
border-color: #7a7a7a; border-color: @background-toolbar;
cursor: pointer; cursor: pointer;
} }
} }

View file

@ -1,6 +1,6 @@
.theme-colorpalette { .theme-colorpalette {
margin: 0 !important; margin: 0 !important;
color: black; //color: black;
em { em {
border: none; border: none;
@ -16,7 +16,7 @@
a { a {
padding: 0; padding: 0;
border: 1px solid #fff; border: 1px solid @background-normal;
float: left; float: left;
text-decoration: none; text-decoration: none;
-moz-outline: 0 none; -moz-outline: 0 none;
@ -24,25 +24,25 @@
cursor: pointer; cursor: pointer;
em span { em span {
border: 1px solid rgba(0, 0, 0, 0.2); border: 1px solid @border-color-shading;
} }
&:hover, &.selected { &:hover, &.selected {
border-color: #000; border-color: @icon-normal;
em span { em span {
border-color: #fff; border-color: @background-normal;
} }
} }
} }
.dynamic-empty-color em span { .dynamic-empty-color em span {
border:solid 1px #C0C0C0; border:solid 1px @border-color-shading;
background:#ffffff background: @background-normal;
} }
.color-transparent { .color-transparent {
em span { em span {
border:solid 1px #C0C0C0; border:solid 1px @border-color-shading;
} }
} }
} }

View file

@ -1,8 +1,8 @@
@height-title: 28px; @height-title: 28px;
@height-tabs: 32px; @height-tabs: 32px;
@height-controls: 67px; @height-controls: 67px;
@img-equition-filter: var(--image-border-types-filter);
//@tabs-bg-color: #fff;
.toolbar { .toolbar {
position: relative; position: relative;
@ -38,7 +38,7 @@
align-items: stretch; align-items: stretch;
.extra { .extra {
background-color: @tabs-bg-color; background-color: @header-background-color;
} }
//&::after { //&::after {
@ -54,7 +54,7 @@
.tabs { .tabs {
//flex-grow: 1; //flex-grow: 1;
background-color: @tabs-bg-color; background-color: @header-background-color;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
display: flex; display: flex;
@ -74,11 +74,11 @@
height: 100%; height: 100%;
&:hover { &:hover {
background-color: rgba(255,255,255,0.2); background-color: @highlight-header-button-hover;
} }
&.active { &.active {
background-color: @gray-light; background-color: @background-toolbar;
} }
@ -89,12 +89,12 @@
cursor: default; cursor: default;
font-size: 12px; font-size: 12px;
text-align: center; text-align: center;
color: #fff; color: @text-toolbar-header;
} }
&.active { &.active {
> a { > a {
color: #444; color: @text-normal;
} }
} }
} }
@ -125,7 +125,7 @@
} }
&.left{ &.left{
box-shadow: 5px 0 20px 5px @tabs-bg-color; box-shadow: 5px 0 20px 5px @header-background-color;
&:after { &:after {
transform: rotate(135deg); transform: rotate(135deg);
@ -133,7 +133,7 @@
} }
} }
&.right{ &.right{
box-shadow: -5px 0 20px 5px @tabs-bg-color; box-shadow: -5px 0 20px 5px @header-background-color;
&:after { &:after {
transform: rotate(-45deg); transform: rotate(-45deg);
@ -191,8 +191,8 @@
/**/ /**/
} }
background-color: @gray-light; background-color: @background-toolbar;
.box-inner-shadow(0 -1px 0 @gray-dark); .box-inner-shadow(0 -1px 0 @border-toolbar);
.group { .group {
position: relative; position: relative;
@ -250,7 +250,7 @@
} }
&.border { &.border {
border: 1px solid @gray; border: 1px solid @border-regular-control;
.border-radius(1px); .border-radius(1px);
width: 22px; width: 22px;
height: 22px; height: 22px;
@ -268,7 +268,7 @@
right: 0; right: 0;
bottom: 0; bottom: 0;
opacity: 0; opacity: 0;
background-color: @gray-light; background-color: @background-toolbar;
/* z-index: @zindex-tooltip + 1; */ /* z-index: @zindex-tooltip + 1; */
} }
@ -309,7 +309,7 @@
.tabs, .extra { .tabs, .extra {
background-color: transparent; background-color: transparent;
box-shadow: inset 0 -1px 0 0 @gray; box-shadow: inset 0 -1px 0 0 @border-regular-control;
} }
.tabs { .tabs {
@ -323,7 +323,7 @@
&:after { &:after {
//transition: opacity .1s; //transition: opacity .1s;
//transition: bottom .1s; //transition: bottom .1s;
border-top: @underscore_height solid @gray-deep; border-top: @underscore_height solid @text-normal;
content: ''; content: '';
position: absolute; position: absolute;
width: 100%; width: 100%;
@ -342,11 +342,11 @@
&:hover:not(.active) { &:hover:not(.active) {
background-color: rgba(0, 0, 0, .05); background-color: rgba(0, 0, 0, .05);
//background-color: @secondary; //background-color: @highlight-button-hover;
} }
> a { > a {
color: @gray-deep; color: @text-normal;
&::after { &::after {
display:block; display:block;
@ -372,15 +372,15 @@
.tabs .scroll { .tabs .scroll {
&.left { &.left {
box-shadow: 5px 0 20px 5px @gray-light; box-shadow: 5px 0 20px 5px @background-toolbar;
} }
&.right { &.right {
box-shadow: -5px 0 20px 5px @gray-light; box-shadow: -5px 0 20px 5px @background-toolbar;
} }
&:after { &:after {
border-color: @gray-deep; border-color: @text-normal;
} }
} }
@ -391,27 +391,27 @@
} }
svg.icon { svg.icon {
fill: @gray-deep; fill: @icon-toolbar-header;
} }
.caption { .caption {
color: @gray-deep; color: @text-normal;
} }
&:hover:not(.disabled) { &:hover:not(.disabled) {
background-color: @secondary; background-color: @highlight-button-hover;
} }
&:active, &.active { &:active, &.active {
&:not(.disabled) { &:not(.disabled) {
background-color: @primary; background-color: @highlight-button-pressed;
svg.icon { svg.icon {
fill: #fff; fill: @icon-toolbar-header;
} }
.caption { .caption {
color: #fff; color: @text-inverse;
} }
} }
} }
@ -423,17 +423,17 @@
} }
svg.icon { svg.icon {
fill: @gray-deep; fill: @icon-toolbar-header;
} }
} }
#rib-doc-name { #rib-doc-name {
color: @gray-deep; color: @text-normal;
} }
&.editor-native-color { &.editor-native-color {
.tabs li:after { .tabs li:after {
border-color: @tabs-bg-color; border-color: @header-background-color;
} }
} }
} }
@ -467,22 +467,22 @@
.btn-toolbar { .btn-toolbar {
&:active { &:active {
svg.icon { svg.icon {
fill: #fff; fill: @icon-toolbar-header;
} }
} }
svg.icon { svg.icon {
background-image: none; background-image: none;
fill: @gray-deep; fill: @icon-normal;
} }
&.borders--small { &.borders--small {
border-radius: 2px; border-radius: 2px;
background-color: #fff; background-color: @background-normal;
&:not(:active) { &:not(:active) {
box-shadow: inset 0 0 0 1px #cbcbcb; box-shadow: inset 0 0 0 1px @border-regular-control;
} }
&, .icon { &, .icon {
@ -508,13 +508,26 @@
svg.icon { svg.icon {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
fill: #444444; fill: @icon-normal;
} }
width: 20px; width: 20px;
height: 20px; height: 20px;
} }
.item-equation {
border: 1px solid @border-regular-control;
.equation-icon {
.background-ximage-v2('toolbar/math.png', 1500px, @commonimage: true);
.theme-dark & {
-webkit-filter: @img-equition-filter;
filter: @img-equition-filter;
}
}
}
// charts // charts
.menu-insertchart { .menu-insertchart {
.group-description { .group-description {
@ -538,7 +551,41 @@
svg.icon { svg.icon {
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
fill: #444444; fill: @icon-normal;
}
}
.color-schemas-menu {
span {
&.colors {
display: inline-block;
margin-right: 15px;
}
&.color {
display: inline-block;
width: 12px;
height: 12px;
margin-right: 2px;
border: 1px solid @border-color-shading;
vertical-align: middle;
}
&.text {
vertical-align: middle;
}
}
&.checked {
&:before {
display: none !important;
}
&, &:hover, &:focus {
background-color: @highlight-button-pressed;
color: @dropdown-link-active-color;
span.color {
border-color: @icon-normal;
}
}
} }
} }

View file

@ -15,7 +15,7 @@
&.top-right .tooltip-arrow { &.top-right .tooltip-arrow {
bottom: 1px; bottom: 1px;
border-width: 5px 5px 0; border-width: 5px 5px 0;
border-top-color: @body-bg; border-top-color: @background-normal;
} }
&.top-left .tooltip-arrow, &.top-left .tooltip-arrow,
@ -32,16 +32,16 @@
&.bottom-right .tooltip-arrow { &.bottom-right .tooltip-arrow {
top: 1px; top: 1px;
border-width: 0 5px 5px; border-width: 0 5px 5px;
border-bottom-color: @body-bg; border-bottom-color: @background-normal;
} }
} }
.tooltip-inner { .tooltip-inner {
font-size: 11px; font-size: 11px;
background-color: @body-bg; background-color: @background-normal;
color: @gray-deep; color: @text-normal;
padding: 5px 12px; padding: 5px 12px;
border: 1px solid rgba(0, 0, 0, 0.15); border: 1px solid @border-regular-control;
.box-shadow(0 6px 12px rgba(0, 0, 0, 0.175)); .box-shadow(0 6px 12px rgba(0, 0, 0, 0.175));
background-clip: padding-box; background-clip: padding-box;

View file

@ -12,7 +12,7 @@
text-align: center; text-align: center;
height: 100%; height: 100%;
width: 100%; width: 100%;
color: #b2b2b2; color: @text-tertiary;
td { td {
padding: 5px; padding: 5px;
} }
@ -20,7 +20,7 @@
} }
&:focus { &:focus {
border-color: @gray-darker; border-color: @border-preview-select;
} }
> .item { > .item {
@ -31,11 +31,11 @@
&:hover, &:hover,
&.over { &.over {
background-color: @secondary; background-color: @highlight-button-hover;
} }
&.selected { &.selected {
background-color: #cbcdcf; background-color: @highlight-button-pressed;
} }
&.selected .empty { &.selected .empty {
@ -58,7 +58,7 @@
text-overflow: ellipsis; text-overflow: ellipsis;
&.empty { &.empty {
color: #999; color: @text-tertiary;
font-style: italic; font-style: italic;
} }
} }

View file

@ -13,20 +13,20 @@
// Grays // Grays
// ------------------------- // -------------------------
@gray-deep: #444444; //rgb(68, 68, 68) //@gray-deep: #444444; //rgb(68, 68, 68)
@gray-darker: #848484; //rgb(132, 132, 132) //@gray-darker: #848484; //rgb(132, 132, 132)
@gray-dark: #cbcbcb; //rgb(203, 203, 203) //@gray-dark: #cbcbcb; //rgb(203, 203, 203)
@gray: #cfcfcf; //rgb(207, 207, 207) //@gray: #cfcfcf; //rgb(207, 207, 207)
@gray-light: #f1f1f1; //rgb(241, 241, 241) //@gray-light: #f1f1f1; //rgb(241, 241, 241)
@gray-lighter: #ededed; //rgb(237, 237, 237) //@gray-lighter: #ededed; //rgb(237, 237, 237)
@gray-soft: #adadad; //rgb(173, 173, 173) //@gray-soft: #adadad; //rgb(173, 173, 173)
@primary: #7d858c; //rgb(125, 133, 140) //@primary: #7d858c; //rgb(125, 133, 140)
@primary-hover: #666d73; //rgb(102, 109, 115) //@primary-hover: #666d73; //rgb(102, 109, 115)
@secondary: #d8dadc; //rgb(216, 218, 220) //@secondary: #d8dadc; //rgb(216, 218, 220)
@secondary-hover: #cbced1; //rgb(203, 206, 209) //@secondary-hover: #cbced1; //rgb(203, 206, 209)
@black: #000000; //@black: #000000;
// Brand colors // Brand colors
// ------------------------- // -------------------------
@ -41,7 +41,7 @@
// ------------------------- // -------------------------
@body-bg: #fff; @body-bg: #fff;
@text-color: @gray-dark; @text-color: #cbcbcb; // @gray-dark
// Links // Links
// ------------------------- // -------------------------
@ -114,7 +114,7 @@
@border-radius-small: 2px; @border-radius-small: 2px;
@component-active-color: #fff; @component-active-color: #fff;
@component-active-bg: @primary; @component-active-bg: #7d858c; // @primary;
@caret-width-base: 4px; @caret-width-base: 4px;
@caret-width-large: 5px; @caret-width-large: 5px;
@ -162,7 +162,7 @@
@btn-info-bg: @brand-info; @btn-info-bg: @brand-info;
@btn-info-border: darken(@btn-info-bg, 5%); @btn-info-border: darken(@btn-info-bg, 5%);
@btn-link-disabled-color: @gray-light; @btn-link-disabled-color: #f1f1f1; // @gray-light;
// Allows for customizing button radius independently from global border radius // Allows for customizing button radius independently from global border radius
@btn-border-radius-base: @border-radius-base; @btn-border-radius-base: @border-radius-base;
@ -173,10 +173,10 @@
// ------------------------- // -------------------------
@input-bg: #fff; @input-bg: #fff;
@input-bg-disabled: @gray-lighter; @input-bg-disabled: #ededed; // @gray-lighter;
@input-color: #000; @input-color: #000;
@input-border: @gray; @input-border: #cfcfcf; // @gray;
@input-border-radius: @border-radius-base; @input-border-radius: @border-radius-base;
@input-border-radius-large: @border-radius-large; @input-border-radius-large: @border-radius-large;
@input-border-radius-small: @border-radius-small; @input-border-radius-small: @border-radius-small;
@ -191,7 +191,7 @@
//** Small `.form-control` border radius //** Small `.form-control` border radius
@input-border-radius-small: @border-radius-small; @input-border-radius-small: @border-radius-small;
@input-color-placeholder: @gray; @input-color-placeholder: #cfcfcf; // @gray;
@input-height-base: (floor(@font-size-base * @line-height-base) + (@padding-base-vertical * 2) + 5); @input-height-base: (floor(@font-size-base * @line-height-base) + (@padding-base-vertical * 2) + 5);
@input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2); @input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
@ -199,7 +199,7 @@
@form-group-margin-bottom: 15px; @form-group-margin-bottom: 15px;
@legend-color: @gray-dark; @legend-color: #cbcbcb; // @gray-dark
@legend-border-color: #e5e5e5; @legend-border-color: #e5e5e5;
@input-group-addon-bg: @input-bg; @input-group-addon-bg: @input-bg;
@ -216,16 +216,16 @@
@dropdown-fallback-border: #ccc; @dropdown-fallback-border: #ccc;
@dropdown-divider-bg: #e5e5e5; @dropdown-divider-bg: #e5e5e5;
@dropdown-link-color: @gray-deep; @dropdown-link-color: #444; // @gray-deep;
@dropdown-link-hover-color: darken(@gray-deep, 5%); @dropdown-link-hover-color: darken(#444, 5%); // darken(@gray-deep, 5%);
@dropdown-link-hover-bg: @secondary; @dropdown-link-hover-bg: #d8dadc; // @secondary;
@dropdown-link-active-color: @component-active-color; @dropdown-link-active-color: @component-active-color;
@dropdown-link-active-bg: @component-active-bg; @dropdown-link-active-bg: @component-active-bg;
@dropdown-link-disabled-color: @gray; @dropdown-link-disabled-color: #cfcfcf; // @gray;
@dropdown-header-color: @gray; @dropdown-header-color: #cfcfcf; // @gray;
// COMPONENT VARIABLES // COMPONENT VARIABLES
@ -332,12 +332,12 @@
// Inverted navbar // Inverted navbar
// //
// Reset inverted navbar basics // Reset inverted navbar basics
@navbar-inverse-color: @gray-light; @navbar-inverse-color: #f1f1f1; // @gray-light;
@navbar-inverse-bg: #222; @navbar-inverse-bg: #222;
@navbar-inverse-border: darken(@navbar-inverse-bg, 10%); @navbar-inverse-border: darken(@navbar-inverse-bg, 10%);
// Inverted navbar links // Inverted navbar links
@navbar-inverse-link-color: @gray-light; @navbar-inverse-link-color: #f1f1f1; // @gray-light;
@navbar-inverse-link-hover-color: #fff; @navbar-inverse-link-hover-color: #fff;
@navbar-inverse-link-hover-bg: transparent; @navbar-inverse-link-hover-bg: transparent;
@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color; @navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;
@ -360,20 +360,20 @@
// ------------------------- // -------------------------
@nav-link-padding: 10px 15px; @nav-link-padding: 10px 15px;
@nav-link-hover-bg: @gray-lighter; @nav-link-hover-bg: #ededed; // @gray-lighter;
@nav-disabled-link-color: @gray-light; @nav-disabled-link-color: #f1f1f1; // @gray-light;
@nav-disabled-link-hover-color: @gray-light; @nav-disabled-link-hover-color: #f1f1f1; // @gray-light;
@nav-open-link-hover-color: #fff; @nav-open-link-hover-color: #fff;
// Tabs // Tabs
@nav-tabs-border-color: #ddd; @nav-tabs-border-color: #ddd;
@nav-tabs-link-hover-border-color: @gray-lighter; @nav-tabs-link-hover-border-color: #ededed; // @gray-lighter;
@nav-tabs-active-link-hover-bg: @body-bg; @nav-tabs-active-link-hover-bg: @body-bg;
@nav-tabs-active-link-hover-color: @gray; @nav-tabs-active-link-hover-color: #cfcfcf; // @gray;
@nav-tabs-active-link-hover-border-color: #ddd; @nav-tabs-active-link-hover-border-color: #ddd;
@nav-tabs-justified-link-border-color: #ddd; @nav-tabs-justified-link-border-color: #ddd;
@ -392,14 +392,14 @@
@pagination-border: #ddd; @pagination-border: #ddd;
@pagination-hover-color: @link-hover-color; @pagination-hover-color: @link-hover-color;
@pagination-hover-bg: @gray-lighter; @pagination-hover-bg: #ededed; // @gray-lighter;
@pagination-hover-border: #ddd; @pagination-hover-border: #ddd;
@pagination-active-bg: @brand-primary; @pagination-active-bg: @brand-primary;
@pagination-active-color: #fff; @pagination-active-color: #fff;
@pagination-active-border: @brand-primary; @pagination-active-border: @brand-primary;
@pagination-disabled-color: @gray-light; @pagination-disabled-color: #f1f1f1; // @gray-light;
@pagination-disabled-bg: #fff; @pagination-disabled-bg: #fff;
@pagination-disabled-border: #ddd; @pagination-disabled-border: #ddd;
@ -414,7 +414,7 @@
@pager-active-bg: @pagination-active-bg; @pager-active-bg: @pagination-active-bg;
@pager-active-color: @pagination-active-color; @pager-active-color: @pagination-active-color;
@pager-disabled-color: @gray-light; @pager-disabled-color: #f1f1f1; // @gray-light;
// Jumbotron // Jumbotron
@ -422,7 +422,7 @@
@jumbotron-padding: 30px; @jumbotron-padding: 30px;
@jumbotron-color: inherit; @jumbotron-color: inherit;
@jumbotron-bg: @gray-lighter; @jumbotron-bg: #ededed; // @gray-lighter;
@jumbotron-heading-color: inherit; @jumbotron-heading-color: inherit;
@jumbotron-font-size: ceil(@font-size-base * 1.5); @jumbotron-font-size: ceil(@font-size-base * 1.5);
@jumbotron-heading-font-size: ceil((@font-size-base * 4.5)); @jumbotron-heading-font-size: ceil((@font-size-base * 4.5));
@ -478,7 +478,7 @@
// Labels // Labels
// ------------------------- // -------------------------
@label-default-bg: @gray-light; @label-default-bg: #f1f1f1; // @gray-light;
@label-primary-bg: @brand-primary; @label-primary-bg: @brand-primary;
@label-success-bg: @brand-success; @label-success-bg: @brand-success;
@label-info-bg: @brand-info; @label-info-bg: @brand-info;
@ -557,8 +557,8 @@
@list-group-active-border: @list-group-active-bg; @list-group-active-border: @list-group-active-bg;
@list-group-active-text-color: lighten(@list-group-active-bg, 40%); @list-group-active-text-color: lighten(@list-group-active-bg, 40%);
@list-group-disabled-color: @gray-light; @list-group-disabled-color: #f1f1f1; // @gray-light;
@list-group-disabled-bg: @gray-lighter; @list-group-disabled-bg: #ededed; // @gray-lighter;
@list-group-disabled-text-color: @list-group-disabled-color; @list-group-disabled-text-color: @list-group-disabled-color;
@list-group-link-color: #555; @list-group-link-color: #555;
@ -576,7 +576,7 @@
@panel-border-radius: @border-radius-base; @panel-border-radius: @border-radius-base;
@panel-footer-bg: #f5f5f5; @panel-footer-bg: #f5f5f5;
@panel-default-text: @gray-dark; //@panel-default-text: @gray-dark;
@panel-default-border: #ddd; @panel-default-border: #ddd;
@panel-default-heading-bg: #f5f5f5; @panel-default-heading-bg: #f5f5f5;
@ -608,7 +608,7 @@
@thumbnail-border: #ddd; @thumbnail-border: #ddd;
@thumbnail-border-radius: @border-radius-base; @thumbnail-border-radius: @border-radius-base;
@thumbnail-caption-color: @text-color; //@thumbnail-caption-color: @text-color;
@thumbnail-caption-padding: 9px; @thumbnail-caption-padding: 9px;
@ -621,7 +621,7 @@
// ------------------------- // -------------------------
@badge-color: #fff; @badge-color: #fff;
@badge-link-hover-color: #fff; @badge-link-hover-color: #fff;
@badge-bg: @gray-light; @badge-bg: #f1f1f1; // @gray-light;
@badge-active-color: @link-color; @badge-active-color: @link-color;
@badge-active-bg: #fff; @badge-active-bg: #fff;
@ -637,7 +637,7 @@
@breadcrumb-padding-horizontal: 15px; @breadcrumb-padding-horizontal: 15px;
@breadcrumb-bg: #f5f5f5; @breadcrumb-bg: #f5f5f5;
@breadcrumb-color: #ccc; @breadcrumb-color: #ccc;
@breadcrumb-active-color: @gray-light; @breadcrumb-active-color: #f1f1f1; // @gray-light;
@breadcrumb-separator: "/"; @breadcrumb-separator: "/";
@ -673,25 +673,25 @@
@kbd-bg: #333; @kbd-bg: #333;
@pre-bg: #f5f5f5; @pre-bg: #f5f5f5;
@pre-color: @gray-dark; //@pre-color: @gray-dark;
@pre-border-color: #ccc; @pre-border-color: #ccc;
@pre-scrollable-max-height: 340px; @pre-scrollable-max-height: 340px;
// Type // Type
// ------------------------ // ------------------------
@text-muted: @gray-light; @text-muted: #f1f1f1; // @gray-light;
@abbr-border-color: @gray-light; @abbr-border-color: #f1f1f1; // @gray-light;
@headings-small-color: @gray-light; @headings-small-color: #f1f1f1; // @gray-light;
@blockquote-small-color: @gray-light; @blockquote-small-color: #f1f1f1; // @gray-light;
@blockquote-font-size: (@font-size-base * 1.25); @blockquote-font-size: (@font-size-base * 1.25);
@blockquote-border-color: @gray-lighter; @blockquote-border-color: #ededed; // @gray-lighter;
@page-header-border-color: @gray-lighter; @page-header-border-color: #ededed; // @gray-lighter;
// Miscellaneous // Miscellaneous
// ------------------------- // -------------------------
// Hr border color // Hr border color
@hr-border: @gray-lighter; @hr-border: #ededed; // @gray-lighter;
// Horizontal forms & lists // Horizontal forms & lists
@component-offset-horizontal: 180px; @component-offset-horizontal: 180px;

View file

@ -17,6 +17,10 @@
opacity: 0.2; opacity: 0.2;
background-color: rgb(0,0,0); background-color: rgb(0,0,0);
z-index: @zindex-modal - 1; z-index: @zindex-modal - 1;
.theme-dark & {
opacity: 0.6;
}
} }
.asc-window { .asc-window {
@ -26,8 +30,8 @@
z-index: @zindex-modal-background; z-index: @zindex-modal-background;
box-shadow: 0 5px 15px rgba(0,0,0,0.2); box-shadow: 0 5px 15px rgba(0,0,0,0.2);
border-radius: 5px; border-radius: 5px;
background-color: @body-bg; background-color: @background-normal;
border: solid 1px @gray-dark; border: solid 1px @border-toolbar;
left: 0; left: 0;
top: 0; top: 0;
@ -46,16 +50,15 @@
top: 0; top: 0;
text-overflow: ellipsis; text-overflow: ellipsis;
color: @gray-darker; color: @text-normal;
text-align: center; text-align: center;
font-size: 12px; font-size: 12px;
font-weight: 700; font-weight: 700;
text-shadow: 1px 1px #f8f8f8;
vertical-align: bottom; vertical-align: bottom;
line-height: 26px; line-height: 26px;
background: @gray-lighter; background: @background-toolbar;
border-bottom: solid 1px @gray-dark; border-bottom: solid 1px @border-toolbar;
cursor: move; cursor: move;
@ -75,16 +78,36 @@
margin: 4px 3px 0px 0px; margin: 4px 3px 0px 0px;
&.close { &.close {
background-position: @but-close-offset-x @but-close-offset-y; position: relative;
opacity: 0.7;
transition: transform .3s;
&:hover { &:hover {
background-position: @but-close-offset-x @but-close-offset-y - 16px; transform: scale(1.1);
opacity: 1;
} }
&.disabled { &.disabled {
background-position: @but-close-offset-x @but-close-offset-y - 32px;
cursor: default; cursor: default;
} }
&:before, &:after {
content: ' ';
position: absolute;
left: 7px;
top: 1px;
height: 14px;
width: 1px;
background-color: @icon-normal;
}
&:before {
transform: rotate(45deg);
}
&:after {
transform: rotate(-45deg);
}
} }
&.help { &.help {
@ -93,7 +116,7 @@
line-height: 14px; line-height: 14px;
font-size: 14px; font-size: 14px;
font-weight: bold; font-weight: bold;
color: #444; color: @text-normal;
opacity: 0.7; opacity: 0.7;
&:hover { &:hover {
@ -123,7 +146,7 @@
position: absolute; position: absolute;
top: 34px; top: 34px;
width: 100%; width: 100%;
background-color: @body-bg; background-color: @background-normal;
} }
&.modal { &.modal {
@ -186,10 +209,10 @@
a { a {
text-decoration: underline; text-decoration: underline;
color: @gray-deep; color: @text-normal;
&:focus, &:hover { &:focus, &:hover {
color: @gray-deep; color: @text-normal;
} }
} }
} }
@ -247,8 +270,8 @@
width: 5px; width: 5px;
height: 5px; height: 5px;
z-index: 1; z-index: 1;
background: @gray-lighter; background: @background-toolbar;
border: 1px none @gray-dark; border: 1px none @border-toolbar;
&.left { &.left {
left: 0; left: 0;
@ -275,6 +298,12 @@
} }
} }
} }
.img-commonctrl {
&.img-no-theme-filter {
filter: none;
}
}
} }
.modal-dlg { .modal-dlg {

View file

@ -205,6 +205,7 @@ require([
,'common/main/lib/controller/ExternalMergeEditor' ,'common/main/lib/controller/ExternalMergeEditor'
,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/ReviewChanges'
,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Protection'
,'common/main/lib/controller/Themes'
,'common/main/lib/controller/Desktop' ,'common/main/lib/controller/Desktop'
], function() { ], function() {
app.start(); app.start();

View file

@ -172,6 +172,7 @@ define([
this.api = this.getApplication().getController('Viewport').getApi(); this.api = this.getApplication().getController('Viewport').getApi();
Common.UI.FocusManager.init(); Common.UI.FocusManager.init();
Common.UI.Themes.init(this.api);
if (this.api){ if (this.api){
this.api.SetDrawingFreeze(true); this.api.SetDrawingFreeze(true);
@ -1148,6 +1149,13 @@ define([
$('.doc-placeholder').remove(); $('.doc-placeholder').remove();
this.appOptions.user.guest && this.appOptions.canRenameAnonymous && (Common.Utils.InternalSettings.get("guest-username")===null) && this.showRenameUserDialog(); this.appOptions.user.guest && this.appOptions.canRenameAnonymous && (Common.Utils.InternalSettings.get("guest-username")===null) && this.showRenameUserDialog();
$('#header-logo').children(0).click(e => {
e.stopImmediatePropagation();
Common.UI.Themes.toggleTheme();
// getComputedStyle(document.documentElement).getPropertyValue('--background-normal');
})
}, },
onLicenseChanged: function(params) { onLicenseChanged: function(params) {
@ -1320,10 +1328,11 @@ define([
this.appOptions.canFavorite = this.document.info && (this.document.info.favorite!==undefined && this.document.info.favorite!==null) && !this.appOptions.isOffline; this.appOptions.canFavorite = this.document.info && (this.document.info.favorite!==undefined && this.document.info.favorite!==null) && !this.appOptions.isOffline;
this.appOptions.canFavorite && appHeader.setFavorite(this.document.info.favorite); this.appOptions.canFavorite && appHeader.setFavorite(this.document.info.favorite);
this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object'); this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroup ||
this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object'));
Common.Utils.UserInfoParser.setParser(this.appOptions.canUseReviewPermissions); Common.Utils.UserInfoParser.setParser(this.appOptions.canUseReviewPermissions);
Common.Utils.UserInfoParser.setCurrentName(this.appOptions.user.fullname); Common.Utils.UserInfoParser.setCurrentName(this.appOptions.user.fullname);
this.appOptions.canUseReviewPermissions && Common.Utils.UserInfoParser.setReviewPermissions(this.editorConfig.customization.reviewPermissions); this.appOptions.canUseReviewPermissions && Common.Utils.UserInfoParser.setReviewPermissions(this.permissions.reviewGroup, this.editorConfig.customization.reviewPermissions);
appHeader.setUserName(Common.Utils.UserInfoParser.getParsedName(Common.Utils.UserInfoParser.getCurrentName())); appHeader.setUserName(Common.Utils.UserInfoParser.getParsedName(Common.Utils.UserInfoParser.getCurrentName()));
this.appOptions.canRename && appHeader.setCanRename(true); this.appOptions.canRename && appHeader.setCanRename(true);

View file

@ -2065,12 +2065,14 @@ define([
chart.changeType(type); chart.changeType(type);
Common.NotificationCenter.trigger('edit:complete', this.toolbar); Common.NotificationCenter.trigger('edit:complete', this.toolbar);
} else { } else {
var controller = this.getApplication().getController('Common.Controllers.ExternalDiagramEditor');
if (!this.diagramEditor) if (!this.diagramEditor)
this.diagramEditor = this.getApplication().getController('Common.Controllers.ExternalDiagramEditor').getView('Common.Views.ExternalDiagramEditor'); this.diagramEditor = controller.getView('Common.Views.ExternalDiagramEditor');
if (this.diagramEditor && me.api) { if (this.diagramEditor && me.api) {
this.diagramEditor.setEditMode(false); this.diagramEditor.setEditMode(false);
this.diagramEditor.show(); // this.diagramEditor.show();
controller.showExternalEditor();
chart = me.api.asc_getChartObject(type); chart = me.api.asc_getChartObject(type);
if (chart) { if (chart) {
@ -2607,9 +2609,9 @@ define([
parentMenu: menu.items[i].menu, parentMenu: menu.items[i].menu,
store: equationsStore.at(i).get('groupStore'), store: equationsStore.at(i).get('groupStore'),
scrollAlwaysVisible: true, scrollAlwaysVisible: true,
itemTemplate: _.template('<div class="item-equation" '+ itemTemplate: _.template(
'style="background-position:<%= posX %>px <%= posY %>px;" >' + '<div class="item-equation" style="" >' +
'<div style="width:<%= width %>px;height:<%= height %>px;" id="<%= id %>"></div>' + '<div class="equation-icon" style="background-position:<%= posX %>px <%= posY %>px;width:<%= width %>px;height:<%= height %>px;" id="<%= id %>"></div>' +
'</div>') '</div>')
}); });
equationPicker.on('item:click', function(picker, item, record, e) { equationPicker.on('item:click', function(picker, item, record, e) {

View file

@ -240,6 +240,10 @@ define([
'<td class="right"><span id="fms-cmb-show-changes"></span></td>', '<td class="right"><span id="fms-cmb-show-changes"></span></td>',
'</tr>','<tr class="divider coauth changes"></tr>', '</tr>','<tr class="divider coauth changes"></tr>',
/** coauthoring end **/ /** coauthoring end **/
'<tr class="edit">',
'<td class="left"><label><%= scope.strTheme %></label></td>',
'<td class="right"><span id="fms-cmb-theme"></span></td>',
'</tr>','<tr class="divider edit"></tr>',
'<tr>', '<tr>',
'<td class="left"><label><%= scope.strZoom %></label></td>', '<td class="left"><label><%= scope.strZoom %></label></td>',
'<td class="right"><div id="fms-cmb-zoom" class="input-group-nr"></div></td>', '<td class="right"><div id="fms-cmb-zoom" class="input-group-nr"></div></td>',
@ -451,6 +455,17 @@ define([
}); });
this.btnAutoCorrect.on('click', _.bind(this.autoCorrect, this)); this.btnAutoCorrect.on('click', _.bind(this.autoCorrect, this));
this.cmbTheme = new Common.UI.ComboBox({
el : $markup.findById('#fms-cmb-theme'),
style : 'width: 160px;',
editable : false,
cls : 'input-group-nr',
data : [
{ value: 'theme-light', displayValue: this.txtThemeLight },
{ value: 'theme-dark', displayValue: this.txtThemeDark }
]
});
$markup.find('.btn.primary').each(function(index, el){ $markup.find('.btn.primary').each(function(index, el){
(new Common.UI.Button({ (new Common.UI.Button({
el: $(el) el: $(el)
@ -577,9 +592,14 @@ define([
this.lblMacrosDesc.text(item ? item.get('descValue') : this.txtWarnMacrosDesc); this.lblMacrosDesc.text(item ? item.get('descValue') : this.txtWarnMacrosDesc);
this.chPaste.setValue(Common.Utils.InternalSettings.get("de-settings-paste-button")); this.chPaste.setValue(Common.Utils.InternalSettings.get("de-settings-paste-button"));
item = this.cmbTheme.store.findWhere({value: Common.UI.Themes.current()});
this.cmbTheme.setValue(item ? item.get('value') : 0);
}, },
applySettings: function() { applySettings: function() {
Common.UI.Themes.setTheme(this.cmbTheme.getValue());
Common.localStorage.setItem("de-settings-inputmode", this.chInputMode.isChecked() ? 1 : 0); Common.localStorage.setItem("de-settings-inputmode", this.chInputMode.isChecked() ? 1 : 0);
Common.localStorage.setItem("de-settings-zoom", this.cmbZoom.getValue()); Common.localStorage.setItem("de-settings-zoom", this.cmbZoom.getValue());
Common.Utils.InternalSettings.set("de-settings-zoom", Common.localStorage.getItem("de-settings-zoom")); Common.Utils.InternalSettings.set("de-settings-zoom", Common.localStorage.getItem("de-settings-zoom"));
@ -702,6 +722,9 @@ define([
strPaste: 'Cut, copy and paste', strPaste: 'Cut, copy and paste',
strPasteButton: 'Show Paste Options button when content is pasted', strPasteButton: 'Show Paste Options button when content is pasted',
txtProofing: 'Proofing', txtProofing: 'Proofing',
strTheme: 'Theme',
txtThemeLight: 'Light',
txtThemeDark: 'Dark',
txtAutoCorrect: 'AutoCorrect options...' txtAutoCorrect: 'AutoCorrect options...'
}, DE.Views.FileMenuPanels.Settings || {})); }, DE.Views.FileMenuPanels.Settings || {}));

View file

@ -1012,9 +1012,11 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
el: $('#shape-advanced-begin-style'), el: $('#shape-advanced-begin-style'),
template: _.template([ template: _.template([
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">', '<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
'<div class="img-arrows form-control image" style="width: 100px;"></div>', '<div class="img-arrows form-control image" style="width: 100px;"></div>',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default">',
'<span class="caret"></span>',
'</button>',
'</div>' '</div>'
].join('')) ].join(''))
}); });
@ -1039,9 +1041,11 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
el: $('#shape-advanced-begin-size'), el: $('#shape-advanced-begin-size'),
template: _.template([ template: _.template([
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">', '<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
'<div class="img-arrows form-control image" style="width: 100px;"></div>', '<div class="img-arrows form-control image" style="width: 100px;"></div>',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default">',
'<span class="caret"></span>',
'</button>',
'</div>' '</div>'
].join('')) ].join(''))
}); });
@ -1072,9 +1076,11 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
el: $('#shape-advanced-end-style'), el: $('#shape-advanced-end-style'),
template: _.template([ template: _.template([
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">', '<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
'<div class="img-arrows form-control image" style="width: 100px;"></div>', '<div class="img-arrows form-control image" style="width: 100px;"></div>',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default">',
'<span class="caret"></span>',
'</button>',
'</div>' '</div>'
].join('')) ].join(''))
}); });
@ -1099,9 +1105,11 @@ define([ 'text!documenteditor/main/app/template/ImageSettingsAdvanced.templat
el: $('#shape-advanced-end-size'), el: $('#shape-advanced-end-size'),
template: _.template([ template: _.template([
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">', '<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle combo-arrow-style" data-toggle="dropdown">',
'<div class="img-arrows form-control image" style="width: 100px;"></div>', '<div class="img-arrows form-control image" style="width: 100px;"></div>',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default">',
'<span class="caret"></span>',
'</button>',
'</div>' '</div>'
].join('')) ].join(''))
}); });

View file

@ -1642,7 +1642,9 @@ define([
'<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle" tabindex="0" data-toggle="dropdown">', '<div class="input-group combobox combo-dataview-menu input-group-nr dropdown-toggle" tabindex="0" data-toggle="dropdown">',
'<div class="form-control text" style="width: 90px;">' + this.textSelectTexture + '</div>', '<div class="form-control text" style="width: 90px;">' + this.textSelectTexture + '</div>',
'<div style="display: table-cell;"></div>', '<div style="display: table-cell;"></div>',
'<button type="button" class="btn btn-default"><span class="caret img-commonctrl"></span></button>', '<button type="button" class="btn btn-default">',
'<span class="caret"></span>',
'</button>',
'</div>' '</div>'
].join('')) ].join(''))
}); });

View file

@ -69,7 +69,7 @@ define([
'<div id="tableofcontents-chb-pages"></div>', '<div id="tableofcontents-chb-pages"></div>',
'</td>', '</td>',
'<td rowspan="5" class="padding-small" style="vertical-align: top;">', '<td rowspan="5" class="padding-small" style="vertical-align: top;">',
'<div style="border: 1px solid #cbcbcb;width: 240px; height: 182px; float: right;position:relative;overflow:hidden;">', '<div class="canvas-box" style="width: 240px; height: 182px; float: right;position:relative;overflow:hidden;">',
'<div id="tableofcontents-img" style="width: 230px; height: 100%;"></div>', '<div id="tableofcontents-img" style="width: 230px; height: 100%;"></div>',
'</div>', '</div>',
'</td>', '</td>',

View file

@ -195,6 +195,7 @@ require([
,'common/main/lib/controller/ExternalMergeEditor' ,'common/main/lib/controller/ExternalMergeEditor'
,'common/main/lib/controller/ReviewChanges' ,'common/main/lib/controller/ReviewChanges'
,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Protection'
,'common/main/lib/controller/Themes'
,'common/main/lib/controller/Desktop' ,'common/main/lib/controller/Desktop'
], function() { ], function() {
window.compareVersions = true; window.compareVersions = true;

View file

@ -204,6 +204,11 @@
window.frameEditorId = params["frameEditorId"]; window.frameEditorId = params["frameEditorId"];
window.parentOrigin = params["parentOrigin"]; window.parentOrigin = params["parentOrigin"];
var ui_theme_name = params.uitheme || localStorage.getItem("ui-theme");
if ( !!ui_theme_name ) {
document.documentElement.classList.add(ui_theme_name);
}
if(/MSIE \d|Trident.*rv:/.test(navigator.userAgent)) if(/MSIE \d|Trident.*rv:/.test(navigator.userAgent))
document.write('<script src="../../common/main/lib/util/fix-ie-compat.js"><\/script>'); document.write('<script src="../../common/main/lib/util/fix-ie-compat.js"><\/script>');
</script> </script>

View file

@ -203,6 +203,11 @@
window.frameEditorId = params["frameEditorId"]; window.frameEditorId = params["frameEditorId"];
window.parentOrigin = params["parentOrigin"]; window.parentOrigin = params["parentOrigin"];
var ui_theme_name = params.uitheme || localStorage.getItem("ui-theme");
if ( !!ui_theme_name ) {
document.documentElement.classList.add(ui_theme_name);
}
if ( window.AscDesktopEditor ) { if ( window.AscDesktopEditor ) {
window.desktop = window.AscDesktopEditor; window.desktop = window.AscDesktopEditor;
window.on_native_message = function (cmd, param) { window.on_native_message = function (cmd, param) {

View file

@ -782,7 +782,7 @@
"DE.Controllers.Toolbar.textAccent": "Дыякрытычныя знакі", "DE.Controllers.Toolbar.textAccent": "Дыякрытычныя знакі",
"DE.Controllers.Toolbar.textBracket": "Дужкі", "DE.Controllers.Toolbar.textBracket": "Дужкі",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.",
"DE.Controllers.Toolbar.textFontSizeErr": "Уведзена хібнае значэнне.<br>Калі ласка, ўвядзіце лік ад 0 да 100.", "DE.Controllers.Toolbar.textFontSizeErr": "Уведзена хібнае значэнне.<br>Калі ласка, ўвядзіце лік ад 0 да 300.",
"DE.Controllers.Toolbar.textFraction": "Дробы", "DE.Controllers.Toolbar.textFraction": "Дробы",
"DE.Controllers.Toolbar.textFunction": "Функцыі", "DE.Controllers.Toolbar.textFunction": "Функцыі",
"DE.Controllers.Toolbar.textInsert": "Уставіць", "DE.Controllers.Toolbar.textInsert": "Уставіць",

View file

@ -51,7 +51,7 @@
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Вмъкнат е параграф</b>", "Common.Controllers.ReviewChanges.textParaInserted": "<b>Вмъкнат е параграф</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Преместени надолу:</b>", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Преместени надолу:</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Преместени нагоре:</b>", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Преместени нагоре:</b>",
"Common.Controllers.ReviewChanges.textParaMoveTo": "<Ь>Преместен</B>", "Common.Controllers.ReviewChanges.textParaMoveTo": "<b>Преместен</b>",
"Common.Controllers.ReviewChanges.textPosition": "Позиция", "Common.Controllers.ReviewChanges.textPosition": "Позиция",
"Common.Controllers.ReviewChanges.textRight": "Подравняване надясно", "Common.Controllers.ReviewChanges.textRight": "Подравняване надясно",
"Common.Controllers.ReviewChanges.textShape": "Форма", "Common.Controllers.ReviewChanges.textShape": "Форма",
@ -687,7 +687,7 @@
"DE.Controllers.Toolbar.textAccent": "Акценти", "DE.Controllers.Toolbar.textAccent": "Акценти",
"DE.Controllers.Toolbar.textBracket": "Скоби", "DE.Controllers.Toolbar.textBracket": "Скоби",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.",
"DE.Controllers.Toolbar.textFontSizeErr": "Въведената стойност е неправилна. <br> Въведете числова стойност между 1 и 100", "DE.Controllers.Toolbar.textFontSizeErr": "Въведената стойност е неправилна. <br> Въведете числова стойност между 1 и 300",
"DE.Controllers.Toolbar.textFraction": "Фракции", "DE.Controllers.Toolbar.textFraction": "Фракции",
"DE.Controllers.Toolbar.textFunction": "Функция", "DE.Controllers.Toolbar.textFunction": "Функция",
"DE.Controllers.Toolbar.textIntegral": "Интеграли", "DE.Controllers.Toolbar.textIntegral": "Интеграли",

View file

@ -782,7 +782,7 @@
"DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "Claudàtor", "DE.Controllers.Toolbar.textBracket": "Claudàtor",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Cal que especifiqueu lenllaç de la imatge.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal que especifiqueu lenllaç de la imatge.",
"DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït és incorrecte.<br>Introduïu un valor numèric entre 1 i 100.", "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït és incorrecte.<br>Introduïu un valor numèric entre 1 i 300.",
"DE.Controllers.Toolbar.textFraction": "Fraccions", "DE.Controllers.Toolbar.textFraction": "Fraccions",
"DE.Controllers.Toolbar.textFunction": "Funcions", "DE.Controllers.Toolbar.textFunction": "Funcions",
"DE.Controllers.Toolbar.textInsert": "Inserta", "DE.Controllers.Toolbar.textInsert": "Inserta",

View file

@ -66,7 +66,7 @@
"Common.Controllers.ReviewChanges.textStrikeout": "Přeškrtnout", "Common.Controllers.ReviewChanges.textStrikeout": "Přeškrtnout",
"Common.Controllers.ReviewChanges.textSubScript": "Dolní index", "Common.Controllers.ReviewChanges.textSubScript": "Dolní index",
"Common.Controllers.ReviewChanges.textSuperScript": "Horní index", "Common.Controllers.ReviewChanges.textSuperScript": "Horní index",
"Common.Controllers.ReviewChanges.textTableChanged": "<b>Nastavení tabulky změněna<b/>", "Common.Controllers.ReviewChanges.textTableChanged": "<b>Nastavení tabulky změněna</b>",
"Common.Controllers.ReviewChanges.textTableRowsAdd": "<b>Řádky tabulky přidány</b>", "Common.Controllers.ReviewChanges.textTableRowsAdd": "<b>Řádky tabulky přidány</b>",
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Řádky tabulky smazány</b>", "Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Řádky tabulky smazány</b>",
"Common.Controllers.ReviewChanges.textTabs": "Změnit panely", "Common.Controllers.ReviewChanges.textTabs": "Změnit panely",
@ -755,7 +755,7 @@
"DE.Controllers.Toolbar.textAccent": "Akcenty", "DE.Controllers.Toolbar.textAccent": "Akcenty",
"DE.Controllers.Toolbar.textBracket": "Závorky", "DE.Controllers.Toolbar.textBracket": "Závorky",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Je třeba zadat URL adresu obrázku.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Je třeba zadat URL adresu obrázku.",
"DE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota není správná.<br>Zadejte hodnotu z rozmezí 1 až 100", "DE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota není správná.<br>Zadejte hodnotu z rozmezí 1 až 300",
"DE.Controllers.Toolbar.textFraction": "Zlomky", "DE.Controllers.Toolbar.textFraction": "Zlomky",
"DE.Controllers.Toolbar.textFunction": "Funkce", "DE.Controllers.Toolbar.textFunction": "Funkce",
"DE.Controllers.Toolbar.textInsert": "Vložit", "DE.Controllers.Toolbar.textInsert": "Vložit",

View file

@ -760,7 +760,7 @@
"DE.Controllers.Toolbar.textAccent": "Accenter", "DE.Controllers.Toolbar.textAccent": "Accenter",
"DE.Controllers.Toolbar.textBracket": "Klammer", "DE.Controllers.Toolbar.textBracket": "Klammer",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Du skal specificere billede URL", "DE.Controllers.Toolbar.textEmptyImgUrl": "Du skal specificere billede URL",
"DE.Controllers.Toolbar.textFontSizeErr": "Den indtastede værdi er ikke korrekt.<br>Venligst indtast en numerisk værdi mellem 1 og 100", "DE.Controllers.Toolbar.textFontSizeErr": "Den indtastede værdi er ikke korrekt.<br>Venligst indtast en numerisk værdi mellem 1 og 300",
"DE.Controllers.Toolbar.textFraction": "Fraktioner", "DE.Controllers.Toolbar.textFraction": "Fraktioner",
"DE.Controllers.Toolbar.textFunction": "Funktioner", "DE.Controllers.Toolbar.textFunction": "Funktioner",
"DE.Controllers.Toolbar.textInsert": "indsæt", "DE.Controllers.Toolbar.textInsert": "indsæt",

View file

@ -66,7 +66,7 @@
"Common.Controllers.ReviewChanges.textStrikeout": "Durchgestrichen", "Common.Controllers.ReviewChanges.textStrikeout": "Durchgestrichen",
"Common.Controllers.ReviewChanges.textSubScript": "Tiefgestellt", "Common.Controllers.ReviewChanges.textSubScript": "Tiefgestellt",
"Common.Controllers.ReviewChanges.textSuperScript": "Hochgestellt", "Common.Controllers.ReviewChanges.textSuperScript": "Hochgestellt",
"Common.Controllers.ReviewChanges.textTableChanged": "<b>Tabelleneinstellungen sind geändert <b />", "Common.Controllers.ReviewChanges.textTableChanged": "<b>Tabelleneinstellungen sind geändert </b>",
"Common.Controllers.ReviewChanges.textTableRowsAdd": "<b> Tabellenzeilen sind hinzugefügt </b>", "Common.Controllers.ReviewChanges.textTableRowsAdd": "<b> Tabellenzeilen sind hinzugefügt </b>",
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Tabellenzeilen sind gelöscht</b>", "Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Tabellenzeilen sind gelöscht</b>",
"Common.Controllers.ReviewChanges.textTabs": "Registerkarten ändern", "Common.Controllers.ReviewChanges.textTabs": "Registerkarten ändern",
@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Akzente", "DE.Controllers.Toolbar.textAccent": "Akzente",
"DE.Controllers.Toolbar.textBracket": "Klammern", "DE.Controllers.Toolbar.textBracket": "Klammern",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.",
"DE.Controllers.Toolbar.textFontSizeErr": "Der eingegebene Wert ist falsch.<br>Geben Sie bitte einen numerischen Wert zwischen 1 und 100 ein.", "DE.Controllers.Toolbar.textFontSizeErr": "Der eingegebene Wert ist falsch.<br>Geben Sie bitte einen numerischen Wert zwischen 1 und 300 ein.",
"DE.Controllers.Toolbar.textFraction": "Bruchteile", "DE.Controllers.Toolbar.textFraction": "Bruchteile",
"DE.Controllers.Toolbar.textFunction": "Funktionen", "DE.Controllers.Toolbar.textFunction": "Funktionen",
"DE.Controllers.Toolbar.textInsert": "Einfügen", "DE.Controllers.Toolbar.textInsert": "Einfügen",

View file

@ -49,7 +49,7 @@
"Common.Controllers.ReviewChanges.textNoWidow": "Χωρίς έλεγχο παραθύρου", "Common.Controllers.ReviewChanges.textNoWidow": "Χωρίς έλεγχο παραθύρου",
"Common.Controllers.ReviewChanges.textNum": "Αλλαγή αρίθμησης", "Common.Controllers.ReviewChanges.textNum": "Αλλαγή αρίθμησης",
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Παράγραφος Διαγράφηκε</b>", "Common.Controllers.ReviewChanges.textParaDeleted": "<b>Παράγραφος Διαγράφηκε</b>",
"Common.Controllers.ReviewChanges.textParaFormatted": "Διαμόρφωση παραγράφου", "Common.Controllers.ReviewChanges.textParaFormatted": "Παράγραφος Μορφοποιήθηκε",
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Παράγραφος Εισήχθη</b>", "Common.Controllers.ReviewChanges.textParaInserted": "<b>Παράγραφος Εισήχθη</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Μετακινήθηκαν Κάτω:</b>", "Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Μετακινήθηκαν Κάτω:</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Μετακινήθηκαν Πάνω:</b>", "Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Μετακινήθηκαν Πάνω:</b>",
@ -129,7 +129,7 @@
"Common.UI.ExtendedColorDialog.textHexErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.<br>Παρακαλούμε βάλτε μια τιμή μεταξύ 000000 και FFFFFF.", "Common.UI.ExtendedColorDialog.textHexErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.<br>Παρακαλούμε βάλτε μια τιμή μεταξύ 000000 και FFFFFF.",
"Common.UI.ExtendedColorDialog.textNew": "Νέο", "Common.UI.ExtendedColorDialog.textNew": "Νέο",
"Common.UI.ExtendedColorDialog.textRGBErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.<br>Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 0 και 255.", "Common.UI.ExtendedColorDialog.textRGBErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.<br>Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 0 και 255.",
"Common.UI.HSBColorPicker.textNoColor": "Χωρίς χρώμα", "Common.UI.HSBColorPicker.textNoColor": "Χωρίς Χρώμα",
"Common.UI.SearchDialog.textHighlight": "Επισήμανση αποτελεσμάτων", "Common.UI.SearchDialog.textHighlight": "Επισήμανση αποτελεσμάτων",
"Common.UI.SearchDialog.textMatchCase": "Με διάκριση πεζών - κεφαλαίων γραμμάτων", "Common.UI.SearchDialog.textMatchCase": "Με διάκριση πεζών - κεφαλαίων γραμμάτων",
"Common.UI.SearchDialog.textReplaceDef": "Εισάγετε το κείμενο αντικατάστασης", "Common.UI.SearchDialog.textReplaceDef": "Εισάγετε το κείμενο αντικατάστασης",
@ -157,7 +157,7 @@
"Common.Utils.Metric.txtCm": "εκ", "Common.Utils.Metric.txtCm": "εκ",
"Common.Utils.Metric.txtPt": "pt", "Common.Utils.Metric.txtPt": "pt",
"Common.Views.About.txtAddress": "Διεύθυνση: ", "Common.Views.About.txtAddress": "Διεύθυνση: ",
"Common.Views.About.txtLicensee": "ΑΔΕΙΑ", "Common.Views.About.txtLicensee": "ΑΔΕΙΟΔΕΚΤΗΣ",
"Common.Views.About.txtLicensor": "ΑΔΕΙΟΔΟΤΗΣ", "Common.Views.About.txtLicensor": "ΑΔΕΙΟΔΟΤΗΣ",
"Common.Views.About.txtMail": "email: ", "Common.Views.About.txtMail": "email: ",
"Common.Views.About.txtPoweredBy": "Υποστηρίζεται από", "Common.Views.About.txtPoweredBy": "Υποστηρίζεται από",
@ -199,7 +199,7 @@
"Common.Views.Comments.textEdit": "Εντάξει", "Common.Views.Comments.textEdit": "Εντάξει",
"Common.Views.Comments.textEnterCommentHint": "Εισάγετε το σχόλιό σας εδώ", "Common.Views.Comments.textEnterCommentHint": "Εισάγετε το σχόλιό σας εδώ",
"Common.Views.Comments.textHintAddComment": "Προσθήκη σχολίου", "Common.Views.Comments.textHintAddComment": "Προσθήκη σχολίου",
"Common.Views.Comments.textOpenAgain": "Άνοιγμα ξανά", "Common.Views.Comments.textOpenAgain": "Άνοιγμα Ξανά",
"Common.Views.Comments.textReply": "Απάντηση", "Common.Views.Comments.textReply": "Απάντηση",
"Common.Views.Comments.textResolve": "Επίλυση", "Common.Views.Comments.textResolve": "Επίλυση",
"Common.Views.Comments.textResolved": "Επιλύθηκε", "Common.Views.Comments.textResolved": "Επιλύθηκε",
@ -220,9 +220,9 @@
"Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:", "Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:",
"Common.Views.Header.textAdvSettings": "Ρυθμίσεις για προχωρημένους", "Common.Views.Header.textAdvSettings": "Ρυθμίσεις για προχωρημένους",
"Common.Views.Header.textBack": "Άνοιγμα τοποθεσίας αρχείου", "Common.Views.Header.textBack": "Άνοιγμα τοποθεσίας αρχείου",
"Common.Views.Header.textCompactView": "Απόκρυψη γραμμής εργαλείων", "Common.Views.Header.textCompactView": "Απόκρυψη Γραμμής Εργαλείων",
"Common.Views.Header.textHideLines": "Απόκρυψη Χαράκων", "Common.Views.Header.textHideLines": "Απόκρυψη Χαράκων",
"Common.Views.Header.textHideStatusBar": "Απόκρυψη γραμμής κατάστασης", "Common.Views.Header.textHideStatusBar": "Απόκρυψη Γραμμής Κατάστασης",
"Common.Views.Header.textZoom": "Εστίαση", "Common.Views.Header.textZoom": "Εστίαση",
"Common.Views.Header.tipAccessRights": "Διαχείριση δικαιωμάτων πρόσβασης εγγράφου", "Common.Views.Header.tipAccessRights": "Διαχείριση δικαιωμάτων πρόσβασης εγγράφου",
"Common.Views.Header.tipDownload": "Λήψη αρχείου", "Common.Views.Header.tipDownload": "Λήψη αρχείου",
@ -246,10 +246,10 @@
"Common.Views.ImageFromUrlDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό", "Common.Views.ImageFromUrlDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι διεύθυνση URL με τη μορφή «http://www.example.com»", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι διεύθυνση URL με τη μορφή «http://www.example.com»",
"Common.Views.InsertTableDialog.textInvalidRowsCols": "Πρέπει να καθορίσετε έγκυρο αριθμό γραμμών και στηλών.", "Common.Views.InsertTableDialog.textInvalidRowsCols": "Πρέπει να καθορίσετε έγκυρο αριθμό γραμμών και στηλών.",
"Common.Views.InsertTableDialog.txtColumns": "Αριθμός στηλών", "Common.Views.InsertTableDialog.txtColumns": "Αριθμός Στηλών",
"Common.Views.InsertTableDialog.txtMaxText": "Η μέγιστη τιμή για αυτό το πεδίο είναι {0}.", "Common.Views.InsertTableDialog.txtMaxText": "Η μέγιστη τιμή για αυτό το πεδίο είναι {0}.",
"Common.Views.InsertTableDialog.txtMinText": "Η ελάχιστη τιμή για αυτό το πεδίο είναι {0}.", "Common.Views.InsertTableDialog.txtMinText": "Η ελάχιστη τιμή για αυτό το πεδίο είναι {0}.",
"Common.Views.InsertTableDialog.txtRows": "Αριθμός γραμμών", "Common.Views.InsertTableDialog.txtRows": "Αριθμός Γραμμών",
"Common.Views.InsertTableDialog.txtTitle": "Μέγεθος πίνακα", "Common.Views.InsertTableDialog.txtTitle": "Μέγεθος πίνακα",
"Common.Views.InsertTableDialog.txtTitleSplit": "Διαίρεση κελιού", "Common.Views.InsertTableDialog.txtTitleSplit": "Διαίρεση κελιού",
"Common.Views.LanguageDialog.labelSelect": "Επιλέξτε τη γλώσσα του εγγράφου", "Common.Views.LanguageDialog.labelSelect": "Επιλέξτε τη γλώσσα του εγγράφου",
@ -260,7 +260,7 @@
"Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση", "Common.Views.OpenDialog.txtPreview": "Προεπισκόπηση",
"Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε τον κωδικό και ανοίξετε το αρχείο, ο τρέχων κωδικός αρχείου θα αρχικοποιηθεί.", "Common.Views.OpenDialog.txtProtected": "Μόλις βάλετε τον κωδικό και ανοίξετε το αρχείο, ο τρέχων κωδικός αρχείου θα αρχικοποιηθεί.",
"Common.Views.OpenDialog.txtTitle": "Διαλέξτε %1 επιλογές", "Common.Views.OpenDialog.txtTitle": "Διαλέξτε %1 επιλογές",
"Common.Views.OpenDialog.txtTitleProtected": "Προστατευμένο αρχείο", "Common.Views.OpenDialog.txtTitleProtected": "Προστατευμένο Αρχείο",
"Common.Views.PasswordDialog.txtDescription": "Ορισμός κωδικού προστασίας για αυτό το έγγραφο", "Common.Views.PasswordDialog.txtDescription": "Ορισμός κωδικού προστασίας για αυτό το έγγραφο",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Ο κωδικός επιβεβαίωσης δεν είναι πανομοιότυπος", "Common.Views.PasswordDialog.txtIncorrectPwd": "Ο κωδικός επιβεβαίωσης δεν είναι πανομοιότυπος",
"Common.Views.PasswordDialog.txtPassword": "Συνθηματικό", "Common.Views.PasswordDialog.txtPassword": "Συνθηματικό",
@ -313,9 +313,9 @@
"Common.Views.ReviewChanges.txtChat": "Συνομιλία", "Common.Views.ReviewChanges.txtChat": "Συνομιλία",
"Common.Views.ReviewChanges.txtClose": "Κλείσιμο", "Common.Views.ReviewChanges.txtClose": "Κλείσιμο",
"Common.Views.ReviewChanges.txtCoAuthMode": "Κατάσταση Συνεργατικής Επεξεργασίας", "Common.Views.ReviewChanges.txtCoAuthMode": "Κατάσταση Συνεργατικής Επεξεργασίας",
"Common.Views.ReviewChanges.txtCommentRemAll": "Αφαίρεση όλων των σχολίων", "Common.Views.ReviewChanges.txtCommentRemAll": "Αφαίρεση Όλων των Σχολίων",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Αφαίρεση Υφιστάμενων Σχολίων", "Common.Views.ReviewChanges.txtCommentRemCurrent": "Αφαίρεση Υφιστάμενων Σχολίων",
"Common.Views.ReviewChanges.txtCommentRemMy": "Αφαίρεση των σχολίων μου", "Common.Views.ReviewChanges.txtCommentRemMy": "Αφαίρεση των Σχολίων Μου",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Διαγραφή Πρόσφατων Σχολίων Μου", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Διαγραφή Πρόσφατων Σχολίων Μου",
"Common.Views.ReviewChanges.txtCommentRemove": "Αφαίρεση", "Common.Views.ReviewChanges.txtCommentRemove": "Αφαίρεση",
"Common.Views.ReviewChanges.txtCompare": "Σύγκριση", "Common.Views.ReviewChanges.txtCompare": "Σύγκριση",
@ -330,9 +330,9 @@
"Common.Views.ReviewChanges.txtOriginalCap": "Αυθεντικό", "Common.Views.ReviewChanges.txtOriginalCap": "Αυθεντικό",
"Common.Views.ReviewChanges.txtPrev": "Προηγούμενο", "Common.Views.ReviewChanges.txtPrev": "Προηγούμενο",
"Common.Views.ReviewChanges.txtReject": "Απόρριψη", "Common.Views.ReviewChanges.txtReject": "Απόρριψη",
"Common.Views.ReviewChanges.txtRejectAll": "Απόρριψη όλων των αλλαγών", "Common.Views.ReviewChanges.txtRejectAll": "Απόρριψη Όλων των Αλλαγών",
"Common.Views.ReviewChanges.txtRejectChanges": "Απόρριψη αλλαγών", "Common.Views.ReviewChanges.txtRejectChanges": "Απόρριψη αλλαγών",
"Common.Views.ReviewChanges.txtRejectCurrent": "Απόρριψη τρέχουσας αλλαγής", "Common.Views.ReviewChanges.txtRejectCurrent": "Απόρριψη Τρέχουσας Αλλαγής",
"Common.Views.ReviewChanges.txtSharing": "Διαμοιρασμός", "Common.Views.ReviewChanges.txtSharing": "Διαμοιρασμός",
"Common.Views.ReviewChanges.txtSpelling": "Έλεγχος ορθογραφίας", "Common.Views.ReviewChanges.txtSpelling": "Έλεγχος ορθογραφίας",
"Common.Views.ReviewChanges.txtTurnon": "Παρακολούθηση αλλαγών", "Common.Views.ReviewChanges.txtTurnon": "Παρακολούθηση αλλαγών",
@ -344,8 +344,8 @@
"Common.Views.ReviewChangesDialog.txtNext": "Στην επόμενη αλλαγή", "Common.Views.ReviewChangesDialog.txtNext": "Στην επόμενη αλλαγή",
"Common.Views.ReviewChangesDialog.txtPrev": "Στην προηγούμενη αλλαγή", "Common.Views.ReviewChangesDialog.txtPrev": "Στην προηγούμενη αλλαγή",
"Common.Views.ReviewChangesDialog.txtReject": "Απόρριψη", "Common.Views.ReviewChangesDialog.txtReject": "Απόρριψη",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Απόρριψη όλων των αλλαγών", "Common.Views.ReviewChangesDialog.txtRejectAll": "Απόρριψη Όλων των Αλλαγών",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Απόρριψη τρέχουσας αλλαγής", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Απόρριψη Τρέχουσας Αλλαγής",
"Common.Views.ReviewPopover.textAdd": "Προσθήκη", "Common.Views.ReviewPopover.textAdd": "Προσθήκη",
"Common.Views.ReviewPopover.textAddReply": "Προσθήκη Απάντησης", "Common.Views.ReviewPopover.textAddReply": "Προσθήκη Απάντησης",
"Common.Views.ReviewPopover.textCancel": "Ακύρωση", "Common.Views.ReviewPopover.textCancel": "Ακύρωση",
@ -354,7 +354,7 @@
"Common.Views.ReviewPopover.textFollowMove": "Παρακολούθηση Κίνησης", "Common.Views.ReviewPopover.textFollowMove": "Παρακολούθηση Κίνησης",
"Common.Views.ReviewPopover.textMention": "+mention θα δώσει πρόσβαση στο αρχείο και θα στείλει email", "Common.Views.ReviewPopover.textMention": "+mention θα δώσει πρόσβαση στο αρχείο και θα στείλει email",
"Common.Views.ReviewPopover.textMentionNotify": "+mention θα ενημερώσει τον χρήστη με email", "Common.Views.ReviewPopover.textMentionNotify": "+mention θα ενημερώσει τον χρήστη με email",
"Common.Views.ReviewPopover.textOpenAgain": "Άνοιγμα ξανά", "Common.Views.ReviewPopover.textOpenAgain": "Άνοιγμα Ξανά",
"Common.Views.ReviewPopover.textReply": "Απάντηση", "Common.Views.ReviewPopover.textReply": "Απάντηση",
"Common.Views.ReviewPopover.textResolve": "Επίλυση", "Common.Views.ReviewPopover.textResolve": "Επίλυση",
"Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση", "Common.Views.SaveAsDlg.textLoading": "Γίνεται φόρτωση",
@ -424,7 +424,7 @@
"DE.Controllers.LeftMenu.warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.<br>Θέλετε σίγουρα να συνεχίσετε;", "DE.Controllers.LeftMenu.warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.<br>Θέλετε σίγουρα να συνεχίσετε;",
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "Αν προχωρήσετε στην αποθήκευση σε αυτή τη μορφή, κάποιες από τις μορφοποιήσεις μπορεί να χαθούν.<br>Θέλετε σίγουρα να συνεχίσετε;", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Αν προχωρήσετε στην αποθήκευση σε αυτή τη μορφή, κάποιες από τις μορφοποιήσεις μπορεί να χαθούν.<br>Θέλετε σίγουρα να συνεχίσετε;",
"DE.Controllers.Main.applyChangesTextText": "Γίνεται φόρτωση των αλλαγών...", "DE.Controllers.Main.applyChangesTextText": "Γίνεται φόρτωση των αλλαγών...",
"DE.Controllers.Main.applyChangesTitleText": "Γίνεται φόρτωση των αλλαγών", "DE.Controllers.Main.applyChangesTitleText": "Γίνεται Φόρτωση των Αλλαγών",
"DE.Controllers.Main.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", "DE.Controllers.Main.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.",
"DE.Controllers.Main.criticalErrorExtText": "Πατήστε \"ΟΚ\" για να επιστρέψετε στη λίστα εγγράφων.", "DE.Controllers.Main.criticalErrorExtText": "Πατήστε \"ΟΚ\" για να επιστρέψετε στη λίστα εγγράφων.",
"DE.Controllers.Main.criticalErrorTitle": "Σφάλμα", "DE.Controllers.Main.criticalErrorTitle": "Σφάλμα",
@ -434,7 +434,7 @@
"DE.Controllers.Main.downloadTextText": "Λήψη εγγράφου...", "DE.Controllers.Main.downloadTextText": "Λήψη εγγράφου...",
"DE.Controllers.Main.downloadTitleText": "Λήψη Εγγράφου", "DE.Controllers.Main.downloadTitleText": "Λήψη Εγγράφου",
"DE.Controllers.Main.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.<br>Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.", "DE.Controllers.Main.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.<br>Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.",
"DE.Controllers.Main.errorBadImageUrl": "Εσφαλμένος σύνδεσμος εικόνας", "DE.Controllers.Main.errorBadImageUrl": "Εσφαλμένη διεύθυνση URL εικόνας",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Χάθηκε η σύνδεση με τον εξυπηρετητή. Δεν μπορείτε να επεξεργαστείτε το έγγραφο αυτή τη στιγμή.", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Χάθηκε η σύνδεση με τον εξυπηρετητή. Δεν μπορείτε να επεξεργαστείτε το έγγραφο αυτή τη στιγμή.",
"DE.Controllers.Main.errorCompare": "Το χαρακτηριστικό Σύγκρισης Εγγράφων δεν είναι διαθέσιμο στην συν-επεξεργασία.", "DE.Controllers.Main.errorCompare": "Το χαρακτηριστικό Σύγκρισης Εγγράφων δεν είναι διαθέσιμο στην συν-επεξεργασία.",
"DE.Controllers.Main.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.<br>Όταν πατήσετε 'ΟΚ', θα μπορέσετε να κατεβάσετε το έγγραφο.", "DE.Controllers.Main.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.<br>Όταν πατήσετε 'ΟΚ', θα μπορέσετε να κατεβάσετε το έγγραφο.",
@ -470,22 +470,22 @@
"DE.Controllers.Main.loadFontsTextText": "Γίνεται φόρτωση δεδομένων...", "DE.Controllers.Main.loadFontsTextText": "Γίνεται φόρτωση δεδομένων...",
"DE.Controllers.Main.loadFontsTitleText": "Γίνεται φόρτωση δεδομένων", "DE.Controllers.Main.loadFontsTitleText": "Γίνεται φόρτωση δεδομένων",
"DE.Controllers.Main.loadFontTextText": "Γίνεται φόρτωση δεδομένων...", "DE.Controllers.Main.loadFontTextText": "Γίνεται φόρτωση δεδομένων...",
"DE.Controllers.Main.loadFontTitleText": "Γίνεται φόρτωση δεδομένων", "DE.Controllers.Main.loadFontTitleText": "Γίνεται Φόρτωση Δεδομένων",
"DE.Controllers.Main.loadImagesTextText": "Γίνεται φόρτωση εικόνων...", "DE.Controllers.Main.loadImagesTextText": "Γίνεται Φόρτωση Εικόνων...",
"DE.Controllers.Main.loadImagesTitleText": "Γίνεται φόρτωση εικόνων", "DE.Controllers.Main.loadImagesTitleText": "Γίνεται Φόρτωση Εικόνων",
"DE.Controllers.Main.loadImageTextText": "Γίνεται φόρτωση εικόνας...", "DE.Controllers.Main.loadImageTextText": "Γίνεται φόρτωση εικόνας...",
"DE.Controllers.Main.loadImageTitleText": "Γίνεται φόρτωση εικόνας", "DE.Controllers.Main.loadImageTitleText": "Γίνεται φόρτωση εικόνας",
"DE.Controllers.Main.loadingDocumentTextText": "Γίνεται φόρτωση εγγράφου...", "DE.Controllers.Main.loadingDocumentTextText": "Γίνεται φόρτωση εγγράφου...",
"DE.Controllers.Main.loadingDocumentTitleText": "Φόρτωση εγγράφου", "DE.Controllers.Main.loadingDocumentTitleText": "Φόρτωση εγγράφου",
"DE.Controllers.Main.mailMergeLoadFileText": "Γίνεται φόρτωση πηγαίων δεδομένων...", "DE.Controllers.Main.mailMergeLoadFileText": "Γίνεται Φόρτωση της Πηγής Δεδομένων...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Γίνεται φόρτωση πηγαίων δεδομένων", "DE.Controllers.Main.mailMergeLoadFileTitle": "Γίνεται Φόρτωση της Πηγής Δεδομένων",
"DE.Controllers.Main.notcriticalErrorTitle": "Προειδοποίηση", "DE.Controllers.Main.notcriticalErrorTitle": "Προειδοποίηση",
"DE.Controllers.Main.openErrorText": "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου.", "DE.Controllers.Main.openErrorText": "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου.",
"DE.Controllers.Main.openTextText": "Γίνεται άνοιγμα εγγράφου...", "DE.Controllers.Main.openTextText": "Γίνεται άνοιγμα εγγράφου...",
"DE.Controllers.Main.openTitleText": "Άνοιγμα εγγράφου", "DE.Controllers.Main.openTitleText": "Άνοιγμα Εγγράφου",
"DE.Controllers.Main.printTextText": "Γίνεται εκτύπωση εγγράφου...", "DE.Controllers.Main.printTextText": "Γίνεται εκτύπωση εγγράφου...",
"DE.Controllers.Main.printTitleText": "Εκτύπωση εγγράφου", "DE.Controllers.Main.printTitleText": "Εκτύπωση Εγγράφου",
"DE.Controllers.Main.reloadButtonText": "Επανάληψη φόρτωσης σελίδας", "DE.Controllers.Main.reloadButtonText": "Επανάληψη Φόρτωσης Σελίδας",
"DE.Controllers.Main.requestEditFailedMessageText": "Κάποιος επεξεργάζεται αυτό το έγγραφο αυτήν τη στιγμή. Παρακαλούμε δοκιμάστε ξανά αργότερα.", "DE.Controllers.Main.requestEditFailedMessageText": "Κάποιος επεξεργάζεται αυτό το έγγραφο αυτήν τη στιγμή. Παρακαλούμε δοκιμάστε ξανά αργότερα.",
"DE.Controllers.Main.requestEditFailedTitleText": "Δεν επιτρέπεται η πρόσβαση", "DE.Controllers.Main.requestEditFailedTitleText": "Δεν επιτρέπεται η πρόσβαση",
"DE.Controllers.Main.saveErrorText": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου.", "DE.Controllers.Main.saveErrorText": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου.",
@ -510,7 +510,7 @@
"DE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.<br>Να μετατραπεί τώρα;", "DE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.<br>Να μετατραπεί τώρα;",
"DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.<br>Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.", "DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.<br>Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.",
"DE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.<br>Θέλετε να εκτελέσετε μακροεντολές;", "DE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.<br>Θέλετε να εκτελέσετε μακροεντολές;",
"DE.Controllers.Main.textLearnMore": "Μάθετε περισσότερα", "DE.Controllers.Main.textLearnMore": "Μάθετε Περισσότερα",
"DE.Controllers.Main.textLoadingDocument": "Φόρτωση εγγράφου", "DE.Controllers.Main.textLoadingDocument": "Φόρτωση εγγράφου",
"DE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.", "DE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.",
"DE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή", "DE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή",
@ -552,7 +552,7 @@
"DE.Controllers.Main.txtNeedSynchronize": "Έχετε ενημερώσεις", "DE.Controllers.Main.txtNeedSynchronize": "Έχετε ενημερώσεις",
"DE.Controllers.Main.txtNoTableOfContents": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο. Εφαρμόστε μια τεχνοτροπία επικεφαλίδων στο κείμενο ώστε να εμφανίζεται στον πίνακα περιεχομένων.", "DE.Controllers.Main.txtNoTableOfContents": "Δεν υπάρχουν επικεφαλίδες στο έγγραφο. Εφαρμόστε μια τεχνοτροπία επικεφαλίδων στο κείμενο ώστε να εμφανίζεται στον πίνακα περιεχομένων.",
"DE.Controllers.Main.txtNoText": "Σφάλμα! Δεν υπάρχει κείμενο συγκεκριμένης τεχνοτροπίας στο έγγραφο.", "DE.Controllers.Main.txtNoText": "Σφάλμα! Δεν υπάρχει κείμενο συγκεκριμένης τεχνοτροπίας στο έγγραφο.",
"DE.Controllers.Main.txtNotInTable": "Δεν Είναι Σε Πίνακα", "DE.Controllers.Main.txtNotInTable": "Δεν Είναι Στον Πίνακα",
"DE.Controllers.Main.txtNotValidBookmark": "Σφάλμα! Μη έγκυρη αυτο-αναφορά σελιδοδείκτη.", "DE.Controllers.Main.txtNotValidBookmark": "Σφάλμα! Μη έγκυρη αυτο-αναφορά σελιδοδείκτη.",
"DE.Controllers.Main.txtOddPage": "Μονή Σελίδα", "DE.Controllers.Main.txtOddPage": "Μονή Σελίδα",
"DE.Controllers.Main.txtOnPage": "στην σελίδα", "DE.Controllers.Main.txtOnPage": "στην σελίδα",
@ -657,7 +657,7 @@
"DE.Controllers.Main.txtShape_horizontalScroll": "Οριζόντια Κύλιση", "DE.Controllers.Main.txtShape_horizontalScroll": "Οριζόντια Κύλιση",
"DE.Controllers.Main.txtShape_irregularSeal1": "Έκρηξη 1", "DE.Controllers.Main.txtShape_irregularSeal1": "Έκρηξη 1",
"DE.Controllers.Main.txtShape_irregularSeal2": "Έκρηξη 2", "DE.Controllers.Main.txtShape_irregularSeal2": "Έκρηξη 2",
"DE.Controllers.Main.txtShape_leftArrow": "Αριστερό βέλος", "DE.Controllers.Main.txtShape_leftArrow": "Αριστερό Βέλος",
"DE.Controllers.Main.txtShape_leftArrowCallout": "Επεξήγηση με Αριστερό Βέλος", "DE.Controllers.Main.txtShape_leftArrowCallout": "Επεξήγηση με Αριστερό Βέλος",
"DE.Controllers.Main.txtShape_leftBrace": "Αριστερό Άγκιστρο", "DE.Controllers.Main.txtShape_leftBrace": "Αριστερό Άγκιστρο",
"DE.Controllers.Main.txtShape_leftBracket": "Αριστερή Παρένθεση", "DE.Controllers.Main.txtShape_leftBracket": "Αριστερή Παρένθεση",
@ -744,8 +744,8 @@
"DE.Controllers.Main.txtStyle_Heading_8": "Επικεφαλίδα 8", "DE.Controllers.Main.txtStyle_Heading_8": "Επικεφαλίδα 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Επικεφαλίδα 9", "DE.Controllers.Main.txtStyle_Heading_9": "Επικεφαλίδα 9",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Έντονα Εισαγωγικά", "DE.Controllers.Main.txtStyle_Intense_Quote": "Έντονα Εισαγωγικά",
"DE.Controllers.Main.txtStyle_List_Paragraph": "Παράγραφος λίστα", "DE.Controllers.Main.txtStyle_List_Paragraph": "Παράγραφος Λίστας",
"DE.Controllers.Main.txtStyle_No_Spacing": "Χωρίς Διάστημα", "DE.Controllers.Main.txtStyle_No_Spacing": "Χωρίς Απόσταση",
"DE.Controllers.Main.txtStyle_Normal": "Κανονική", "DE.Controllers.Main.txtStyle_Normal": "Κανονική",
"DE.Controllers.Main.txtStyle_Quote": "Παράθεση", "DE.Controllers.Main.txtStyle_Quote": "Παράθεση",
"DE.Controllers.Main.txtStyle_Subtitle": "Υπότιτλος", "DE.Controllers.Main.txtStyle_Subtitle": "Υπότιτλος",
@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Τόνοι/Πνεύματα", "DE.Controllers.Toolbar.textAccent": "Τόνοι/Πνεύματα",
"DE.Controllers.Toolbar.textBracket": "Αγκύλες", "DE.Controllers.Toolbar.textBracket": "Αγκύλες",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.",
"DE.Controllers.Toolbar.textFontSizeErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.<br>Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 1 και 100", "DE.Controllers.Toolbar.textFontSizeErr": "Η τιμή που βάλατε δεν είναι αποδεκτή.<br>Παρακαλούμε βάλτε μια αριθμητική τιμή μεταξύ 1 και 300",
"DE.Controllers.Toolbar.textFraction": "Κλάσματα", "DE.Controllers.Toolbar.textFraction": "Κλάσματα",
"DE.Controllers.Toolbar.textFunction": "Λειτουργίες", "DE.Controllers.Toolbar.textFunction": "Λειτουργίες",
"DE.Controllers.Toolbar.textInsert": "Εισαγωγή", "DE.Controllers.Toolbar.textInsert": "Εισαγωγή",
@ -1298,12 +1298,12 @@
"DE.Views.DocumentHolder.editHyperlinkText": "Επεξεργασία Υπερσυνδέσμου", "DE.Views.DocumentHolder.editHyperlinkText": "Επεξεργασία Υπερσυνδέσμου",
"DE.Views.DocumentHolder.guestText": "Επισκέπτης", "DE.Views.DocumentHolder.guestText": "Επισκέπτης",
"DE.Views.DocumentHolder.hyperlinkText": "Υπερσύνδεσμος", "DE.Views.DocumentHolder.hyperlinkText": "Υπερσύνδεσμος",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Αγνόηση όλων", "DE.Views.DocumentHolder.ignoreAllSpellText": "Αγνόηση Όλων",
"DE.Views.DocumentHolder.ignoreSpellText": "Αγνόηση", "DE.Views.DocumentHolder.ignoreSpellText": "Αγνόηση",
"DE.Views.DocumentHolder.imageText": "Προηγμένες ρυθμίσεις εικόνας", "DE.Views.DocumentHolder.imageText": "Προηγμένες Ρυθμίσεις Εικόνας",
"DE.Views.DocumentHolder.insertColumnLeftText": "Στήλη Αριστερά", "DE.Views.DocumentHolder.insertColumnLeftText": "Στήλη Αριστερά",
"DE.Views.DocumentHolder.insertColumnRightText": "Στήλη Δεξιά", "DE.Views.DocumentHolder.insertColumnRightText": "Στήλη Δεξιά",
"DE.Views.DocumentHolder.insertColumnText": "Εισαγωγή στήλης", "DE.Views.DocumentHolder.insertColumnText": "Εισαγωγή Στήλης",
"DE.Views.DocumentHolder.insertRowAboveText": "Γραμμή Από Πάνω", "DE.Views.DocumentHolder.insertRowAboveText": "Γραμμή Από Πάνω",
"DE.Views.DocumentHolder.insertRowBelowText": "Γραμμή Από Κάτω", "DE.Views.DocumentHolder.insertRowBelowText": "Γραμμή Από Κάτω",
"DE.Views.DocumentHolder.insertRowText": "Εισαγωγή Γραμμής", "DE.Views.DocumentHolder.insertRowText": "Εισαγωγή Γραμμής",
@ -1312,12 +1312,12 @@
"DE.Views.DocumentHolder.langText": "Επιλογή γλώσσας", "DE.Views.DocumentHolder.langText": "Επιλογή γλώσσας",
"DE.Views.DocumentHolder.leftText": "Αριστερά", "DE.Views.DocumentHolder.leftText": "Αριστερά",
"DE.Views.DocumentHolder.loadSpellText": "Φόρτωση παραλλαγών...", "DE.Views.DocumentHolder.loadSpellText": "Φόρτωση παραλλαγών...",
"DE.Views.DocumentHolder.mergeCellsText": "Συγχώνευση κελιών", "DE.Views.DocumentHolder.mergeCellsText": "Συγχώνευση Κελιών",
"DE.Views.DocumentHolder.moreText": "Περισσότερες παραλλαγές...", "DE.Views.DocumentHolder.moreText": "Περισσότερες παραλλαγές...",
"DE.Views.DocumentHolder.noSpellVariantsText": "Καμιά παραλλαγή", "DE.Views.DocumentHolder.noSpellVariantsText": "Καμιά παραλλαγή",
"DE.Views.DocumentHolder.originalSizeText": "Πραγματικό Μέγεθος", "DE.Views.DocumentHolder.originalSizeText": "Πραγματικό Μέγεθος",
"DE.Views.DocumentHolder.paragraphText": "Παράγραφος", "DE.Views.DocumentHolder.paragraphText": "Παράγραφος",
"DE.Views.DocumentHolder.removeHyperlinkText": "Αφαίρεση υπερσυνδέσμου", "DE.Views.DocumentHolder.removeHyperlinkText": "Αφαίρεση Υπερσυνδέσμου",
"DE.Views.DocumentHolder.rightText": "Δεξιά", "DE.Views.DocumentHolder.rightText": "Δεξιά",
"DE.Views.DocumentHolder.rowText": "Γραμμή", "DE.Views.DocumentHolder.rowText": "Γραμμή",
"DE.Views.DocumentHolder.saveStyleText": "Δημιουργία νέας τεχνοτροπίας", "DE.Views.DocumentHolder.saveStyleText": "Δημιουργία νέας τεχνοτροπίας",
@ -1365,17 +1365,17 @@
"DE.Views.DocumentHolder.textLeft": "Ολίσθηση κελιών αριστερά", "DE.Views.DocumentHolder.textLeft": "Ολίσθηση κελιών αριστερά",
"DE.Views.DocumentHolder.textNest": "Νέος πίνακας", "DE.Views.DocumentHolder.textNest": "Νέος πίνακας",
"DE.Views.DocumentHolder.textNextPage": "Επόμενη Σελίδα", "DE.Views.DocumentHolder.textNextPage": "Επόμενη Σελίδα",
"DE.Views.DocumentHolder.textNumberingValue": "Τιμή αρίθμησης", "DE.Views.DocumentHolder.textNumberingValue": "Τιμή Αρίθμησης",
"DE.Views.DocumentHolder.textPaste": "Επικόλληση", "DE.Views.DocumentHolder.textPaste": "Επικόλληση",
"DE.Views.DocumentHolder.textPrevPage": "Προηγούμενη σελίδα", "DE.Views.DocumentHolder.textPrevPage": "Προηγούμενη Σελίδα",
"DE.Views.DocumentHolder.textRefreshField": "Ανανέωση πεδίου", "DE.Views.DocumentHolder.textRefreshField": "Ανανέωση πεδίου",
"DE.Views.DocumentHolder.textRemCheckBox": "Διαγραφή Πλαισίου Επιλογής", "DE.Views.DocumentHolder.textRemCheckBox": "Αφαίρεση Πλαισίου Επιλογής",
"DE.Views.DocumentHolder.textRemComboBox": "Διαγραφή Πολλαπλών Επιλογών", "DE.Views.DocumentHolder.textRemComboBox": "Αφαίρεση Πολλαπλών Επιλογών",
"DE.Views.DocumentHolder.textRemDropdown": "Διαγραφή Πτυσσόμενης Λίστας ", "DE.Views.DocumentHolder.textRemDropdown": "Αφαίρεση Πτυσσόμενης Λίστας ",
"DE.Views.DocumentHolder.textRemField": "Διαγραφή Πεδίου Κειμένου", "DE.Views.DocumentHolder.textRemField": "Διαγραφή Πεδίου Κειμένου",
"DE.Views.DocumentHolder.textRemove": "Αφαίρεση", "DE.Views.DocumentHolder.textRemove": "Αφαίρεση",
"DE.Views.DocumentHolder.textRemoveControl": "Αφαίρεση ελέγχου περιεχομένου", "DE.Views.DocumentHolder.textRemoveControl": "Αφαίρεση ελέγχου περιεχομένου",
"DE.Views.DocumentHolder.textRemPicture": "Διαγραφή Εικόνας", "DE.Views.DocumentHolder.textRemPicture": "Αφαίρεση Εικόνας",
"DE.Views.DocumentHolder.textRemRadioBox": "Διαγραφή Κουμπιού Επιλογής", "DE.Views.DocumentHolder.textRemRadioBox": "Διαγραφή Κουμπιού Επιλογής",
"DE.Views.DocumentHolder.textReplace": "Αντικατάσταση εικόνας", "DE.Views.DocumentHolder.textReplace": "Αντικατάσταση εικόνας",
"DE.Views.DocumentHolder.textRotate": "Περιστροφή", "DE.Views.DocumentHolder.textRotate": "Περιστροφή",
@ -1467,7 +1467,7 @@
"DE.Views.DocumentHolder.txtOverwriteCells": "Αντικατάσταση κελιών", "DE.Views.DocumentHolder.txtOverwriteCells": "Αντικατάσταση κελιών",
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Διατήρηση μορφοποίησης πηγής", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Διατήρηση μορφοποίησης πηγής",
"DE.Views.DocumentHolder.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", "DE.Views.DocumentHolder.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο",
"DE.Views.DocumentHolder.txtPrintSelection": "Εκτύπωση επιλογής", "DE.Views.DocumentHolder.txtPrintSelection": "Εκτύπωση Επιλογής",
"DE.Views.DocumentHolder.txtRemFractionBar": "Αφαίρεση γραμμής κλάσματος", "DE.Views.DocumentHolder.txtRemFractionBar": "Αφαίρεση γραμμής κλάσματος",
"DE.Views.DocumentHolder.txtRemLimit": "Αφαίρεση ορίου", "DE.Views.DocumentHolder.txtRemLimit": "Αφαίρεση ορίου",
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Αφαίρεση τονισμένου χαρακτήρα", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Αφαίρεση τονισμένου χαρακτήρα",
@ -1499,8 +1499,8 @@
"DE.Views.DropcapSettingsAdvanced.textAlign": "Στοίχιση", "DE.Views.DropcapSettingsAdvanced.textAlign": "Στοίχιση",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "Τουλάχιστον", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Τουλάχιστον",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Αυτόματα", "DE.Views.DropcapSettingsAdvanced.textAuto": "Αυτόματα",
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Χρώμα",
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Χρώμα Φόντου", "DE.Views.DropcapSettingsAdvanced.textBackColor": "Χρώμα Φόντου",
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Χρώμα",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα", "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα",
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
"DE.Views.DropcapSettingsAdvanced.textBottom": "Κάτω", "DE.Views.DropcapSettingsAdvanced.textBottom": "Κάτω",
@ -1547,7 +1547,7 @@
"DE.Views.FileMenu.btnInfoCaption": "Πληροφορίες Εγγράφου...", "DE.Views.FileMenu.btnInfoCaption": "Πληροφορίες Εγγράφου...",
"DE.Views.FileMenu.btnPrintCaption": "Εκτύπωση", "DE.Views.FileMenu.btnPrintCaption": "Εκτύπωση",
"DE.Views.FileMenu.btnProtectCaption": "Προστασία", "DE.Views.FileMenu.btnProtectCaption": "Προστασία",
"DE.Views.FileMenu.btnRecentFilesCaption": "Άνοιγμα πρόσφατου...", "DE.Views.FileMenu.btnRecentFilesCaption": "Άνοιγμα Πρόσφατου...",
"DE.Views.FileMenu.btnRenameCaption": "Μετονομασία...", "DE.Views.FileMenu.btnRenameCaption": "Μετονομασία...",
"DE.Views.FileMenu.btnReturnCaption": "Πίσω στο Έγγραφο", "DE.Views.FileMenu.btnReturnCaption": "Πίσω στο Έγγραφο",
"DE.Views.FileMenu.btnRightsCaption": "Δικαιώματα Πρόσβασης...", "DE.Views.FileMenu.btnRightsCaption": "Δικαιώματα Πρόσβασης...",
@ -1560,7 +1560,7 @@
"DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Από Κενό", "DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Από Κενό",
"DE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Από Πρότυπο", "DE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Από Πρότυπο",
"DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Δημιουργήστε ένα νέο κενό έγγραφο για μορφοποίηση κατά βούληση. Ή επιλέξτε ένα από τα πρότυπα για να δημιουργήσετε ένα έγγραφο συγκεκριμένου τύπου ή σκοπού με προ-εφαρμοσμένες τεχνοτροπίες.", "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Δημιουργήστε ένα νέο κενό έγγραφο για μορφοποίηση κατά βούληση. Ή επιλέξτε ένα από τα πρότυπα για να δημιουργήσετε ένα έγγραφο συγκεκριμένου τύπου ή σκοπού με προ-εφαρμοσμένες τεχνοτροπίες.",
"DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Νέο έγγραφο κειμένου", "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Νέο Έγγραφο Κειμένου",
"DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Δεν υπάρχουν πρότυπα", "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Δεν υπάρχουν πρότυπα",
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Εφαρμογή", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Εφαρμογή",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Προσθήκη Συγγραφέα", "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Προσθήκη Συγγραφέα",
@ -1571,8 +1571,8 @@
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Σχόλιο", "DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Σχόλιο",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Δημιουργήθηκε", "DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Δημιουργήθηκε",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Φόρτωση ...", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Φόρτωση ...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Τελευταία τροποποίηση από", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Τελευταία Τροποποίηση Από",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Τελευταία τροποποίηση", "DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Τελευταίο Τροποποιημένο",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Ιδιοκτήτης", "DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Ιδιοκτήτης",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Σελίδες", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Σελίδες",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Παράγραφοι", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Παράγραφοι",
@ -1610,7 +1610,7 @@
"DE.Views.FileMenuPanels.Settings.strForcesave": "Πάντα να αποθηκεύεται σε διακομιστή (διαφορετικά αποθηκεύεται στο διακομιστή κατά το κλείσιμο του εγγράφου)", "DE.Views.FileMenuPanels.Settings.strForcesave": "Πάντα να αποθηκεύεται σε διακομιστή (διαφορετικά αποθηκεύεται στο διακομιστή κατά το κλείσιμο του εγγράφου)",
"DE.Views.FileMenuPanels.Settings.strInputMode": "Ενεργοποίηση ιερογλυφικών", "DE.Views.FileMenuPanels.Settings.strInputMode": "Ενεργοποίηση ιερογλυφικών",
"DE.Views.FileMenuPanels.Settings.strLiveComment": "Ενεργοποίηση προβολής σχολίων", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Ενεργοποίηση προβολής σχολίων",
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ρυθμίσεις Μακροεντολών", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ρυθμίσεις Mακροεντολών",
"DE.Views.FileMenuPanels.Settings.strPaste": "Αποκοπή, αντιγραφή και επικόλληση", "DE.Views.FileMenuPanels.Settings.strPaste": "Αποκοπή, αντιγραφή και επικόλληση",
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Εμφάνιση κουμπιού Επιλογών Επικόλλησης κατά την επικόλληση περιεχομένου", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Εμφάνιση κουμπιού Επιλογών Επικόλλησης κατά την επικόλληση περιεχομένου",
"DE.Views.FileMenuPanels.Settings.strResolvedComment": "Ενεργοποίηση εμφάνισης επιλυμένων σχολίων", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Ενεργοποίηση εμφάνισης επιλυμένων σχολίων",
@ -1713,7 +1713,7 @@
"DE.Views.HeaderFooterSettings.textInsertCurrent": "Εισαγωγή στην Τρέχουσα Θέση", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Εισαγωγή στην Τρέχουσα Θέση",
"DE.Views.HeaderFooterSettings.textOptions": "Επιλογές", "DE.Views.HeaderFooterSettings.textOptions": "Επιλογές",
"DE.Views.HeaderFooterSettings.textPageNum": "Εισαγωγή Αριθμού Σελίδας", "DE.Views.HeaderFooterSettings.textPageNum": "Εισαγωγή Αριθμού Σελίδας",
"DE.Views.HeaderFooterSettings.textPageNumbering": "Αρίθμηση σελίδας", "DE.Views.HeaderFooterSettings.textPageNumbering": "Αρίθμηση Σελίδας",
"DE.Views.HeaderFooterSettings.textPosition": "Θέση", "DE.Views.HeaderFooterSettings.textPosition": "Θέση",
"DE.Views.HeaderFooterSettings.textPrev": "Συνέχεια από το προηγούμενο τμήμα", "DE.Views.HeaderFooterSettings.textPrev": "Συνέχεια από το προηγούμενο τμήμα",
"DE.Views.HeaderFooterSettings.textSameAs": "Σύνδεσμος προς το Προηγούμενο", "DE.Views.HeaderFooterSettings.textSameAs": "Σύνδεσμος προς το Προηγούμενο",
@ -1725,7 +1725,7 @@
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Προβολή", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Προβολή",
"DE.Views.HyperlinkSettingsDialog.textExternal": "Εξωτερικός Σύνδεσμος", "DE.Views.HyperlinkSettingsDialog.textExternal": "Εξωτερικός Σύνδεσμος",
"DE.Views.HyperlinkSettingsDialog.textInternal": "Θέση στο Έγγραφο", "DE.Views.HyperlinkSettingsDialog.textInternal": "Θέση στο Έγγραφο",
"DE.Views.HyperlinkSettingsDialog.textTitle": "Ρυθμίσεις υπερσυνδέσμου", "DE.Views.HyperlinkSettingsDialog.textTitle": "Ρυθμίσεις Υπερσυνδέσμου",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "Κείμενο υπόδειξης", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Κείμενο υπόδειξης",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Σύνδεσμος σε", "DE.Views.HyperlinkSettingsDialog.textUrl": "Σύνδεσμος σε",
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Έναρξη εγγράφου", "DE.Views.HyperlinkSettingsDialog.txtBeginning": "Έναρξη εγγράφου",
@ -1876,14 +1876,14 @@
"DE.Views.Links.mniConvertNote": "Μετατροπή Όλων των Σημειώσεων", "DE.Views.Links.mniConvertNote": "Μετατροπή Όλων των Σημειώσεων",
"DE.Views.Links.mniDelFootnote": "Διαγραφή Όλων των Σημειώσεων", "DE.Views.Links.mniDelFootnote": "Διαγραφή Όλων των Σημειώσεων",
"DE.Views.Links.mniInsEndnote": "Εισαγωγή Σημείωσης Τέλους", "DE.Views.Links.mniInsEndnote": "Εισαγωγή Σημείωσης Τέλους",
"DE.Views.Links.mniInsFootnote": "Εισαγωγή υποσημείωσης", "DE.Views.Links.mniInsFootnote": "Εισαγωγή Υποσημείωσης",
"DE.Views.Links.mniNoteSettings": "Ρυθμίσεις σημειώσεων", "DE.Views.Links.mniNoteSettings": "Ρυθμίσεις Σημειώσεων",
"DE.Views.Links.textContentsRemove": "Αφαίρεση πίνακα περιεχομένων", "DE.Views.Links.textContentsRemove": "Αφαίρεση πίνακα περιεχομένων",
"DE.Views.Links.textContentsSettings": "Ρυθμίσεις", "DE.Views.Links.textContentsSettings": "Ρυθμίσεις",
"DE.Views.Links.textConvertToEndnotes": "Μετατροπή Όλων των Υποσημειώσεων σε Σημειώσεις Τέλους", "DE.Views.Links.textConvertToEndnotes": "Μετατροπή Όλων των Υποσημειώσεων σε Σημειώσεις Τέλους",
"DE.Views.Links.textConvertToFootnotes": "Μετατροπή Όλων των Σημειώσεων Τέλους σε Υποσημειώσεις", "DE.Views.Links.textConvertToFootnotes": "Μετατροπή Όλων των Σημειώσεων Τέλους σε Υποσημειώσεις",
"DE.Views.Links.textGotoEndnote": "Πηγαίνετε στις Σημειώσεις Τέλους", "DE.Views.Links.textGotoEndnote": "Μετάβαση στις Σημειώσεις Τέλους",
"DE.Views.Links.textGotoFootnote": "Πηγαίνετε στις Υποσημειώσεις", "DE.Views.Links.textGotoFootnote": "Μετάβαση στις Υποσημειώσεις",
"DE.Views.Links.textSwapNotes": "Αντιμετάθεση Υποσημειώσεων και Σημειώσεων Τέλους", "DE.Views.Links.textSwapNotes": "Αντιμετάθεση Υποσημειώσεων και Σημειώσεων Τέλους",
"DE.Views.Links.textUpdateAll": "Ανανέωση ολόκληρου του πίνακα", "DE.Views.Links.textUpdateAll": "Ανανέωση ολόκληρου του πίνακα",
"DE.Views.Links.textUpdatePages": "Ανανέωση αριθμών σελίδων μόνο", "DE.Views.Links.textUpdatePages": "Ανανέωση αριθμών σελίδων μόνο",
@ -1941,12 +1941,12 @@
"DE.Views.MailMergeSettings.textEditData": "Επεξεργασία λίστας παραληπτών", "DE.Views.MailMergeSettings.textEditData": "Επεξεργασία λίστας παραληπτών",
"DE.Views.MailMergeSettings.textEmail": "Ηλεκτρονική διεύθυνση", "DE.Views.MailMergeSettings.textEmail": "Ηλεκτρονική διεύθυνση",
"DE.Views.MailMergeSettings.textFrom": "Από", "DE.Views.MailMergeSettings.textFrom": "Από",
"DE.Views.MailMergeSettings.textGoToMail": "Πηγαίνετε στην Αλληλογραφία", "DE.Views.MailMergeSettings.textGoToMail": "Μετάβαση στην Αλληλογραφία",
"DE.Views.MailMergeSettings.textHighlight": "Επισήμανση πεδίων συγχώνευσης", "DE.Views.MailMergeSettings.textHighlight": "Επισήμανση πεδίων συγχώνευσης",
"DE.Views.MailMergeSettings.textInsertField": "Εισαγωγή Πεδίου Συγχώνευσης", "DE.Views.MailMergeSettings.textInsertField": "Εισαγωγή Πεδίου Συγχώνευσης",
"DE.Views.MailMergeSettings.textMaxRecepients": "Μέγιστο 100 αποδέκτες", "DE.Views.MailMergeSettings.textMaxRecepients": "Μέγιστο 100 αποδέκτες",
"DE.Views.MailMergeSettings.textMerge": "Συγχώνευση", "DE.Views.MailMergeSettings.textMerge": "Συγχώνευση",
"DE.Views.MailMergeSettings.textMergeFields": "Συγχώνεση πεδίων", "DE.Views.MailMergeSettings.textMergeFields": "Συγχώνευση Πεδίων",
"DE.Views.MailMergeSettings.textMergeTo": "Συγχώνευση σε", "DE.Views.MailMergeSettings.textMergeTo": "Συγχώνευση σε",
"DE.Views.MailMergeSettings.textPdf": "PDF", "DE.Views.MailMergeSettings.textPdf": "PDF",
"DE.Views.MailMergeSettings.textPortal": "Αποθήκευση", "DE.Views.MailMergeSettings.textPortal": "Αποθήκευση",
@ -1986,13 +1986,13 @@
"DE.Views.NoteSettingsDialog.textInsert": "Εισαγωγή", "DE.Views.NoteSettingsDialog.textInsert": "Εισαγωγή",
"DE.Views.NoteSettingsDialog.textLocation": "Τοποθεσία", "DE.Views.NoteSettingsDialog.textLocation": "Τοποθεσία",
"DE.Views.NoteSettingsDialog.textNumbering": "Αρίθμηση", "DE.Views.NoteSettingsDialog.textNumbering": "Αρίθμηση",
"DE.Views.NoteSettingsDialog.textNumFormat": "Μορφή αριθμού", "DE.Views.NoteSettingsDialog.textNumFormat": "Μορφή Αριθμού",
"DE.Views.NoteSettingsDialog.textPageBottom": "Κάτω μέρος της σελίδας", "DE.Views.NoteSettingsDialog.textPageBottom": "Κάτω μέρος της σελίδας",
"DE.Views.NoteSettingsDialog.textSectEnd": "Τέλος τμήματος", "DE.Views.NoteSettingsDialog.textSectEnd": "Τέλος τμήματος",
"DE.Views.NoteSettingsDialog.textSection": "Τρέχουσα ενότητα", "DE.Views.NoteSettingsDialog.textSection": "Τρέχουσα ενότητα",
"DE.Views.NoteSettingsDialog.textStart": "Έναρξη σε", "DE.Views.NoteSettingsDialog.textStart": "Έναρξη σε",
"DE.Views.NoteSettingsDialog.textTextBottom": "Παρακάτω κείμενο", "DE.Views.NoteSettingsDialog.textTextBottom": "Παρακάτω κείμενο",
"DE.Views.NoteSettingsDialog.textTitle": "Ρυθμίσεις σημειώσεων", "DE.Views.NoteSettingsDialog.textTitle": "Ρυθμίσεις Σημειώσεων",
"DE.Views.NotesRemoveDialog.textEnd": "Διαγραφή Όλων των Σημειώσεων Τέλους", "DE.Views.NotesRemoveDialog.textEnd": "Διαγραφή Όλων των Σημειώσεων Τέλους",
"DE.Views.NotesRemoveDialog.textFoot": "Διαγραφή Όλων των Υποσημειώσεων", "DE.Views.NotesRemoveDialog.textFoot": "Διαγραφή Όλων των Υποσημειώσεων",
"DE.Views.NotesRemoveDialog.textTitle": "Διαγραφή Σημειώσεων", "DE.Views.NotesRemoveDialog.textTitle": "Διαγραφή Σημειώσεων",
@ -2017,7 +2017,7 @@
"DE.Views.PageMarginsDialog.txtMarginsW": "Το αριστερό και το δεξιό περιθώριο είναι πολύ πλατιά για δεδομένο πλάτος σελίδας", "DE.Views.PageMarginsDialog.txtMarginsW": "Το αριστερό και το δεξιό περιθώριο είναι πολύ πλατιά για δεδομένο πλάτος σελίδας",
"DE.Views.PageSizeDialog.textHeight": "Ύψος", "DE.Views.PageSizeDialog.textHeight": "Ύψος",
"DE.Views.PageSizeDialog.textPreset": "Προκαθορισμός", "DE.Views.PageSizeDialog.textPreset": "Προκαθορισμός",
"DE.Views.PageSizeDialog.textTitle": "Μέγεθος σελίδας", "DE.Views.PageSizeDialog.textTitle": "Μέγεθος Σελίδας",
"DE.Views.PageSizeDialog.textWidth": "Πλάτος", "DE.Views.PageSizeDialog.textWidth": "Πλάτος",
"DE.Views.PageSizeDialog.txtCustom": "Προσαρμοσμένο", "DE.Views.PageSizeDialog.txtCustom": "Προσαρμοσμένο",
"DE.Views.ParagraphSettings.strLineHeight": "Διάστιχο", "DE.Views.ParagraphSettings.strLineHeight": "Διάστιχο",
@ -2064,9 +2064,9 @@
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Στοίχιση", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Στοίχιση",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Τουλάχιστον", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Τουλάχιστον",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Πολλαπλό", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Πολλαπλό",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Χρώμα",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Χρώμα Φόντου", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Χρώμα Φόντου",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Βασικό Κείμενο", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Βασικό Κείμενο",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Χρώμα",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Κάντε κλικ στο διάγραμμα ή χρησιμοποιήστε τα κουμπιά για να επιλέξετε περιγράμματα και να εφαρμόσετε την επιλεγμένη τεχνοτροπία σε αυτά",
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Μέγεθος Περιγράμματος",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Κάτω", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Κάτω",
@ -2085,7 +2085,7 @@
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(κανένα)", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(κανένα)",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Θέση", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Θέση",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Αφαίρεση", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Αφαίρεση",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Αφαίρεση όλων", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Αφαίρεση Όλων",
"DE.Views.ParagraphSettingsAdvanced.textRight": "Δεξιά", "DE.Views.ParagraphSettingsAdvanced.textRight": "Δεξιά",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Προσδιορισμός", "DE.Views.ParagraphSettingsAdvanced.textSet": "Προσδιορισμός",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Απόσταση", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Απόσταση",
@ -2144,7 +2144,7 @@
"DE.Views.ShapeSettings.textHintFlipV": "Κατακόρυφη Περιστροφή", "DE.Views.ShapeSettings.textHintFlipV": "Κατακόρυφη Περιστροφή",
"DE.Views.ShapeSettings.textImageTexture": "Εικόνα ή Υφή", "DE.Views.ShapeSettings.textImageTexture": "Εικόνα ή Υφή",
"DE.Views.ShapeSettings.textLinear": "Γραμμικός", "DE.Views.ShapeSettings.textLinear": "Γραμμικός",
"DE.Views.ShapeSettings.textNoFill": "Χωρίς γέμισμα", "DE.Views.ShapeSettings.textNoFill": "Χωρίς Γέμισμα",
"DE.Views.ShapeSettings.textPatternFill": "Μοτίβο", "DE.Views.ShapeSettings.textPatternFill": "Μοτίβο",
"DE.Views.ShapeSettings.textPosition": "Θέση", "DE.Views.ShapeSettings.textPosition": "Θέση",
"DE.Views.ShapeSettings.textRadial": "Ακτινικός", "DE.Views.ShapeSettings.textRadial": "Ακτινικός",
@ -2166,12 +2166,12 @@
"DE.Views.ShapeSettings.txtDarkFabric": "Σκούρο Ύφασμα", "DE.Views.ShapeSettings.txtDarkFabric": "Σκούρο Ύφασμα",
"DE.Views.ShapeSettings.txtGrain": "Κόκκος", "DE.Views.ShapeSettings.txtGrain": "Κόκκος",
"DE.Views.ShapeSettings.txtGranite": "Γρανίτης", "DE.Views.ShapeSettings.txtGranite": "Γρανίτης",
"DE.Views.ShapeSettings.txtGreyPaper": "Γκρι χαρτί", "DE.Views.ShapeSettings.txtGreyPaper": "Γκρι Χαρτί",
"DE.Views.ShapeSettings.txtInFront": "Στην πρόσοψη", "DE.Views.ShapeSettings.txtInFront": "Στην πρόσοψη",
"DE.Views.ShapeSettings.txtInline": "Εντός κειμένου", "DE.Views.ShapeSettings.txtInline": "Εντός κειμένου",
"DE.Views.ShapeSettings.txtKnit": "Πλέκω", "DE.Views.ShapeSettings.txtKnit": "Πλέκω",
"DE.Views.ShapeSettings.txtLeather": "Δέρμα", "DE.Views.ShapeSettings.txtLeather": "Δέρμα",
"DE.Views.ShapeSettings.txtNoBorders": "Χωρίς γραμμή", "DE.Views.ShapeSettings.txtNoBorders": "Χωρίς Γραμμή",
"DE.Views.ShapeSettings.txtPapyrus": "Πάπυρος", "DE.Views.ShapeSettings.txtPapyrus": "Πάπυρος",
"DE.Views.ShapeSettings.txtSquare": "Τετράγωνο", "DE.Views.ShapeSettings.txtSquare": "Τετράγωνο",
"DE.Views.ShapeSettings.txtThrough": "Διά μέσου", "DE.Views.ShapeSettings.txtThrough": "Διά μέσου",
@ -2193,7 +2193,7 @@
"DE.Views.SignatureSettings.txtRequestedSignatures": "Αυτό το έγγραφο πρέπει να υπογραφεί.", "DE.Views.SignatureSettings.txtRequestedSignatures": "Αυτό το έγγραφο πρέπει να υπογραφεί.",
"DE.Views.SignatureSettings.txtSigned": "Προστέθηκαν έγκυρες υπογραφές στο έγγραφο. Το έγγραφο έχει προστασία επεξεργασίας.", "DE.Views.SignatureSettings.txtSigned": "Προστέθηκαν έγκυρες υπογραφές στο έγγραφο. Το έγγραφο έχει προστασία επεξεργασίας.",
"DE.Views.SignatureSettings.txtSignedInvalid": "Κάποιες από τις ψηφιακές υπογραφές του εγγράφου είναι άκυρες ή δεν επιβεβαιώθηκαν. Αποτρέπεται η επεξεργασία του.", "DE.Views.SignatureSettings.txtSignedInvalid": "Κάποιες από τις ψηφιακές υπογραφές του εγγράφου είναι άκυρες ή δεν επιβεβαιώθηκαν. Αποτρέπεται η επεξεργασία του.",
"DE.Views.Statusbar.goToPageText": "Μετάβαση στη σελίδα", "DE.Views.Statusbar.goToPageText": "Μετάβαση στη Σελίδα",
"DE.Views.Statusbar.pageIndexText": "Σελίδα {0} από {1}", "DE.Views.Statusbar.pageIndexText": "Σελίδα {0} από {1}",
"DE.Views.Statusbar.tipFitPage": "Προσαρμογή στη σελίδα", "DE.Views.Statusbar.tipFitPage": "Προσαρμογή στη σελίδα",
"DE.Views.Statusbar.tipFitWidth": "Προσαρμογή στο πλάτος", "DE.Views.Statusbar.tipFitWidth": "Προσαρμογή στο πλάτος",
@ -2208,8 +2208,8 @@
"DE.Views.StyleTitleDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό", "DE.Views.StyleTitleDialog.txtEmpty": "Αυτό το πεδίο είναι υποχρεωτικό",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Το πεδίο δεν πρέπει να είναι κενό", "DE.Views.StyleTitleDialog.txtNotEmpty": "Το πεδίο δεν πρέπει να είναι κενό",
"DE.Views.StyleTitleDialog.txtSameAs": "Ίδιο με το νέο στυλ", "DE.Views.StyleTitleDialog.txtSameAs": "Ίδιο με το νέο στυλ",
"DE.Views.TableFormulaDialog.textBookmark": "Επικόλληση σελιδοδείκτη", "DE.Views.TableFormulaDialog.textBookmark": "Επικόλληση Σελιδοδείκτη",
"DE.Views.TableFormulaDialog.textFormat": "Μορφή αριθμού", "DE.Views.TableFormulaDialog.textFormat": "Μορφή Αριθμού",
"DE.Views.TableFormulaDialog.textFormula": "Τύπος", "DE.Views.TableFormulaDialog.textFormula": "Τύπος",
"DE.Views.TableFormulaDialog.textInsertFunction": "Επικόλληση Συνάρτησης", "DE.Views.TableFormulaDialog.textInsertFunction": "Επικόλληση Συνάρτησης",
"DE.Views.TableFormulaDialog.textTitle": "Ρυθμίσεις Τύπου", "DE.Views.TableFormulaDialog.textTitle": "Ρυθμίσεις Τύπου",
@ -2250,7 +2250,7 @@
"DE.Views.TableSettings.insertColumnRightText": "Εισαγωγή Στήλης Δεξιά", "DE.Views.TableSettings.insertColumnRightText": "Εισαγωγή Στήλης Δεξιά",
"DE.Views.TableSettings.insertRowAboveText": "Εισαγωγή Γραμμής Από Πάνω", "DE.Views.TableSettings.insertRowAboveText": "Εισαγωγή Γραμμής Από Πάνω",
"DE.Views.TableSettings.insertRowBelowText": "Εισαγωγή Γραμμής Από Κάτω", "DE.Views.TableSettings.insertRowBelowText": "Εισαγωγή Γραμμής Από Κάτω",
"DE.Views.TableSettings.mergeCellsText": "Συγχώνευση κελιών", "DE.Views.TableSettings.mergeCellsText": "Συγχώνευση Κελιών",
"DE.Views.TableSettings.selectCellText": "Επιλογή κελιού", "DE.Views.TableSettings.selectCellText": "Επιλογή κελιού",
"DE.Views.TableSettings.selectColumnText": "Επιλογή στήλης", "DE.Views.TableSettings.selectColumnText": "Επιλογή στήλης",
"DE.Views.TableSettings.selectRowText": "Επιλογή Γραμμής", "DE.Views.TableSettings.selectRowText": "Επιλογή Γραμμής",
@ -2295,8 +2295,8 @@
"DE.Views.TableSettings.txtTable_Dark": "Σκούρο", "DE.Views.TableSettings.txtTable_Dark": "Σκούρο",
"DE.Views.TableSettings.txtTable_GridTable": "Πίνακας Πλέγματος", "DE.Views.TableSettings.txtTable_GridTable": "Πίνακας Πλέγματος",
"DE.Views.TableSettings.txtTable_Light": "Φως", "DE.Views.TableSettings.txtTable_Light": "Φως",
"DE.Views.TableSettings.txtTable_ListTable": "Πίνακας λίστα", "DE.Views.TableSettings.txtTable_ListTable": "Πίνακας Λίστας",
"DE.Views.TableSettings.txtTable_PlainTable": "Απλός πίνακας", "DE.Views.TableSettings.txtTable_PlainTable": "Απλός Πίνακας",
"DE.Views.TableSettings.txtTable_TableGrid": "Πλέγμα Πίνακα", "DE.Views.TableSettings.txtTable_TableGrid": "Πλέγμα Πίνακα",
"DE.Views.TableSettingsAdvanced.textAlign": "Στοίχιση", "DE.Views.TableSettingsAdvanced.textAlign": "Στοίχιση",
"DE.Views.TableSettingsAdvanced.textAlignment": "Στοίχιση", "DE.Views.TableSettingsAdvanced.textAlignment": "Στοίχιση",
@ -2383,7 +2383,7 @@
"DE.Views.TextArtSettings.textGradient": "Σημεία διαβάθμισης", "DE.Views.TextArtSettings.textGradient": "Σημεία διαβάθμισης",
"DE.Views.TextArtSettings.textGradientFill": "Βαθμωτό Γέμισμα", "DE.Views.TextArtSettings.textGradientFill": "Βαθμωτό Γέμισμα",
"DE.Views.TextArtSettings.textLinear": "Γραμμικός", "DE.Views.TextArtSettings.textLinear": "Γραμμικός",
"DE.Views.TextArtSettings.textNoFill": "Χωρίς γέμισμα", "DE.Views.TextArtSettings.textNoFill": "Χωρίς Γέμισμα",
"DE.Views.TextArtSettings.textPosition": "Θέση", "DE.Views.TextArtSettings.textPosition": "Θέση",
"DE.Views.TextArtSettings.textRadial": "Ακτινικός", "DE.Views.TextArtSettings.textRadial": "Ακτινικός",
"DE.Views.TextArtSettings.textSelectTexture": "Επιλογή", "DE.Views.TextArtSettings.textSelectTexture": "Επιλογή",
@ -2392,7 +2392,7 @@
"DE.Views.TextArtSettings.textTransform": "Μεταμόρφωση", "DE.Views.TextArtSettings.textTransform": "Μεταμόρφωση",
"DE.Views.TextArtSettings.tipAddGradientPoint": "Προσθήκη βαθμωτού σημείου", "DE.Views.TextArtSettings.tipAddGradientPoint": "Προσθήκη βαθμωτού σημείου",
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "Αφαίρεση σημείου διαβάθμισης", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Αφαίρεση σημείου διαβάθμισης",
"DE.Views.TextArtSettings.txtNoBorders": "Χωρίς γραμμή", "DE.Views.TextArtSettings.txtNoBorders": "Χωρίς Γραμμή",
"DE.Views.Toolbar.capBtnAddComment": "Προσθήκη Σχολίου", "DE.Views.Toolbar.capBtnAddComment": "Προσθήκη Σχολίου",
"DE.Views.Toolbar.capBtnBlankPage": "Κενή Σελίδα", "DE.Views.Toolbar.capBtnBlankPage": "Κενή Σελίδα",
"DE.Views.Toolbar.capBtnColumns": "Στήλες", "DE.Views.Toolbar.capBtnColumns": "Στήλες",
@ -2420,7 +2420,7 @@
"DE.Views.Toolbar.capImgForward": "Μεταφορά Προς τα Εμπρός", "DE.Views.Toolbar.capImgForward": "Μεταφορά Προς τα Εμπρός",
"DE.Views.Toolbar.capImgGroup": "Ομάδα", "DE.Views.Toolbar.capImgGroup": "Ομάδα",
"DE.Views.Toolbar.capImgWrapping": "Διακοπή της γραμμής", "DE.Views.Toolbar.capImgWrapping": "Διακοπή της γραμμής",
"DE.Views.Toolbar.mniCustomTable": "Εισαγωγή προσαρμοσμένου πίνακα", "DE.Views.Toolbar.mniCustomTable": "Εισαγωγή Προσαρμοσμένου Πίνακα",
"DE.Views.Toolbar.mniDrawTable": "Σχεδίαση Πίνακα", "DE.Views.Toolbar.mniDrawTable": "Σχεδίαση Πίνακα",
"DE.Views.Toolbar.mniEditControls": "Ρυθμίσεις Ελέγχου", "DE.Views.Toolbar.mniEditControls": "Ρυθμίσεις Ελέγχου",
"DE.Views.Toolbar.mniEditDropCap": "Ρυθμίσεις Αρχιγράμματος", "DE.Views.Toolbar.mniEditDropCap": "Ρυθμίσεις Αρχιγράμματος",
@ -2429,11 +2429,11 @@
"DE.Views.Toolbar.mniEraseTable": "Εκκαθάριση Πίνακα", "DE.Views.Toolbar.mniEraseTable": "Εκκαθάριση Πίνακα",
"DE.Views.Toolbar.mniHiddenBorders": "Κρυμμένα Περιγράμματα Πίνακα", "DE.Views.Toolbar.mniHiddenBorders": "Κρυμμένα Περιγράμματα Πίνακα",
"DE.Views.Toolbar.mniHiddenChars": "Μη Εκτυπώσιμοι Χαρακτήρες", "DE.Views.Toolbar.mniHiddenChars": "Μη Εκτυπώσιμοι Χαρακτήρες",
"DE.Views.Toolbar.mniHighlightControls": "Ρυθμίσεις επισήμανσης", "DE.Views.Toolbar.mniHighlightControls": "Ρυθμίσεις Επισήμανσης",
"DE.Views.Toolbar.mniImageFromFile": "Εικόνα από αρχείο", "DE.Views.Toolbar.mniImageFromFile": "Εικόνα από Αρχείο",
"DE.Views.Toolbar.mniImageFromStorage": "Εικόνα από αποθηκευτικό χώρο", "DE.Views.Toolbar.mniImageFromStorage": "Εικόνα από Μέσο Αποθήκευσης",
"DE.Views.Toolbar.mniImageFromUrl": "Εικόνα από σύνδεσμο", "DE.Views.Toolbar.mniImageFromUrl": "Εικόνα από διεύθυνση URL",
"DE.Views.Toolbar.strMenuNoFill": "Χωρίς γέμισμα", "DE.Views.Toolbar.strMenuNoFill": "Χωρίς Γέμισμα",
"DE.Views.Toolbar.textAutoColor": "Αυτόματα", "DE.Views.Toolbar.textAutoColor": "Αυτόματα",
"DE.Views.Toolbar.textBold": "Έντονα", "DE.Views.Toolbar.textBold": "Έντονα",
"DE.Views.Toolbar.textBottom": "Κάτω Μέρος:", "DE.Views.Toolbar.textBottom": "Κάτω Μέρος:",
@ -2463,7 +2463,7 @@
"DE.Views.Toolbar.textLandscape": "Οριζόντια", "DE.Views.Toolbar.textLandscape": "Οριζόντια",
"DE.Views.Toolbar.textLeft": "Αριστερά:", "DE.Views.Toolbar.textLeft": "Αριστερά:",
"DE.Views.Toolbar.textListSettings": "Ρυθμίσεις Λίστας", "DE.Views.Toolbar.textListSettings": "Ρυθμίσεις Λίστας",
"DE.Views.Toolbar.textMarginsLast": "Τελευταίο έθιμο", "DE.Views.Toolbar.textMarginsLast": "Τελευταίο Προσαρμοσμένο",
"DE.Views.Toolbar.textMarginsModerate": "Μέτριο", "DE.Views.Toolbar.textMarginsModerate": "Μέτριο",
"DE.Views.Toolbar.textMarginsNarrow": "Στενό", "DE.Views.Toolbar.textMarginsNarrow": "Στενό",
"DE.Views.Toolbar.textMarginsNormal": "Κανονική", "DE.Views.Toolbar.textMarginsNormal": "Κανονική",

View file

@ -829,7 +829,7 @@
"DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "Brackets", "DE.Controllers.Toolbar.textBracket": "Brackets",
"DE.Controllers.Toolbar.textEmptyImgUrl": "You need to specify image URL.", "DE.Controllers.Toolbar.textEmptyImgUrl": "You need to specify image URL.",
"DE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 100", "DE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 300",
"DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFraction": "Fractions",
"DE.Controllers.Toolbar.textFunction": "Functions", "DE.Controllers.Toolbar.textFunction": "Functions",
"DE.Controllers.Toolbar.textInsert": "Insert", "DE.Controllers.Toolbar.textInsert": "Insert",
@ -1692,6 +1692,9 @@
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Show Notification", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Show Notification",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification",
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows", "DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
"DE.Views.FileMenuPanels.Settings.strTheme": "Theme",
"DE.Views.FileMenuPanels.Settings.txtThemeLight": "Light",
"DE.Views.FileMenuPanels.Settings.txtThemeDark": "Dark",
"DE.Views.FormSettings.textCheckbox": "Checkbox", "DE.Views.FormSettings.textCheckbox": "Checkbox",
"DE.Views.FormSettings.textColor": "Border color", "DE.Views.FormSettings.textColor": "Border color",
"DE.Views.FormSettings.textComb": "Comb of characters", "DE.Views.FormSettings.textComb": "Comb of characters",

View file

@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Acentos", "DE.Controllers.Toolbar.textAccent": "Acentos",
"DE.Controllers.Toolbar.textBracket": "Paréntesis", "DE.Controllers.Toolbar.textBracket": "Paréntesis",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Hay que especificar URL de imagen", "DE.Controllers.Toolbar.textEmptyImgUrl": "Hay que especificar URL de imagen",
"DE.Controllers.Toolbar.textFontSizeErr": "El valor introducido es incorrecto.<br>Por favor, introduzca un valor numérico entre 1 y 100", "DE.Controllers.Toolbar.textFontSizeErr": "El valor introducido es incorrecto.<br>Por favor, introduzca un valor numérico entre 1 y 300",
"DE.Controllers.Toolbar.textFraction": "Fracciones", "DE.Controllers.Toolbar.textFraction": "Fracciones",
"DE.Controllers.Toolbar.textFunction": "Funciones", "DE.Controllers.Toolbar.textFunction": "Funciones",
"DE.Controllers.Toolbar.textInsert": "Insertar", "DE.Controllers.Toolbar.textInsert": "Insertar",

View file

@ -437,7 +437,7 @@
"DE.Controllers.Toolbar.textAccent": "Aksentit", "DE.Controllers.Toolbar.textAccent": "Aksentit",
"DE.Controllers.Toolbar.textBracket": "Hakasulkeet", "DE.Controllers.Toolbar.textBracket": "Hakasulkeet",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite", "DE.Controllers.Toolbar.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite",
"DE.Controllers.Toolbar.textFontSizeErr": "Syötetty arvo ei ole oikein. Ole hyvä ja syötä numeerinen arvo välillä 1 ja 100", "DE.Controllers.Toolbar.textFontSizeErr": "Syötetty arvo ei ole oikein. Ole hyvä ja syötä numeerinen arvo välillä 1 ja 300",
"DE.Controllers.Toolbar.textFraction": "Murtoluvut", "DE.Controllers.Toolbar.textFraction": "Murtoluvut",
"DE.Controllers.Toolbar.textFunction": "Funktiot", "DE.Controllers.Toolbar.textFunction": "Funktiot",
"DE.Controllers.Toolbar.textIntegral": "Integraalit", "DE.Controllers.Toolbar.textIntegral": "Integraalit",

View file

@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Types d'accentuation", "DE.Controllers.Toolbar.textAccent": "Types d'accentuation",
"DE.Controllers.Toolbar.textBracket": "Crochets", "DE.Controllers.Toolbar.textBracket": "Crochets",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image", "DE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image",
"DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 100", "DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.<br>Entrez une valeur numérique entre 1 et 300",
"DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFraction": "Fractions",
"DE.Controllers.Toolbar.textFunction": "Fonctions", "DE.Controllers.Toolbar.textFunction": "Fonctions",
"DE.Controllers.Toolbar.textInsert": "Insérer", "DE.Controllers.Toolbar.textInsert": "Insérer",

View file

@ -788,7 +788,7 @@
"DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "Zárójelben", "DE.Controllers.Toolbar.textBracket": "Zárójelben",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.",
"DE.Controllers.Toolbar.textFontSizeErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy számértéket 1 és 100 között", "DE.Controllers.Toolbar.textFontSizeErr": "A megadott érték helytelen.<br>Kérjük, adjon meg egy számértéket 1 és 300 között",
"DE.Controllers.Toolbar.textFraction": "Törtek", "DE.Controllers.Toolbar.textFraction": "Törtek",
"DE.Controllers.Toolbar.textFunction": "Függévenyek", "DE.Controllers.Toolbar.textFunction": "Függévenyek",
"DE.Controllers.Toolbar.textInsert": "Beszúrás", "DE.Controllers.Toolbar.textInsert": "Beszúrás",

View file

@ -256,7 +256,7 @@
"DE.Controllers.Toolbar.textAccent": "Aksen", "DE.Controllers.Toolbar.textAccent": "Aksen",
"DE.Controllers.Toolbar.textBracket": "Tanda Kurung", "DE.Controllers.Toolbar.textBracket": "Tanda Kurung",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Anda harus menentukan URL gambar.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Anda harus menentukan URL gambar.",
"DE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.<br>Silakan masukkan input numerik antara 1 dan 100", "DE.Controllers.Toolbar.textFontSizeErr": "Input yang dimasukkan salah.<br>Silakan masukkan input numerik antara 1 dan 300",
"DE.Controllers.Toolbar.textFraction": "Pecahan", "DE.Controllers.Toolbar.textFraction": "Pecahan",
"DE.Controllers.Toolbar.textFunction": "Fungsi", "DE.Controllers.Toolbar.textFunction": "Fungsi",
"DE.Controllers.Toolbar.textIntegral": "Integral", "DE.Controllers.Toolbar.textIntegral": "Integral",

View file

@ -778,7 +778,7 @@
"DE.Controllers.Toolbar.textAccent": "Accenti", "DE.Controllers.Toolbar.textAccent": "Accenti",
"DE.Controllers.Toolbar.textBracket": "Parentesi", "DE.Controllers.Toolbar.textBracket": "Parentesi",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Specifica URL immagine.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Specifica URL immagine.",
"DE.Controllers.Toolbar.textFontSizeErr": "Il valore inserito non è corretto.<br>Inserisci un valore numerico compreso tra 1 e 100", "DE.Controllers.Toolbar.textFontSizeErr": "Il valore inserito non è corretto.<br>Inserisci un valore numerico compreso tra 1 e 300",
"DE.Controllers.Toolbar.textFraction": "Frazioni", "DE.Controllers.Toolbar.textFraction": "Frazioni",
"DE.Controllers.Toolbar.textFunction": "Funzioni", "DE.Controllers.Toolbar.textFunction": "Funzioni",
"DE.Controllers.Toolbar.textInsert": "Inserisci", "DE.Controllers.Toolbar.textInsert": "Inserisci",

View file

@ -788,7 +788,7 @@
"DE.Controllers.Toolbar.textAccent": "アクセントカラー", "DE.Controllers.Toolbar.textAccent": "アクセントカラー",
"DE.Controllers.Toolbar.textBracket": "かっこ", "DE.Controllers.Toolbar.textBracket": "かっこ",
"DE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定しなければなりません。", "DE.Controllers.Toolbar.textEmptyImgUrl": "画像のURLを指定しなければなりません。",
"DE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。<br>1〜100の数値を入力してください。", "DE.Controllers.Toolbar.textFontSizeErr": "入力された値が正しくありません。<br>1〜300の数値を入力してください。",
"DE.Controllers.Toolbar.textFraction": "分数", "DE.Controllers.Toolbar.textFraction": "分数",
"DE.Controllers.Toolbar.textFunction": "関数", "DE.Controllers.Toolbar.textFunction": "関数",
"DE.Controllers.Toolbar.textInsert": "挿入する", "DE.Controllers.Toolbar.textInsert": "挿入する",

View file

@ -20,7 +20,7 @@
"Common.Controllers.ReviewChanges.textChart": "차트", "Common.Controllers.ReviewChanges.textChart": "차트",
"Common.Controllers.ReviewChanges.textColor": "글꼴 색", "Common.Controllers.ReviewChanges.textColor": "글꼴 색",
"Common.Controllers.ReviewChanges.textContextual": "같은 스타일의 단락 사이에 간격을 추가하지 마십시오.", "Common.Controllers.ReviewChanges.textContextual": "같은 스타일의 단락 사이에 간격을 추가하지 마십시오.",
"Common.Controllers.ReviewChanges.textDeleted": "<b> 삭제됨 : </ b>", "Common.Controllers.ReviewChanges.textDeleted": "<b> 삭제됨 : </b>",
"Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout", "Common.Controllers.ReviewChanges.textDStrikeout": "Double strikeout",
"Common.Controllers.ReviewChanges.textEquation": "수식", "Common.Controllers.ReviewChanges.textEquation": "수식",
"Common.Controllers.ReviewChanges.textExact": "정확히", "Common.Controllers.ReviewChanges.textExact": "정확히",
@ -31,7 +31,7 @@
"Common.Controllers.ReviewChanges.textImage": "이미지", "Common.Controllers.ReviewChanges.textImage": "이미지",
"Common.Controllers.ReviewChanges.textIndentLeft": "들여 쓰기 왼쪽", "Common.Controllers.ReviewChanges.textIndentLeft": "들여 쓰기 왼쪽",
"Common.Controllers.ReviewChanges.textIndentRight": "들여 쓰기", "Common.Controllers.ReviewChanges.textIndentRight": "들여 쓰기",
"Common.Controllers.ReviewChanges.textInserted": "<b> 삽입 됨 : </ b>", "Common.Controllers.ReviewChanges.textInserted": "<b> 삽입 됨 : </b>",
"Common.Controllers.ReviewChanges.textItalic": "Italic", "Common.Controllers.ReviewChanges.textItalic": "Italic",
"Common.Controllers.ReviewChanges.textJustify": "정렬 정렬", "Common.Controllers.ReviewChanges.textJustify": "정렬 정렬",
"Common.Controllers.ReviewChanges.textKeepLines": "줄을 함께 유지", "Common.Controllers.ReviewChanges.textKeepLines": "줄을 함께 유지",
@ -434,7 +434,7 @@
"DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "대괄호", "DE.Controllers.Toolbar.textBracket": "대괄호",
"DE.Controllers.Toolbar.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", "DE.Controllers.Toolbar.textEmptyImgUrl": "이미지 URL을 지정해야합니다.",
"DE.Controllers.Toolbar.textFontSizeErr": "입력 한 값이 잘못되었습니다. <br> 1 ~ 100 사이의 숫자 값을 입력하십시오.", "DE.Controllers.Toolbar.textFontSizeErr": "입력 한 값이 잘못되었습니다. <br> 1 ~ 300 사이의 숫자 값을 입력하십시오.",
"DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFraction": "Fractions",
"DE.Controllers.Toolbar.textFunction": "Functions", "DE.Controllers.Toolbar.textFunction": "Functions",
"DE.Controllers.Toolbar.textIntegral": "Integrals", "DE.Controllers.Toolbar.textIntegral": "Integrals",

File diff suppressed because it is too large Load diff

View file

@ -431,7 +431,7 @@
"DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "Brackets", "DE.Controllers.Toolbar.textBracket": "Brackets",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Jums nepieciešams norādīt attēla URL.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Jums nepieciešams norādīt attēla URL.",
"DE.Controllers.Toolbar.textFontSizeErr": "The entered value must be more than 0", "DE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 300",
"DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFraction": "Fractions",
"DE.Controllers.Toolbar.textFunction": "Functions", "DE.Controllers.Toolbar.textFunction": "Functions",
"DE.Controllers.Toolbar.textIntegral": "Integrals", "DE.Controllers.Toolbar.textIntegral": "Integrals",

View file

@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Accenten", "DE.Controllers.Toolbar.textAccent": "Accenten",
"DE.Controllers.Toolbar.textBracket": "Haakjes", "DE.Controllers.Toolbar.textBracket": "Haakjes",
"DE.Controllers.Toolbar.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", "DE.Controllers.Toolbar.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.",
"DE.Controllers.Toolbar.textFontSizeErr": "De ingevoerde waarde is onjuist.<br>Voer een waarde tussen 1 en 100 in", "DE.Controllers.Toolbar.textFontSizeErr": "De ingevoerde waarde is onjuist.<br>Voer een waarde tussen 1 en 300 in",
"DE.Controllers.Toolbar.textFraction": "Breuken", "DE.Controllers.Toolbar.textFraction": "Breuken",
"DE.Controllers.Toolbar.textFunction": "Functies", "DE.Controllers.Toolbar.textFunction": "Functies",
"DE.Controllers.Toolbar.textInsert": "Invoegen", "DE.Controllers.Toolbar.textInsert": "Invoegen",

View file

@ -443,7 +443,7 @@
"DE.Controllers.Toolbar.textAccent": "Akcenty", "DE.Controllers.Toolbar.textAccent": "Akcenty",
"DE.Controllers.Toolbar.textBracket": "Klamry", "DE.Controllers.Toolbar.textBracket": "Klamry",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Musisz podać adres URL obrazu.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Musisz podać adres URL obrazu.",
"DE.Controllers.Toolbar.textFontSizeErr": "Wprowadzona wartość jest nieprawidłowa.<br>Wprowadź wartość numeryczną w zakresie od 1 do 100", "DE.Controllers.Toolbar.textFontSizeErr": "Wprowadzona wartość jest nieprawidłowa.<br>Wprowadź wartość numeryczną w zakresie od 1 do 300",
"DE.Controllers.Toolbar.textFraction": "Ułamki", "DE.Controllers.Toolbar.textFraction": "Ułamki",
"DE.Controllers.Toolbar.textFunction": "Funkcje", "DE.Controllers.Toolbar.textFunction": "Funkcje",
"DE.Controllers.Toolbar.textIntegral": "Całki", "DE.Controllers.Toolbar.textIntegral": "Całki",

View file

@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Destaques", "DE.Controllers.Toolbar.textAccent": "Destaques",
"DE.Controllers.Toolbar.textBracket": "Parênteses", "DE.Controllers.Toolbar.textBracket": "Parênteses",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.",
"DE.Controllers.Toolbar.textFontSizeErr": "O valor inserido está incorreto.<br>Insira um valor numérico entre 1 e 100", "DE.Controllers.Toolbar.textFontSizeErr": "O valor inserido está incorreto.<br>Insira um valor numérico entre 1 e 300",
"DE.Controllers.Toolbar.textFraction": "Frações", "DE.Controllers.Toolbar.textFraction": "Frações",
"DE.Controllers.Toolbar.textFunction": "Funções", "DE.Controllers.Toolbar.textFunction": "Funções",
"DE.Controllers.Toolbar.textInsert": "Inserir", "DE.Controllers.Toolbar.textInsert": "Inserir",

View file

@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Accente", "DE.Controllers.Toolbar.textAccent": "Accente",
"DE.Controllers.Toolbar.textBracket": "Paranteze", "DE.Controllers.Toolbar.textBracket": "Paranteze",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.",
"DE.Controllers.Toolbar.textFontSizeErr": "Valoarea introdusă nu este corectă.<br>Introduceți valoarea numerică de la 1 până la 100.", "DE.Controllers.Toolbar.textFontSizeErr": "Valoarea introdusă nu este corectă.<br>Introduceți valoarea numerică de la 1 până la 300.",
"DE.Controllers.Toolbar.textFraction": "Fracții", "DE.Controllers.Toolbar.textFraction": "Fracții",
"DE.Controllers.Toolbar.textFunction": "Funcții", "DE.Controllers.Toolbar.textFunction": "Funcții",
"DE.Controllers.Toolbar.textInsert": "Inserare", "DE.Controllers.Toolbar.textInsert": "Inserare",

View file

@ -791,7 +791,7 @@
"DE.Controllers.Toolbar.textAccent": "Диакритические знаки", "DE.Controllers.Toolbar.textAccent": "Диакритические знаки",
"DE.Controllers.Toolbar.textBracket": "Скобки", "DE.Controllers.Toolbar.textBracket": "Скобки",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Необходимо указать URL изображения.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Необходимо указать URL изображения.",
"DE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 100", "DE.Controllers.Toolbar.textFontSizeErr": "Введенное значение некорректно.<br>Введите числовое значение от 1 до 300",
"DE.Controllers.Toolbar.textFraction": "Дроби", "DE.Controllers.Toolbar.textFraction": "Дроби",
"DE.Controllers.Toolbar.textFunction": "Функции", "DE.Controllers.Toolbar.textFunction": "Функции",
"DE.Controllers.Toolbar.textInsert": "Вставить", "DE.Controllers.Toolbar.textInsert": "Вставить",

View file

@ -695,7 +695,7 @@
"DE.Controllers.Toolbar.textAccent": "Akcenty", "DE.Controllers.Toolbar.textAccent": "Akcenty",
"DE.Controllers.Toolbar.textBracket": "Zátvorky", "DE.Controllers.Toolbar.textBracket": "Zátvorky",
"DE.Controllers.Toolbar.textEmptyImgUrl": "Musíte upresniť URL obrázka.", "DE.Controllers.Toolbar.textEmptyImgUrl": "Musíte upresniť URL obrázka.",
"DE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte číselnú hodnotu medzi 1 a 100.", "DE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.<br>Prosím, zadajte číselnú hodnotu medzi 1 a 300.",
"DE.Controllers.Toolbar.textFraction": "Zlomky", "DE.Controllers.Toolbar.textFraction": "Zlomky",
"DE.Controllers.Toolbar.textFunction": "Funkcie", "DE.Controllers.Toolbar.textFunction": "Funkcie",
"DE.Controllers.Toolbar.textInsert": "Vložiť", "DE.Controllers.Toolbar.textInsert": "Vložiť",

Some files were not shown because too many files have changed in this diff Show more