Skip to content

Commit

Permalink
Fixing right actions area post merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
knowncitizen committed Oct 28, 2011
1 parent 65876fa commit a1d507b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/stylesheets/katello.scss
Expand Up @@ -805,7 +805,7 @@ footer {
.options {
display: none;
@include border-radius(5px);
@include box-shadow(2px 2px 2px rgba(0,0,0,0.4));
@include box-shadow(rgba(0,0,0,0.4), 2px, 2px, 2px);
background-color: white;
border: 1px solid $border_color;
padding: 15px;
Expand Down
3 changes: 2 additions & 1 deletion src/public/javascripts/panel.js
Expand Up @@ -22,7 +22,7 @@ $(document).ready(function () {
panelLeft = $(this).width();
$('.block').width(panelLeft - 17);
apanel.width(940 - panelLeft);
$('.right').width(910 - panelLeft);
$('.right').width(898 - panelLeft);
if (apanel.hasClass('opened')) {
apanel.css({
"left": (panelLeft)
Expand Down Expand Up @@ -818,6 +818,7 @@ KT.panel.list = (function () {
set_extended_cb: function (callBack) {
extended_cb = callBack;
},
actions: actions,
extend: extend,
registerPage: registerPage,
remove: remove,
Expand Down

0 comments on commit a1d507b

Please sign in to comment.