Skip to content

Commit

Permalink
Added 'default' indicator for outlines (fixes #926)
Browse files Browse the repository at this point in the history
  • Loading branch information
w00fz committed Oct 19, 2015
1 parent 33ed7b5 commit e48f278
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
1. [](#new)
- Updated Hydrogen and Admin with the new Gantry logo. Thanks Henning!
2. [](#improved)
- Copyright Particle now allows the `owner` field to contain HTML (thank you @topwebs / #906, #908)
- Copyright Particle now allows the `owner` field to contain HTML (thank you @topwebs / #906, #908)
- Default Outline now shows a 'default' tag in the Outlines Page (#926)
3. [](#bugfix)
- Fixed issue in admin where overrides for Enabled toggle wouldn't be showing checked, causing the value to reset to Base Outline
- Fixed Admin Styles issue where indicator wouldn't show in certain cases.
Expand Down
11 changes: 11 additions & 0 deletions platforms/common/css-compiled/admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions platforms/common/scss/admin/_configurations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@
.float-right.font-small {
color: $tertiary-accent;
}

&:after {
position: absolute;
bottom: 0;
right: 0;
background: $tertiary-accent;
content: "Default";
padding: 2px 6px;
color: white;
font-size: 0.7rem;
border-radius: 3px 0 0 0;
}
}

h4 {
Expand Down

0 comments on commit e48f278

Please sign in to comment.