Compare commits

..

No commits in common. "690a034175a8136decbcbb52592a7911bd9663c9" and "a7fdacd25231a07f15351be616aad5bd4440fc6c" have entirely different histories.

7 changed files with 6 additions and 8 deletions

View file

@ -19,7 +19,7 @@ import { Revealer } from './fullscreen.js';
export const Bar = Window({
name: 'bar',
layer: 'overlay',
anchor: [ 'top', 'left', 'right' ],
anchor: 'top left right',
exclusive: true,
child: Revealer({
child: CenterBox({

View file

@ -76,9 +76,8 @@ export const Calendar = Window({
name: 'calendar',
layer: 'overlay',
popup: true,
anchor: [ 'top', 'right' ],
anchor: 'top right',
margin: [ 8, 182, 0, 0],
child: PopUp({
name: 'calendar',
child: Box({

View file

@ -22,7 +22,7 @@ export const Closer = Window({
name: 'closer',
popup: true,
layer: 'top',
anchor: [ 'top', 'bottom', 'left', 'right' ],
anchor: 'top bottom left right',
child: EventBox({
onPrimaryClickRelease: () => closeAll(),

View file

@ -138,10 +138,9 @@ const NotificationCenterWidget = Box({
export const NotificationCenter = Window({
name: 'notification-center',
layer: 'overlay',
anchor: [ 'top', 'right' ],
anchor: 'top right',
popup: true,
margin: [ 8, 60, 0, 0 ],
child: PopUp({
name: 'notification-center',
child: NotificationCenterWidget,

View file

@ -82,6 +82,6 @@ const PopupList = ({ transition = 'none' } = {}) => Box({
export const NotificationsPopupList = Window({
name: `notifications`,
anchor: [ 'top', 'left' ],
anchor: 'top left',
child: PopupList(),
});

View file

@ -72,7 +72,7 @@ const QuickSettingsWidget = Box({
export const QuickSettings = Window({
name: 'quick-settings',
layer: 'overlay',
anchor: [ 'top', 'right' ],
anchor: 'top right',
popup: true,
margin: [ 8, 5, 0, ],
child: PopUp({

Binary file not shown.