mirror of
https://github.com/ONLYOFFICE/desktop-apps.git
synced 2026-02-10 18:05:16 +08:00
Merge pull request 'fix/templates-alignment' (#297) from fix/templates-alignment into release/v9.0.0
This commit is contained in:
@ -48,7 +48,7 @@ l10n.en_GB = {
|
||||
newDoc: 'Document',
|
||||
newXlsx: 'Spreadsheet',
|
||||
newPptx: 'Presentation',
|
||||
newForm: 'PDF Form',
|
||||
newForm: 'PDF',
|
||||
actCreateNew: 'Create new',
|
||||
actRecentFiles: 'Recent files',
|
||||
actOpenLocal: 'Open local file',
|
||||
|
||||
@ -1965,7 +1965,10 @@ li.menu-item {
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
&:hover {
|
||||
box-shadow: 0 2px 6px @highlight-button-hover;
|
||||
box-shadow: 0 2px 6px @highlight-button-pressed-hover;
|
||||
.theme-type-dark & {
|
||||
box-shadow: var(--shadow-sidebar-item-pressed);
|
||||
}
|
||||
}
|
||||
.wrapper {
|
||||
width: 220px;
|
||||
@ -2034,8 +2037,11 @@ li.menu-item {
|
||||
.table-templates.list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
padding: 10px;
|
||||
gap: 22px;
|
||||
padding: 24px 10px 0 0;
|
||||
.rtl & {
|
||||
padding: 24px 0 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.win_xp & {
|
||||
|
||||
@ -530,7 +530,7 @@
|
||||
documentTypes: [
|
||||
{
|
||||
id: 'word',
|
||||
title: utils.Lang.tplDocument,
|
||||
title: utils.Lang.newDoc,
|
||||
formatLabel: {
|
||||
value: 'DOCX',
|
||||
gradientColorStart: '#4298C5',
|
||||
@ -540,7 +540,7 @@
|
||||
},
|
||||
{
|
||||
id: 'cell',
|
||||
title: utils.Lang.tplSpreadsheet,
|
||||
title: utils.Lang.newXlsx,
|
||||
formatLabel: {
|
||||
value: 'XLSX',
|
||||
gradientColorStart: '#5BB514',
|
||||
@ -550,7 +550,7 @@
|
||||
},
|
||||
{
|
||||
id: 'slide',
|
||||
title: utils.Lang.tplPresentation,
|
||||
title: utils.Lang.newPptx,
|
||||
formatLabel: {
|
||||
value: 'PPTX',
|
||||
gradientColorStart: '#F4893A',
|
||||
@ -560,7 +560,7 @@
|
||||
},
|
||||
{
|
||||
id: 'form',
|
||||
title: utils.Lang.tplPDF,
|
||||
title: utils.Lang.newForm,
|
||||
formatLabel: {
|
||||
value: 'PDF',
|
||||
gradientColorStart: '#F36653',
|
||||
|
||||
Reference in New Issue
Block a user