Skip to content

Commit 1a2d720

Browse files
jaqrasapk
jaqra
authored andcommitted
Make 100% width issues page left menu and add reponame as title attribute (#8359)
1 parent 6ea7752 commit 1a2d720

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

public/css/index.css

+1
Original file line numberDiff line numberDiff line change
@@ -955,6 +955,7 @@ tbody.commit-list{vertical-align:baseline}
955955
.dashboard{padding-top:15px}
956956
.dashboard.feeds .context.user.menu,.dashboard.issues .context.user.menu{z-index:101;min-width:200px}
957957
.dashboard.feeds .context.user.menu .ui.header,.dashboard.issues .context.user.menu .ui.header{font-size:1rem;text-transform:none}
958+
.dashboard.feeds .filter.menu,.dashboard.issues .filter.menu{width:initial}
958959
.dashboard.feeds .filter.menu .item,.dashboard.issues .filter.menu .item{text-align:left}
959960
.dashboard.feeds .filter.menu .item .text,.dashboard.issues .filter.menu .item .text{height:16px;vertical-align:middle}
960961
.dashboard.feeds .filter.menu .item .text.truncate,.dashboard.issues .filter.menu .item .text.truncate{width:85%}

public/less/_dashboard.less

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
}
1515

1616
.filter.menu {
17+
width: initial;
18+
1719
.item {
1820
text-align: left;
1921

templates/user/dashboard/issues.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
{{end}}
2626
<div class="ui divider"></div>
2727
{{range .Repos}}
28-
<a class="{{if eq $.RepoID .ID}}ui basic blue button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}{{if not (eq $.RepoID .ID)}}&repo={{.ID}}{{end}}&sort={{$.SortType}}&state={{$.State}}">
28+
<a class="{{if eq $.RepoID .ID}}ui basic blue button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}{{if not (eq $.RepoID .ID)}}&repo={{.ID}}{{end}}&sort={{$.SortType}}&state={{$.State}}" title="{{.FullName}}">
2929
<span class="text truncate">{{.FullName}}</span>
3030
<div class="floating ui {{if $.IsShowClosed}}red{{else}}green{{end}} label">{{index $.Counts .ID}}</div>
3131
</a>

0 commit comments

Comments
 (0)