| Index: sky/sdk/lib/framework/components2/modal_overlay.dart
|
| diff --git a/sky/sdk/lib/framework/components2/modal_overlay.dart b/sky/sdk/lib/framework/components2/modal_overlay.dart
|
| index 79c47722b835509fabba5118228ce00f35cdfed0..7af446c818ed3e72389518174bbbac3e133e81ba 100644
|
| --- a/sky/sdk/lib/framework/components2/modal_overlay.dart
|
| +++ b/sky/sdk/lib/framework/components2/modal_overlay.dart
|
| @@ -5,12 +5,12 @@
|
| import '../fn2.dart';
|
|
|
| class ModalOverlay extends Component {
|
| - static final Style _style = new Style('''
|
| - position: absolute;
|
| - top: 0;
|
| - left: 0;
|
| - bottom: 0;
|
| - right: 0;''');
|
| + // static final Style _style = new Style('''
|
| + // position: absolute;
|
| + // top: 0;
|
| + // left: 0;
|
| + // bottom: 0;
|
| + // right: 0;''');
|
|
|
| List<UINode> children;
|
| GestureEventListener onDismiss;
|
| @@ -19,9 +19,7 @@ class ModalOverlay extends Component {
|
|
|
| UINode build() {
|
| return new EventListenerNode(
|
| - new Container(
|
| - style: _style,
|
| - children: children),
|
| + new StackContainer(children: children),
|
| onGestureTap: onDismiss);
|
| }
|
| }
|
|
|