Browse Source

add marking to title_wip_desc (#8705)

Signed-off-by: May <themaymeow@gmail.com>
tags/v1.11.0-rc1
May 4 years ago
parent
commit
c0f97f2687
3 changed files with 6 additions and 1 deletions
  1. 1
    0
      public/css/index.css
  2. 4
    0
      public/less/_repository.less
  3. 1
    1
      templates/repo/issue/new_form.tmpl

+ 1
- 0
public/css/index.css View File

@@ -898,6 +898,7 @@ tbody.commit-list{vertical-align:baseline}
.file-header{display:flex;justify-content:space-between;align-items:center;padding:8px 12px!important}
.file-info{display:flex;align-items:center}
.file-info-entry+.file-info-entry{border-left:1px solid currentColor;margin-left:8px;padding-left:8px}
.title_wip_desc{margin-top:1em}
.CodeMirror{font:14px 'SF Mono',Consolas,Menlo,'Liberation Mono',Monaco,'Lucida Console',monospace}
.CodeMirror.cm-s-default{border-radius:3px;padding:0!important}
.CodeMirror .cm-comment{background:inherit!important}

+ 4
- 0
public/less/_repository.less View File

@@ -2456,3 +2456,7 @@ tbody.commit-list {
margin-left: 8px;
padding-left: 8px;
}

.title_wip_desc {
margin-top: 1em;
}

+ 1
- 1
templates/repo/issue/new_form.tmpl View File

@@ -15,7 +15,7 @@
<div class="field">
<input name="title" id="issue_title" placeholder="{{.i18n.Tr "repo.milestones.title"}}" value="{{.title}}" tabindex="3" autofocus required>
{{if .PageIsComparePull}}
<span class="title_wip_desc">{{.i18n.Tr "repo.pulls.title_wip_desc" (index .PullRequestWorkInProgressPrefixes 0| Escape) | Safe}}</span>
<div class="title_wip_desc">{{.i18n.Tr "repo.pulls.title_wip_desc" (index .PullRequestWorkInProgressPrefixes 0| Escape) | Safe}}</div>
{{end}}
</div>
{{template "repo/issue/comment_tab" .}}

Loading…
Cancel
Save