Browse Source

#fix of group profile modal: show scroll-bar if member list doesn't fit to window

nin-v2
Simon Grim 9 years ago
parent
commit
84a0b78d66
  1. 3
      css/style.css
  2. 6
      sass/layout/_profile.sass

3
css/style.css

@ -1112,6 +1112,9 @@ button.light:hover, .light.show-more-followers:hover, a.button.light:hover {
.profile-modal .modal-content .profile-data { .profile-modal .modal-content .profile-data {
background: none; background: none;
} }
.profile-modal .modal-content .members {
overflow-y: auto;
}
.profile-modal h2.profile-screen-name { .profile-modal h2.profile-screen-name {
display: block; display: block;

6
sass/layout/_profile.sass

@ -15,7 +15,6 @@ $modal-postboard-post-height: 100%
.profile-modal .profile-modal
.modal-content .modal-content
overflow: hidden overflow: hidden
padding: 0 padding: 0
@ -28,13 +27,11 @@ $modal-postboard-post-height: 100%
height: 100% height: 100%
position: absolute position: absolute
.postboard-posts .postboard-posts
display: block display: block
height: $modal-postboard-post-height height: $modal-postboard-post-height
overflow: auto overflow: auto
.profile-card .profile-card
margin: 0 margin: 0
padding: 0 padding: 0
@ -42,6 +39,9 @@ $modal-postboard-post-height: 100%
.profile-data .profile-data
background: none background: none
.members
overflow-y: auto
.profile-modal .profile-modal
h2.profile-screen-name h2.profile-screen-name
display: block display: block

Loading…
Cancel
Save