Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Apply no-drag to all direct descendants except for .endButtons #6780

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions less/navigationBar.less
Original file line number Diff line number Diff line change
Expand Up @@ -703,11 +703,6 @@
-webkit-user-select: none;
z-index: @zindexNavigationBar;

// #6253 #6680
> * {
-webkit-app-region: no-drag;
}

form {
-webkit-app-region: drag;
// Disable window dragging so that selecting text and dragging the favicon is possible.
Expand All @@ -717,10 +712,16 @@
}

&:not(.titleMode) {

> * {
animation: fadeIn .6s;
opacity: 0;
animation-fill-mode: forwards;

// #5792 Apply no-drag to all direct descendants except for .endButtons, which is empty for now
&:not(.endButtons) {
-webkit-app-region: no-drag;
}
}

// Create 25x25 square and place .bookmarkButton at the center of it
Expand Down