Skip to content

Commit

Permalink
Merge pull request #453 from open-sausages/pulls/1.0/fix-page-icons
Browse files Browse the repository at this point in the history
BUG Fix page icons
  • Loading branch information
kinglozzer authored Mar 5, 2018
2 parents 088de66 + 985a0af commit 801d7b1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client/dist/styles/bundle.css

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions client/src/styles/legacy/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -955,13 +955,16 @@ body.cms {
&.class-HomePage {
background-position: 0 -48px;
}
&.class-RedirectorPage {
&.class-RedirectorPage,
&.class-SilverStripe_CMS_Model_RedirectorPage {
background-position: 0 -16px;
}
&.class-VirtualPage {
&.class-VirtualPage,
&.class-SilverStripe_CMS_Model_VirtualPage {
background-position: 0 -32px;
}
&.class-ErrorPage {
&.class-ErrorPage,
&.class-SilverStripe_ErrorPage_ErrorPage {
background-position: 0 -112px;
}
}
Expand Down
9 changes: 6 additions & 3 deletions client/src/styles/legacy/_tree.scss
Original file line number Diff line number Diff line change
Expand Up @@ -654,13 +654,16 @@ a .jstree-pageicon {
li.class-HomePage > &{
background-position: 0 -48px;
}
li.class-RedirectorPage > & {
li.class-RedirectorPage > &,
li.class-SilverStripe_CMS_Model_RedirectorPage > & {
background-position: 0 -16px;
}
li.class-VirtualPage > & {
li.class-VirtualPage > &,
li.class-SilverStripe_CMS_Model_VirtualPage > & {
background-position: 0 -32px;
}
li.class-ErrorPage > & {
li.class-ErrorPage > &,
li.class-SilverStripe_ErrorPage_ErrorPage > & {
background-position: 0 -112px;
}
}
Expand Down

0 comments on commit 801d7b1

Please sign in to comment.