Skip to content

Commit

Permalink
BUGFIX:fixed action buttons on edit page content - stopped them from …
Browse files Browse the repository at this point in the history
…overlapping in ie8.
  • Loading branch information
kmayo-ss committed Jul 10, 2012
1 parent b6c59f2 commit 4a9c6d1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 5 additions & 2 deletions admin/css/ie8.css
Expand Up @@ -40,8 +40,8 @@

.filter-buttons button.ss-gridfield-button-filter { background-position: -18px 4px !important; }

.cms-panel .cms-panel-content-collapsed { width: 40px; }
.cms-panel .cms-panel-content-collapsed h2, .cms-panel .cms-panel-content-collapsed h3 { display: none; }
.cms-panel .cms-panel-content-collapsed { position: relative; width: 40px; }
.cms-panel .cms-panel-content-collapsed h2.cms-panel-header, .cms-panel .cms-panel-content-collapsed h3.cms-panel-header { zoom: 1; position: absolute; top: 10px; right: 10px; writing-mode: tb-rl; float: right; z-index: 5000; }

.cms-content-toolbar .cms-tree-view-modes .checkboxAboveTree { margin-right: 1px; }

Expand All @@ -52,3 +52,6 @@
.filter-buttons button.ss-gridfield-button-close { margin-right: -7px !important; }

.col-buttons { width: 18px; }

/* fix for actions buttons on edit page content overlapping */
.cms-content-actions .ss-ui-buttonset button { margin-right: 0; }
9 changes: 9 additions & 0 deletions admin/scss/ie8.scss
Expand Up @@ -39,4 +39,13 @@

.col-buttons{
width:18px;
}

/* fix for actions buttons on edit page content overlapping */
.cms-content-actions {
.ss-ui-buttonset {
button {
margin-right: 0;
}
}
}

0 comments on commit 4a9c6d1

Please sign in to comment.