jquery - Ruby on Rails app using facebook send button showing controls that lay behind modal -


i'm having trouble css of page in order facebook send button's modal show on top of everything. however, if cursor on modal, displays great. when move cursor away modal display looks wrong. here cursor on modal: when cursor on...

and here looks cursor away modal:

when cursor off...

i'm getting i'm getting parent elements have css property overflow: visible modal not cut off when exceeds boundary of elements. controls underneath (there buttons, textfields, , icons foundation) show in front of modal when mouse off modal.

it great if have facebook modal ahead of , not have worry it, can tell, not possible. i've tried z-index , have gotten i've read had similar issues.

here surrounding html area in question. part of partial rendered part of collection. big image @ bottom of each image part of next partial , outside code i'm sharing here:

<div class="row promote_and_stats" style="display: none; overflow: visible">   <div class="eight columns">     <div class="panel radius text-center">       <div class="row"><h6>promote</h6></div>       <div class="promote_collapse">         <div class="row">           <div class="four columns">             <div class="addthis_toolbox addthis_default_style">               <a class="addthis_button_facebook_send"                  addthis:url="<%= url_for(controller: 'things',                                           action: 'show',                                           id: f.unique_id.nil? ? f.id : f.unique_id,                                           only_path: false) %>"                  addthis:title="<%= @group.name %> - <%= f.title %> - blablabla.com">               </a>             </div>             <small>facebook</small>           </div>           <div class="four columns">             <div class="addthis_toolbox addthis_default_style">               <a class="addthis_button_tweet"                  tw:text="<%= @group.name %> - <%= f.title %> - blablabla.com<%= url_for(controller: 'things',                                                                                          action: 'show',                                                                                          id: f.unique_id.nil? ? f.id : f.unique_id,                                                                                          only_path: false) %>">               </a>             </div>             <small>twitter</small>           </div>           <div class="four columns">             <div class="addthis_toolbox addthis_default_style">               <a class="addthis_button_email"></a>             </div>             <small>email</small>           </div>         </div>         <div class="row">           <div class="two columns"><i class="social foundicon-flickr"></i></div>           <div class="ten columns">             <input type="text"                    placeholder="<%= url_for(controller: 'things',                                             action: 'show',                                             id: f.unique_id.nil? ? f.id : f.unique_id,                                             only_path: false) %>">           </div>           <div class="four columns">             <a class="small button view_thing_button"                href="<%= url_for(controller: 'things',                                  action: 'show',                                  id: f.unique_id.nil? ? f.id : f.unique_id) %>"                target="_blank">view</a>           </div>         </div>       </div>     </div>   </div>   <div class="eight columns">     <div class="panel radius text-center">       <h6>stats</h6>     </div>   </div> </div> 

can offer suggestions on how solve issue? thanks!


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -