Skip to content

Commit

Permalink
Bugfix z-index overlap on page_parts links (#3208)
Browse files Browse the repository at this point in the history
* Bugfix z-index overlap on page_parts links

* Fix z-index .ui-dialog
  • Loading branch information
bricesanchez authored and parndt committed Jul 5, 2016
1 parent 48be3ba commit 0978281
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ body.dialog #content .search_form {
color: #000;
border: 4px solid #22A7F2;
width: auto;
z-index: 1;
z-index: 3;
#dialog_loading {
position: fixed;
top: 50%;
Expand Down
38 changes: 23 additions & 15 deletions core/app/assets/stylesheets/refinery/sections/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1036,30 +1036,38 @@ a img {
border: 0px none;
}


/* page parts */

ul#page_parts,
ul#page_parts_controls {
margin: 0;
padding: 0;
}

ul#page_parts {
float: left;
width: 92%;
z-index: 1;
}
ul#page_parts, ul#page_parts_controls {
margin: 0;
padding: 0;
}

ul#page_parts_controls {
float: right;
margin: 20px 3px 0 0;
z-index: 2;

li {
list-style: none;
float: right;
margin: 0 3px;

a {
border: 0px none;
}
}
}
ul#page_parts_controls li {
list-style: none;
float: right;
margin: 0 3px;
}
ul#page_parts_controls li a {
border: 0px none;
}
ul#page_parts_controls img {
vertical-align: middle;
}


#page-tabs.ui-sortable.reordering {
li {
cursor: move;
Expand Down

0 comments on commit 0978281

Please sign in to comment.