diff --git a/ruby/spec/support/utilities.rb b/ruby/spec/support/utilities.rb index 5876e3583..29d558fe5 100644 --- a/ruby/spec/support/utilities.rb +++ b/ruby/spec/support/utilities.rb @@ -24,6 +24,10 @@ def wipe_s3_test_bucket :secret_access_key => test_config.aws_secret_access_key) test_bucket = s3.buckets[JAMKAZAM_TESTING_BUCKET] if test_bucket.name == JAMKAZAM_TESTING_BUCKET - test_bucket.delete_all + puts "test_bucket name = #{test_bucket.name}" + test_bucket.acl.grants each do |grant| + puts "test_bucket ACL grant: #{grant.to_s}" + end + #test_bucket.clear! end end \ No newline at end of file diff --git a/web/app/assets/stylesheets/client/content.css.scss b/web/app/assets/stylesheets/client/content.css.scss index 38794f276..88550ab29 100644 --- a/web/app/assets/stylesheets/client/content.css.scss +++ b/web/app/assets/stylesheets/client/content.css.scss @@ -99,6 +99,55 @@ box-sizing: border-box; padding-top: 49px; } + + .profile-head { + position: absolute; + box-sizing: border-box; + width:100%; + } + .profile-body { + height:100%; + width:100%; + box-sizing: border-box; + padding-top: 157px; + > * { + box-sizing:border-box; + } + } + .profile-body-content { + height: inherit; + overflow:auto; + &.outer { + overflow:hidden; + } + &.padded { + padding:10px 25px; + } + } + + .profile-social-head { + position: absolute; + width:100%; + padding:0 25px; + line-height:25px; + box-sizing:border-box; + + +.profile-wrapper { + padding-top: 0; + } + } + .profile-social-body { + height:100%; + width:100%; + box-sizing:border-box; + padding-top:25px; + .profile-social-body-wrapper { + height:inherit; + } + .profile-social-content { + padding:0 25px; + } + } } .result-list-button-wrapper { diff --git a/web/app/views/clients/_profile.html.erb b/web/app/views/clients/_profile.html.erb index 1b1ae6e66..029292e0c 100644 --- a/web/app/views/clients/_profile.html.erb +++ b/web/app/views/clients/_profile.html.erb @@ -10,9 +10,8 @@ <%= render "screen_navigation" %>
-
-
-
+ +

@@ -45,57 +44,83 @@
-
-
+ +
+
-
-

Location:


-


-

Stats:


-
-
-
-
-
-
-
-
-


-
+
+
+

Location:


+


+

Stats:


+
+
+
+
+
+
+
+


+
+
+
-
+
+
+
+
+

-
-
-
-
-
-

Friends

-
+
+
+
+

Friends

+
+
+

Following

+
+
+

Followers

+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
-
-

Following

-
+
+
+
+
-
-

Followers

-
-
-
-
-
-
-
+
-
diff --git a/web/spec/support/utilities.rb b/web/spec/support/utilities.rb index 661bfe292..cbfe10d3d 100644 --- a/web/spec/support/utilities.rb +++ b/web/spec/support/utilities.rb @@ -37,7 +37,7 @@ def wipe_s3_test_bucket :secret_access_key => Rails.application.config.aws_secret_access_key) test_bucket = s3.buckets[JAMKAZAM_TESTING_BUCKET] if test_bucket.name == JAMKAZAM_TESTING_BUCKET - test_bucket.delete_all + test_bucket.clear! end end