Skip to content

Commit

Permalink
Themes Manager. Styles and behavior of 'Edit Tags' dialog are broken.…
Browse files Browse the repository at this point in the history
… - fixed issue #199
  • Loading branch information
alexxgermann committed Oct 10, 2016
1 parent 5f2dd67 commit 2fbbc68
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions runway-framework/framework/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@
.ui-dialog .ui-dialog-titlebar {
padding: .4em 0 0.9em;
position: relative;
background: transparent;
border: none;
height: auto;
line-height: inherit;
}
.ui-dialog .ui-dialog-title {
font-size: 18px;
Expand Down Expand Up @@ -293,6 +297,9 @@ div.ui-dialog-content,
background: #f5f5f5;
border: 0px solid #f5f5f5;
}
.ui-dialog .ui-dialog-titlebar-close:before {
content: '';
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
background-image: url(smoothness/images/ui-icons_454545_256x240.png)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
jQuery( document ).ready(function( $ ) {
var adminMenuZIndex = $('#adminmenuwrap').css('z-index');

$( ".tags-dialog" ).dialog( {
autoOpen: false,
Expand All @@ -16,9 +17,9 @@ jQuery( document ).ready(function( $ ) {
},
close: function(event, ui) {
$('html,body').css('overflow', 'auto');
$('#adminmenuwrap').css({'z-index':'auto'});
$('#adminmenuwrap').css({'z-index': adminMenuZIndex});
$(this).find('textarea').val('');
},
}
});


Expand Down

0 comments on commit 2fbbc68

Please sign in to comment.