From 9a5df50e46c993f04dc4c54163e503ab1b7c2826 Mon Sep 17 00:00:00 2001 From: Satoshi Ebisawa Date: Sat, 9 Feb 2013 20:44:30 +0900 Subject: [PATCH] Modify tutorial space, color --- app/tutorial_view.rb | 2 +- resources/default.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/tutorial_view.rb b/app/tutorial_view.rb index 9bc1de5..d55fd18 100644 --- a/app/tutorial_view.rb +++ b/app/tutorial_view.rb @@ -4,7 +4,7 @@ def initWithFrame(rect) self.styleId = 'tutorial' image = UIImage.imageNamed('tutorial.png') image_view = UIImageView.alloc.initWithImage(image).tap do |iv| - iv.frame = [[5, 5], [self.bounds.size.width - 10, self.bounds.size.height - 10]] + iv.frame = [[10, 10], [self.bounds.size.width - 20, self.bounds.size.height - 20]] iv.contentMode = UIViewContentModeScaleAspectFit iv.layer.shadowColor = UIColor.blackColor.CGColor iv.layer.shadowRadius = 3 diff --git a/resources/default.css b/resources/default.css index 8925a1e..c53ea8c 100644 --- a/resources/default.css +++ b/resources/default.css @@ -39,5 +39,5 @@ nav-buttons, bar-button-item { } #tutorial { - background-color: rgba(255, 255, 255, 0.1); + background-color: rgba(255, 255, 255, 1); }