From 46c93a2687c81849c19f6067776d0e4996e0516a Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Tue, 15 Sep 2015 16:30:35 +0800 Subject: [PATCH 1/3] FIX: Selected posts buttons not clickable. --- app/assets/stylesheets/mobile/topic-post.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/app/assets/stylesheets/mobile/topic-post.scss b/app/assets/stylesheets/mobile/topic-post.scss index ef1bbbe8b33..42849b137e2 100644 --- a/app/assets/stylesheets/mobile/topic-post.scss +++ b/app/assets/stylesheets/mobile/topic-post.scss @@ -396,7 +396,6 @@ iframe { } #selected-posts { - float: left; width: 97%; padding-left: 3%; background-color: srgb-scale($tertiary, $secondary, 15%); From 9977599ca9bc48295b5ecffb67ae0eae3fe5c6cf Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Tue, 15 Sep 2015 16:39:52 +0800 Subject: [PATCH 2/3] FIX: Input on modal was overflowing. --- app/assets/stylesheets/mobile/modal.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/mobile/modal.scss b/app/assets/stylesheets/mobile/modal.scss index 3111b601323..9715a193161 100644 --- a/app/assets/stylesheets/mobile/modal.scss +++ b/app/assets/stylesheets/mobile/modal.scss @@ -88,7 +88,8 @@ form { margin-top: 20px; input[type=text] { - width: 500px; + box-sizing: border-box; + width: 100%; } } } From 6360420aed8e9401c24f09e671a568cad87637ae Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Tue, 15 Sep 2015 16:49:47 +0800 Subject: [PATCH 3/3] FIX: Make category combobox in modal take 100% width. --- app/assets/stylesheets/mobile/modal.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/mobile/modal.scss b/app/assets/stylesheets/mobile/modal.scss index 9715a193161..7114c9b2e1f 100644 --- a/app/assets/stylesheets/mobile/modal.scss +++ b/app/assets/stylesheets/mobile/modal.scss @@ -92,6 +92,10 @@ width: 100%; } } + + .category-combobox { + width: 100%; + } } .flag-modal {