Skip to content

Commit

Permalink
XWIKI-21009: LiveData alternative to drag controls
Browse files Browse the repository at this point in the history
* Made the resize handles invisible when not focused again.
  • Loading branch information
Sereza7 committed Jan 19, 2024
1 parent fb525ea commit 51f8cce
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ export default {
}

.layout-table .resize-handle {
/* TODO: Discussion about the exact display of resize handles. */
opacity: 0;
padding: 0;
cursor: col-resize;
min-width: 0;
Expand All @@ -289,6 +291,7 @@ export default {

.layout-table .column-name:focus-within .resize-handle,
.layout-table .column-name:hover .resize-handle {
opacity: 1;
border-color: @text-muted;
border-width: 3px;
margin-left: 0;
Expand Down

0 comments on commit 51f8cce

Please sign in to comment.