Revert "[PLT-7471] Slight modifications to keyboards dialog (#7325)" (#7363)

This reverts commit 967a0df0f8.
Этот коммит содержится в:
George Goldberg
2017-09-04 11:01:25 +01:00
коммит произвёл GitHub
родитель 9c1f6c9fd5
Коммит ce5d81582a
2 изменённых файлов: 9 добавлений и 35 удалений

Просмотреть файл

@@ -12,14 +12,8 @@ import React from 'react';
const allShortcuts = defineMessages({ const allShortcuts = defineMessages({
mainHeader: { mainHeader: {
default: {
id: 'shortcuts.header', id: 'shortcuts.header',
defaultMessage: 'Keyboard Shortcuts\tCtrl|/' defaultMessage: 'Keyboard Shortcuts'
},
mac: {
id: 'shortcuts.header.mac',
defaultMessage: 'Keyboard Shortcuts\t⌘|/'
}
}, },
navHeader: { navHeader: {
id: 'shortcuts.nav.header', id: 'shortcuts.nav.header',
@@ -109,6 +103,10 @@ const allShortcuts = defineMessages({
id: 'shortcuts.msgs.header', id: 'shortcuts.msgs.header',
defaultMessage: 'Messages' defaultMessage: 'Messages'
}, },
msgMarkAsRead: {
id: 'shortcuts.msgs.mark_as_read',
defaultMessage: 'Mark current channel as read:\tEsc'
},
msgInputHeader: { msgInputHeader: {
id: 'shortcuts.msgs.input.header', id: 'shortcuts.msgs.input.header',
defaultMessage: 'Works inside an empty input field' defaultMessage: 'Works inside an empty input field'
@@ -298,7 +296,7 @@ class ShortcutsModal extends React.PureComponent {
<div className='shortcuts-content'> <div className='shortcuts-content'>
<Modal.Header closeButton={true}> <Modal.Header closeButton={true}>
<Modal.Title> <Modal.Title>
<strong>{renderShortcut(formatMessage(shortcuts.mainHeader))}</strong> <strong>{formatMessage(shortcuts.mainHeader)}</strong>
</Modal.Title> </Modal.Title>
</Modal.Header> </Modal.Header>
<Modal.Body ref='modalBody'> <Modal.Body ref='modalBody'>
@@ -322,6 +320,7 @@ class ShortcutsModal extends React.PureComponent {
<div className='section'> <div className='section'>
<div> <div>
<h4 className='section-title'><strong>{formatMessage(shortcuts.msgHeader)}</strong></h4> <h4 className='section-title'><strong>{formatMessage(shortcuts.msgHeader)}</strong></h4>
{renderShortcut(formatMessage(shortcuts.msgMarkAsRead))}
<span><strong>{formatMessage(shortcuts.msgInputHeader)}</strong></span> <span><strong>{formatMessage(shortcuts.msgInputHeader)}</strong></span>
<div className='subsection'> <div className='subsection'>
{renderShortcut(formatMessage(shortcuts.msgEdit))} {renderShortcut(formatMessage(shortcuts.msgEdit))}

Просмотреть файл

@@ -11,43 +11,18 @@
background: transparent; background: transparent;
border: none; border: none;
color: inherit; color: inherit;
padding: 20px 40px 20px; padding: 40px 40px 20px;
.close { .close {
color: inherit; color: inherit;
font-size: 28px; font-size: 28px;
font-weight: normal; font-weight: normal;
right: 35px; right: 35px;
top: 35px;
} }
.modal-title { .modal-title {
color: inherit; color: inherit;
font-size: 20px; font-size: 20px;
> div {
&:first-child {
margin-bottom: 2.5em;
}
}
.shortcut-line {
margin: 17px 0;
span {
&:first-child {
margin-right: 5px;
}
}
.shortcut-key {
border-radius: 3px;
font-size: .9em;
font-weight: 500;
margin: 5px 0 5px 5px;
padding: 1px 5px;
}
}
} }
} }
} }