Merge pull request #1016 from asaadmahmoodspin/ui-improvements
Multiple UI Improvements
Этот коммит содержится в:
@@ -104,12 +104,6 @@ export default class ChannelLoader extends React.Component {
|
||||
}
|
||||
});
|
||||
|
||||
/* Setup modal events */
|
||||
$('.modal').on('show.bs.modal', function onShow() {
|
||||
$('.modal-body').css('overflow-y', 'auto');
|
||||
$('.modal-body').css('max-height', $(window).height() * 0.7);
|
||||
});
|
||||
|
||||
/* Prevent backspace from navigating back a page */
|
||||
$(window).on('keydown.preventBackspace', (e) => {
|
||||
if (e.which === 8 && !$(e.target).is('input, textarea')) {
|
||||
|
||||
@@ -10,7 +10,7 @@ export default class SettingsSidebar extends React.Component {
|
||||
handleClick(tab, e) {
|
||||
e.preventDefault();
|
||||
this.props.updateTab(tab.name);
|
||||
$('.settings-modal').addClass('display--content');
|
||||
$(e.target).closest('.settings-modal').addClass('display--content');
|
||||
}
|
||||
render() {
|
||||
let tabList = this.props.tabs.map(function makeTab(tab) {
|
||||
|
||||
@@ -195,6 +195,7 @@ export default class ViewImageModal extends React.Component {
|
||||
target='_blank'
|
||||
>
|
||||
<img
|
||||
style={{maxHeight: this.state.imgHeight}}
|
||||
ref='image'
|
||||
src={this.getPreviewImagePath(filename)}
|
||||
/>
|
||||
@@ -210,6 +211,7 @@ export default class ViewImageModal extends React.Component {
|
||||
|
||||
content = (
|
||||
<video
|
||||
style={{maxHeight: this.state.imgHeight}}
|
||||
ref='video'
|
||||
data-setup='{}'
|
||||
controls='controls'
|
||||
@@ -334,7 +336,6 @@ export default class ViewImageModal extends React.Component {
|
||||
>
|
||||
<div
|
||||
className={'image-wrapper ' + bgClass}
|
||||
style={{maxHeight: this.state.imgHeight}}
|
||||
onMouseEnter={this.onMouseEnterImage}
|
||||
onMouseLeave={this.onMouseLeaveImage}
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
|
||||
@@ -201,7 +201,7 @@ module.exports = {
|
||||
centerChannelBg: '#1F1F1F',
|
||||
centerChannelColor: '#DDDDDD',
|
||||
newMessageSeparator: '#CC992D',
|
||||
linkColor: '#0177e7',
|
||||
linkColor: '#0D93FF',
|
||||
buttonBg: '#0177e7',
|
||||
buttonColor: '#FFFFFF',
|
||||
mentionHighlightBg: '#784098',
|
||||
|
||||
@@ -423,7 +423,10 @@ export function applyTheme(theme) {
|
||||
|
||||
if (theme.sidebarTextActiveColor) {
|
||||
changeCss('.sidebar--left .nav-pills__container li.active a, .sidebar--left .nav-pills__container li.active a:hover, .sidebar--left .nav-pills__container li.active a:focus, .settings-modal .nav-pills>li.active a, .settings-modal .nav-pills>li.active a:hover, .settings-modal .nav-pills>li.active a:active', 'color:' + theme.sidebarTextActiveColor, 2);
|
||||
changeCss('.sidebar--left .nav-pills__container li.active a .status .online--icon', 'fill:' + theme.sidebarTextActiveColor, 2);
|
||||
}
|
||||
|
||||
if (theme.sidebarTextActiveBg === theme.onlineIndicator) {
|
||||
changeCss('.sidebar--left .nav-pills__container li.active a .status .online--icon', 'fill:' + theme.sidebarTextActiveColor, 1);
|
||||
}
|
||||
|
||||
if (theme.sidebarHeaderBg) {
|
||||
@@ -497,7 +500,7 @@ export function applyTheme(theme) {
|
||||
changeCss('.date-separator .separator__hr, .modal-footer, .modal .custom-textarea, .post-right__container .post.post--root hr, .search-item-container', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.2), 1);
|
||||
changeCss('.modal .custom-textarea:focus', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.3), 1);
|
||||
changeCss('.channel-intro, .settings-modal .settings-table .settings-content .divider-dark, hr, .settings-modal .settings-table .settings-links', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.2), 1);
|
||||
changeCss('.post.current--user .post-body, .post.post--comment.other--root.current--user .post-comment', 'background:' + changeOpacity(theme.centerChannelColor, 0.07), 1);
|
||||
changeCss('.post.current--user .post-body, .post.post--comment.other--root.current--user .post-comment, pre', 'background:' + changeOpacity(theme.centerChannelColor, 0.07), 1);
|
||||
changeCss('.post.current--user .post-body, .post.post--comment.other--root.current--user .post-comment, .post.post--comment.other--root .post-comment, .post.same--root .post-body, .modal .more-channel-table tbody>tr td, .member-div:first-child, .member-div, .access-history__table .access__report, .activity-log__table', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.1), 2);
|
||||
changeCss('@media(max-width: 1440px){.post.same--root', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.07), 2);
|
||||
changeCss('@media(max-width: 1440px){.post.same--root', 'border-color:' + changeOpacity(theme.centerChannelColor, 0.07), 2);
|
||||
|
||||
@@ -34,6 +34,11 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.input-group-addon {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
@@ -53,15 +53,10 @@ blockquote {
|
||||
}
|
||||
pre {
|
||||
border: none;
|
||||
background-color: #f7f7f7;
|
||||
margin: 5px 0;
|
||||
.current--user & {
|
||||
background: #fff;
|
||||
}
|
||||
code {
|
||||
color: #c7254e;
|
||||
}
|
||||
color: inherit;
|
||||
}
|
||||
code {
|
||||
background: #fff;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
@@ -667,7 +667,7 @@
|
||||
.modal-image {
|
||||
.image-wrapper {
|
||||
font-size: 12px;
|
||||
max-width: 280px;
|
||||
min-width: 280px;
|
||||
.modal-close {
|
||||
@include opacity(1);
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
<script>
|
||||
window.setup_channel_page({{ .Props }});
|
||||
$('body').tooltip( {selector: '[data-toggle=tooltip]'} );
|
||||
$('.modal-body').css('max-height', $(window).height() * 0.7);
|
||||
$('.modal-body').css('max-height', $(window).height() - 150);
|
||||
$('.modal-body').perfectScrollbar();
|
||||
</script>
|
||||
</body>
|
||||
|
||||
Ссылка в новой задаче
Block a user