diff --git a/runweb b/runweb index 459c28606..8bb4a626d 100755 --- a/runweb +++ b/runweb @@ -1,5 +1,6 @@ #!/bin/bash pushd web +# run jam-web rails server bundle exec rails s popd diff --git a/web/app/assets/javascripts/accounts_profile.js b/web/app/assets/javascripts/accounts_profile.js index 85491c39c..615bdf708 100644 --- a/web/app/assets/javascripts/accounts_profile.js +++ b/web/app/assets/javascripts/accounts_profile.js @@ -36,6 +36,7 @@ city: userDetail.city, first_name: userDetail.first_name, last_name: userDetail.last_name, + photoUrl: context.JK.resolveAvatarUrl(userDetail.photo_url), user_instruments: userDetail.instruments, birth_date : userDetail.birth_date, gender: userDetail.gender, diff --git a/web/app/assets/stylesheets/client/account.css.scss b/web/app/assets/stylesheets/client/account.css.scss index 93967f182..c6410266f 100644 --- a/web/app/assets/stylesheets/client/account.css.scss +++ b/web/app/assets/stylesheets/client/account.css.scss @@ -59,7 +59,15 @@ } .account-profile { - padding-top:25px; + padding-top:20px; + + .avatar_large { + position:absolute; + float:none; + top: -36px; + right:0; + margin-right:20%; + } h2 { margin-bottom:15px; @@ -67,17 +75,16 @@ .location { position:relative; + padding-top:25px; } #account-change-avatar { - position:absolute; - top:-27px; - right:72px; height:13px; + float:right; + margin-right:17%; } .birth_date { - margin-left:40px; } } diff --git a/web/app/assets/stylesheets/client/band.css.scss b/web/app/assets/stylesheets/client/band.css.scss index 63152401a..814fed92f 100644 --- a/web/app/assets/stylesheets/client/band.css.scss +++ b/web/app/assets/stylesheets/client/band.css.scss @@ -273,9 +273,6 @@ #band-filter-results { margin: 0 10px 5px 10px; - overflow: auto; - height: 100%; - width: 100%; } .band-list-result { diff --git a/web/app/assets/stylesheets/client/content.css.scss b/web/app/assets/stylesheets/client/content.css.scss index d650febca..38794f276 100644 --- a/web/app/assets/stylesheets/client/content.css.scss +++ b/web/app/assets/stylesheets/client/content.css.scss @@ -88,6 +88,17 @@ } } } + + .filter-head { + position: absolute; + padding:11px 0; + } + .filter-body { + height:100%; + width:100%; + box-sizing: border-box; + padding-top: 49px; + } } .result-list-button-wrapper { @@ -248,7 +259,7 @@ a.arrow-down { #session-controls { width:100%; - padding:11px 0px 11px 0px; + padding:6px 0px 11px 0px; background-color:#4c4c4c; min-height:20px; overflow-x:scroll; diff --git a/web/app/assets/stylesheets/client/musician.css.scss b/web/app/assets/stylesheets/client/musician.css.scss index fc78eefa3..b9e47e290 100644 --- a/web/app/assets/stylesheets/client/musician.css.scss +++ b/web/app/assets/stylesheets/client/musician.css.scss @@ -22,14 +22,11 @@ #musician-filter-results { margin: 0 10px 0px 10px; - overflow: auto; - height: 100%; -// width: 100%; } .musician-wrapper { -// overflow: auto; -// height: 480px; + overflow: initial; + height: initial; width: 100%; } @@ -37,12 +34,8 @@ padding-top: 5px; padding-right: 5px; padding-left: 5px; - box-sizing:border-box; } -#session-controls.musician-filter { - padding-top: 6px; -} .musician-following { overflow: auto; } diff --git a/web/app/assets/stylesheets/client/profile.css.scss b/web/app/assets/stylesheets/client/profile.css.scss index ef0a772dd..f2ec34e60 100644 --- a/web/app/assets/stylesheets/client/profile.css.scss +++ b/web/app/assets/stylesheets/client/profile.css.scss @@ -196,6 +196,7 @@ position:relative; margin:10px 0px 10px 0px; padding-bottom:5px; + box-sizing:border-box; } .profile-social-left { diff --git a/web/app/assets/stylesheets/client/screen_common.css.scss b/web/app/assets/stylesheets/client/screen_common.css.scss index 0edcc5c43..98fd15a4b 100644 --- a/web/app/assets/stylesheets/client/screen_common.css.scss +++ b/web/app/assets/stylesheets/client/screen_common.css.scss @@ -42,7 +42,8 @@ } } -.content { +.content, +.inner-content { clear: both; float: left; height: 100%; diff --git a/web/app/views/clients/_account_profile.html.erb b/web/app/views/clients/_account_profile.html.erb index e301ae4e5..982493710 100644 --- a/web/app/views/clients/_account_profile.html.erb +++ b/web/app/views/clients/_account_profile.html.erb @@ -30,7 +30,9 @@