Browse Source

fix prompt

dev
xmcp 6 years ago
parent
commit
80d300f599
  1. 2
      src/Flows.css
  2. 2
      src/Flows.js

2
src/Flows.css

@ -64,7 +64,7 @@
}
@media screen and (min-width: 1301px) {
.left-container .flow-item-row .flow-item:hover::before {
.left-container .flow-item-row-with-prompt:hover::before {
content: '>>';
position: absolute;
left: 10px;

2
src/Flows.js

@ -474,7 +474,7 @@ class FlowItemRow extends PureComponent {
}
let res=(
<div className={'flow-item-row'+(this.props.is_quote ? ' flow-item-row-quote' : '')} onClick={(event)=>{
<div className={'flow-item-row flow-item-row-with-prompt'+(this.props.is_quote ? ' flow-item-row-quote' : '')} onClick={(event)=>{
if(!CLICKABLE_TAGS[event.target.tagName.toLowerCase()])
this.show_sidebar();
}}>

Loading…
Cancel
Save