mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
Merge pull request #4711 from JohnONolan/fix-tagmgmt
Fix tag mgmt display bugs
This commit is contained in:
commit
a8b30209be
3 changed files with 5 additions and 5 deletions
|
@ -144,7 +144,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag-delete-button {
|
.tag-delete-button {
|
||||||
padding: 0;
|
padding-left: 0;
|
||||||
color: $red;
|
color: $red;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
|
@ -196,4 +196,4 @@ body.settings-menu-expanded {
|
||||||
transform: translate3d(-350px, 0px, 0px); // Not off the screen, to give a parallax effect
|
transform: translate3d(-350px, 0px, 0px); // Not off the screen, to give a parallax effect
|
||||||
}//.editor-cover
|
}//.editor-cover
|
||||||
|
|
||||||
}//body.settings-menu-expanded
|
}//body.settings-menu-expanded
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<header class="settings-view-header">
|
<header class="settings-view-header">
|
||||||
<h2 class="page-title">Tags</h2>
|
|
||||||
<div class="js-settings-header-inner settings-header-inner">
|
<div class="js-settings-header-inner settings-header-inner">
|
||||||
{{#link-to 'settings' class='btn btn-default btn-back'}}Back{{/link-to}}
|
{{#link-to 'settings' class='btn btn-default btn-back'}}Back{{/link-to}}
|
||||||
</div>
|
</div>
|
||||||
|
<h2 class="page-title">Tags</h2>
|
||||||
<section class="page-actions">
|
<section class="page-actions">
|
||||||
<button type="button" class="btn btn-green" {{action "newTag"}}>New Tag</button>
|
<button type="button" class="btn btn-green" {{action "newTag"}}>New Tag</button>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -11,12 +11,12 @@
|
||||||
{{gh-uploader uploaded="setCoverImage" canceled="clearCoverImage" description="Add tag image" image=activeTag.image uploaderReference=uploaderReference tagName="section"}}
|
{{gh-uploader uploaded="setCoverImage" canceled="clearCoverImage" description="Add tag image" image=activeTag.image uploaderReference=uploaderReference tagName="section"}}
|
||||||
<form>
|
<form>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Tag Name</label>
|
<label>Name</label>
|
||||||
{{gh-input type="text" value=activeTagNameScratch focus-out="saveActiveTagName"}}
|
{{gh-input type="text" value=activeTagNameScratch focus-out="saveActiveTagName"}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label>Slug</label>
|
<label>URL</label>
|
||||||
{{gh-input type="text" value=activeTagSlugScratch focus-out="saveActiveTagSlug"}}
|
{{gh-input type="text" value=activeTagSlugScratch focus-out="saveActiveTagSlug"}}
|
||||||
{{gh-url-preview prefix="tag" slug=activeTagSlugScratch tagName="p" classNames="description"}}
|
{{gh-url-preview prefix="tag" slug=activeTagSlugScratch tagName="p" classNames="description"}}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue