Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
Merge pull request #25 from theonion/fix-z-index
Browse files Browse the repository at this point in the history
Fix z-index issue
  • Loading branch information
jmelvnsn committed May 18, 2016
2 parents 0fba58c + 66717d4 commit 6f8f9d6
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bulbs-component-clickventure",
"description": "Frontend dependencies for Clickventure component.",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"ignore": [
"compat-builds",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ clickventure-edit-node-toolbar {
margin-left: 250px;
position: absolute;
width: 550px;
z-index: 100;
}
clickventure-edit-node-toolbar .clickventure-edit-node-toolbar-title {
min-height: 34px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1235,11 +1235,9 @@ angular.module('bulbs.clickventure.edit.toolFixture', [

elements.css('position', 'fixed');
elements.css('top', padding + 'px');
elements.css('z-index', 1000);
} else {
elements.css('position', '');
elements.css('top', '');
elements.css('z-index', '');
}
}));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ clickventure-edit-node-toolbar {
margin-left: 250px;
position: absolute;
width: 550px;
z-index: 100;

.clickventure-edit-node-toolbar-title {
min-height: 34px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ angular.module('bulbs.clickventure.edit.toolFixture', [

elements.css('position', 'fixed');
elements.css('top', padding + 'px');
elements.css('z-index', 1000);
} else {
elements.css('position', '');
elements.css('top', '');
elements.css('z-index', '');
}
}));
}
Expand Down

0 comments on commit 6f8f9d6

Please sign in to comment.