mirror of
https://github.com/penpot/penpot.git
synced 2025-02-24 07:46:13 -05:00
🐛 Fix layer and component names inputs not having their text selectable on Firefox
This commit is contained in:
parent
7fa026da15
commit
78aafa4635
2 changed files with 21 additions and 19 deletions
|
@ -177,8 +177,9 @@
|
|||
on-mount
|
||||
(fn []
|
||||
(let [dom (mf/ref-val ref)]
|
||||
(.setAttribute dom "draggable" true) ;; In firefox it needs to be draggable for problems with event handling.
|
||||
;; In firefox it needs to be draggable for problems with event handling.
|
||||
;; It will stop the drag operation in on-drag-start
|
||||
(.setAttribute dom "draggable" (and draggable? (not disabled)))
|
||||
|
||||
;; Register all events in the (default) bubble mode, so that they
|
||||
;; are captured by the most leaf item. The handler will stop
|
||||
|
|
|
@ -141,14 +141,16 @@
|
|||
on-context-menu
|
||||
(mf/use-fn
|
||||
(mf/deps on-context-menu component-id)
|
||||
(partial on-context-menu component-id))]
|
||||
(partial on-context-menu component-id))
|
||||
|
||||
renaming? (= renaming (:id component))]
|
||||
|
||||
[:div {:ref item-ref
|
||||
:class (stl/css-case :selected (contains? selected (:id component))
|
||||
:grid-cell listing-thumbs?
|
||||
:enum-item (not listing-thumbs?))
|
||||
:id (dm/str "component-shape-id-" (:id component))
|
||||
:draggable (not read-only?)
|
||||
:draggable (and (not read-only?) (not renaming?))
|
||||
:on-click on-component-click
|
||||
:on-double-click on-component-double-click
|
||||
:on-context-menu on-context-menu
|
||||
|
@ -160,7 +162,6 @@
|
|||
(when (and (some? root-shape)
|
||||
(some? container))
|
||||
[:*
|
||||
(let [renaming? (= renaming (:id component))]
|
||||
[:*
|
||||
[:& editable-label
|
||||
{:class (stl/css-case :cell-name listing-thumbs?
|
||||
|
@ -175,7 +176,7 @@
|
|||
:on-cancel cancel-rename}]
|
||||
|
||||
(when ^boolean dragging?
|
||||
[:div {:class (stl/css :dragging)}])])
|
||||
[:div {:class (stl/css :dragging)}])]
|
||||
|
||||
(when visible?
|
||||
[:& cmm/component-item-thumbnail {:file-id file-id
|
||||
|
|
Loading…
Add table
Reference in a new issue