1/* Allow drag window from headerbar buttons */
2
3@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
4
5:root[tabsintitlebar] #nav-bar *,
6:root[tabsintitlebar] #titlebar .titlebar-button,
7:root[tabsintitlebar][inFullscreen] #window-controls toolbarbutton {
8	-moz-window-dragging: drag;
9}
10
11/* Avoid window dragging from urlbar */
12:root[tabsintitlebar] #nav-bar .urlbar-input-box,
13:root[tabsintitlebar] #nav-bar .urlbar-input-box * {
14	-moz-window-dragging: no-drag !important;
15}
16
17