File path tweaks in UI (#2264)
parent
d05150a331
commit
54381f438b
|
@ -120,6 +120,13 @@ code.wrap {
|
||||||
.ui.right {
|
.ui.right {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
.ui.button,
|
||||||
|
.ui.menu .item {
|
||||||
|
-moz-user-select: auto;
|
||||||
|
-ms-user-select: auto;
|
||||||
|
-webkit-user-select: auto;
|
||||||
|
user-select: auto;
|
||||||
|
}
|
||||||
.ui.container.fluid.padded {
|
.ui.container.fluid.padded {
|
||||||
padding: 0 10px 0 10px;
|
padding: 0 10px 0 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,6 +122,13 @@ pre, code {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.button, &.menu .item {
|
||||||
|
-moz-user-select: auto;
|
||||||
|
-ms-user-select: auto;
|
||||||
|
-webkit-user-select: auto;
|
||||||
|
user-select: auto;
|
||||||
|
}
|
||||||
|
|
||||||
&.container {
|
&.container {
|
||||||
&.fluid {
|
&.fluid {
|
||||||
&.padded {
|
&.padded {
|
||||||
|
|
|
@ -17,20 +17,20 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
{{template "repo/branch_dropdown" .}}
|
{{template "repo/branch_dropdown" .}}
|
||||||
<div class="fitted item">
|
<div class="fitted item">
|
||||||
<div class="ui breadcrumb">
|
<span class="ui breadcrumb">
|
||||||
<a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{EllipsisString .Repository.Name 25}}</a>
|
<a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchName}}">{{EllipsisString .Repository.Name 30}}</a>
|
||||||
{{ $n := len .TreeNames}}
|
{{ $n := len .TreeNames}}
|
||||||
{{ $l := Subtract $n 1}}
|
{{ $l := Subtract $n 1}}
|
||||||
{{range $i, $v := .TreeNames}}
|
{{range $i, $v := .TreeNames}}
|
||||||
<div class="divider"> / </div>
|
<span class="divider"> / </span>
|
||||||
{{if eq $i $l}}
|
{{if eq $i $l}}
|
||||||
<span class="active section">{{EllipsisString $v 15}}</span>
|
<span class="active section">{{EllipsisString $v 30}}</span>
|
||||||
{{else}}
|
{{else}}
|
||||||
{{ $p := index $.Paths $i}}
|
{{ $p := index $.Paths $i}}
|
||||||
<span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{EllipsisString $v 15}}</a></span>
|
<span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{EllipsisString $v 30}}</a></span>
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="right fitted item">
|
<div class="right fitted item">
|
||||||
{{if .Repository.CanEnableEditor}}
|
{{if .Repository.CanEnableEditor}}
|
||||||
|
|
Loading…
Reference in New Issue