File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -890,6 +890,8 @@ tbody.commit-list{vertical-align:baseline}
890
890
.user .notification .octicon .blue {color : # 2185d0 }
891
891
.user .link-account : not (.icon ){padding-top : 15px ;padding-bottom : 5px }
892
892
.user .settings .iconFloat {float : left}
893
+ .user-orgs {display : flex;flex-flow : row wrap;padding : 0 ;margin : -3px !important }
894
+ .user-orgs li {display : flex;border-bottom : 0 !important ;padding : 3px !important ;width : 20% ;max-width : 60px }
893
895
.dashboard {padding-top : 15px }
894
896
.dashboard .feeds .context .user .menu , .dashboard .issues .context .user .menu {z-index : 101 ;min-width : 200px }
895
897
.dashboard .feeds .context .user .menu .ui .header , .dashboard .issues .context .user .menu .ui .header {font-size : 1rem ;text-transform : none}
Original file line number Diff line number Diff line change 133
133
}
134
134
}
135
135
}
136
+
137
+ .user-orgs {
138
+ display : flex ;
139
+ flex-flow : row wrap ;
140
+ padding : 0 ;
141
+ margin : -3px !important ;
142
+
143
+ li {
144
+ display : flex ;
145
+ border-bottom : 0 !important ;
146
+ padding : 3px !important ;
147
+ width : 20% ;
148
+ max-width : 60px ;
149
+ }
150
+ }
Original file line number Diff line number Diff line change 69
69
*/}}
70
70
{{if and .Orgs .HasOrgsVisible}}
71
71
<li>
72
+ <ul class="user-orgs">
72
73
{{range .Orgs}}
73
74
{{if (or .Visibility.IsPublic (and ($.SignedUser) (or .Visibility.IsLimited (and (.IsUserPartOfOrg $.SignedUserID) .Visibility.IsPrivate) ($.IsAdmin))))}}
74
- <a href="{{.HomeLink}}"><img class="ui mini image poping up" src="{{.RelAvatarLink}}" data-content="{{.Name}}" data-position="top center" data-variation="tiny inverted"></a>
75
+ <li>
76
+ <a href="{{.HomeLink}}"><img class="ui image poping up" src="{{.RelAvatarLink}}" data-content="{{.Name}}" data-position="top center" data-variation="tiny inverted"></a>
77
+ </li>
75
78
{{end}}
76
79
{{end}}
80
+ </ul>
77
81
</li>
78
82
{{end}}
79
83
{{if and .IsSigned (ne .SignedUserName .Owner.Name)}}
You can’t perform that action at this time.
0 commit comments