diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-13 22:30:02 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-13 22:30:02 -0400 |
| commit | d6094e43606763ef9499f3e1fd42ac619e493135 (patch) | |
| tree | b69b2019a0f8f70633e9aa7a4b1119421281d9b3 /src/client/views/collections | |
| parent | 45567ff99161b2cb47ca43a7bcca31eca611bd10 (diff) | |
updated cursor icons.
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/CollectionMenu.tsx | 2 | ||||
| -rw-r--r-- | src/client/views/collections/TabDocView.scss | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/client/views/collections/CollectionMenu.tsx b/src/client/views/collections/CollectionMenu.tsx index ddb33727b..8342c5b12 100644 --- a/src/client/views/collections/CollectionMenu.tsx +++ b/src/client/views/collections/CollectionMenu.tsx @@ -430,7 +430,7 @@ export class CollectionViewBaseChrome extends React.Component<CollectionMenuProp get aliasButton() { const targetDoc = this.selectedDoc; return !targetDoc ? (null) : <Tooltip title={<div className="dash-tooltip">{"Tap or Drag to create an alias"}</div>} placement="top"> - <button className="antimodeMenu-button" ref={this._dragRef} onPointerDown={this.onAliasButtonDown} onClick={this.onAlias}> + <button className="antimodeMenu-button" ref={this._dragRef} onPointerDown={this.onAliasButtonDown} onClick={this.onAlias} style={{ cursor: "copy" }}> <FontAwesomeIcon className="documentdecorations-icon" icon="copy" size="lg" /> </button> </Tooltip>; diff --git a/src/client/views/collections/TabDocView.scss b/src/client/views/collections/TabDocView.scss index b808f3ae4..c0a46543d 100644 --- a/src/client/views/collections/TabDocView.scss +++ b/src/client/views/collections/TabDocView.scss @@ -28,11 +28,12 @@ input.lm_title:focus { position: absolute; bottom: 0; right: 0; - width: 40px; - height: 40px; - background: transparent; + width: 45px; + height: 45px; + background: white; transform: translate(20px, 20px) rotate(45deg); border-radius: 30px; + padding: 2px; > svg { margin-top: 3px; transform: translate(0px, 7px); |
