screenShield: Add box-shadow to the shield

According to the mockups, the screen shield should cast a shadow
when lifted.
This commit is contained in:
Florian Müllner
2012-09-13 18:45:55 +02:00
parent ed82c3763c
commit 2a8625ffae
2 changed files with 7 additions and 1 deletions

View File

@ -366,7 +366,8 @@ const ScreenShield = new Lang.Class({
name: 'lockScreenContents' });
this._lockScreenContents.add_constraint(new Layout.MonitorConstraint({ primary: true }));
this._background = Meta.BackgroundActor.new_for_screen(global.screen);
this._background = new St.Bin({ style_class: 'screen-shield-background',
child: Meta.BackgroundActor.new_for_screen(global.screen) });
this._lockScreenGroup.add_actor(this._background);
this._lockScreenGroup.add_actor(this._lockScreenContents);