mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
fix pointer
This commit is contained in:
@@ -448,7 +448,7 @@ const CatalogPost = ({post}) => {
|
|||||||
</BoardForm>
|
</BoardForm>
|
||||||
<Link style={{all: "unset", cursor: "pointer"}} to={`/p/${selectedAddress}/rules`}>
|
<Link style={{all: "unset", cursor: "pointer"}} to={`/p/${selectedAddress}/rules`}>
|
||||||
<div className="teaser" style={{maxHeight: '312px'}}>
|
<div className="teaser" style={{maxHeight: '312px'}}>
|
||||||
<div style={{cursor: 'text'}}>
|
<div style={{cursor: 'pointer'}}>
|
||||||
<span ref={textRef}
|
<span ref={textRef}
|
||||||
onMouseOver={() => {
|
onMouseOver={() => {
|
||||||
setIsHoveringOnThread('rules');
|
setIsHoveringOnThread('rules');
|
||||||
@@ -621,7 +621,7 @@ const CatalogPost = ({post}) => {
|
|||||||
<Link style={{all: "unset", cursor: "pointer"}} to={`/p/${selectedAddress}/description`}
|
<Link style={{all: "unset", cursor: "pointer"}} to={`/p/${selectedAddress}/description`}
|
||||||
onClick={() => setSelectedThread("description")}>
|
onClick={() => setSelectedThread("description")}>
|
||||||
<div className="teaser" style={{maxHeight: '170px'}}>
|
<div className="teaser" style={{maxHeight: '170px'}}>
|
||||||
<div style={{cursor: 'text'}}>
|
<div style={{cursor: 'pointer'}}>
|
||||||
<span ref={textRef}
|
<span ref={textRef}
|
||||||
onMouseOver={() => {
|
onMouseOver={() => {
|
||||||
setIsHoveringOnThread('description');
|
setIsHoveringOnThread('description');
|
||||||
@@ -920,7 +920,7 @@ const CatalogPost = ({post}) => {
|
|||||||
<Link style={{all: "unset", cursor: "pointer"}} key={`link2-`} to={`/p/${selectedAddress}/c/${thread.cid}`}
|
<Link style={{all: "unset", cursor: "pointer"}} key={`link2-`} to={`/p/${selectedAddress}/c/${thread.cid}`}
|
||||||
onClick={() => setSelectedThread(thread.cid)}>
|
onClick={() => setSelectedThread(thread.cid)}>
|
||||||
<div key={`t-`} className="teaser" style={{maxHeight: `calc(320px - ${displayHeight})`}}>
|
<div key={`t-`} className="teaser" style={{maxHeight: `calc(320px - ${displayHeight})`}}>
|
||||||
<div style={{cursor:"text"}}>
|
<div style={{cursor:"pointer"}}>
|
||||||
<span key={`teaser-width${thread.cid}`} ref={textRef}
|
<span key={`teaser-width${thread.cid}`} ref={textRef}
|
||||||
onMouseOver={() => {
|
onMouseOver={() => {
|
||||||
setIsHoveringOnThread(thread.cid);
|
setIsHoveringOnThread(thread.cid);
|
||||||
|
|||||||
Reference in New Issue
Block a user