Browse Source

style update

pull/1886/head
gingervitis 5 years ago
parent
commit
2e3737646c
  1. 2
      web/pages/chat.tsx
  2. 3
      web/styles/chat.scss

2
web/pages/chat.tsx

@ -168,7 +168,7 @@ export default function Chat() { @@ -168,7 +168,7 @@ export default function Chat() {
className: 'toggle-col',
filters: [{ text: 'Visible messages', value: true }, { text: 'Hidden messages', value: false }],
onFilter: (value, record) => record.visible === value,
render: visible => visible ? null : <StopOutlined />,
render: visible => visible ? null : <StopOutlined title="This message is hidden" />,
width: 30,
},
];

3
web/styles/chat.scss

@ -26,7 +26,8 @@ @@ -26,7 +26,8 @@
}
.message-contents {
overflow: hidden;
overflow: auto;
max-height: 200px;
img {
position: relative;
margin-top: -5px;

Loading…
Cancel
Save