mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 08:47:01 +01:00
7934602a4c
Fix #26617 1. Separate the "flex-list" examples into a dedicated template, and add some more examples 2. Use `flex-basis` instead of `flex-shrink` for `flex-item-trailing`, to avoid wrapping the texts too aggressively 3. Some `flex-wrap: wrap;` are removed
89 lines
2.8 KiB
Handlebars
89 lines
2.8 KiB
Handlebars
{{template "base/head" .}}
|
|
<link rel="stylesheet" href="{{AssetUrlPrefix}}/css/devtest.css?v={{AssetVersion}}">
|
|
<div class="page-content devtest ui container">
|
|
<div>
|
|
<h1>Flex List</h1>
|
|
<div class="flex-list">
|
|
<div class="flex-item">
|
|
<div class="flex-item-leading">
|
|
{{svg "octicon-info" 32}}
|
|
</div>
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-title">
|
|
Flex Item
|
|
<span class="ui basic label">
|
|
with label
|
|
</span>
|
|
</div>
|
|
<div class="flex-item-body">
|
|
consists of leading/main/trailing part
|
|
</div>
|
|
<div class="flex-item-body">
|
|
main part contains title and (multiple) body lines
|
|
</div>
|
|
</div>
|
|
<div class="flex-item-trailing">
|
|
<button class="ui tiny red button">
|
|
{{svg "octicon-warning" 14}} CJK文本测试
|
|
</button>
|
|
<button class="ui tiny green button">
|
|
{{svg "octicon-info" 14}} Button
|
|
</button>
|
|
<button class="ui tiny green button">
|
|
Button with long text
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex-item">
|
|
<div class="flex-item-leading">
|
|
{{svg "octicon-info" 32}}
|
|
</div>
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-title">
|
|
Very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong title
|
|
</div>
|
|
<div class="flex-item-body">
|
|
consists of leading/main/trailing part
|
|
</div>
|
|
<div class="flex-item-body">
|
|
Very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong content
|
|
</div>
|
|
</div>
|
|
<div class="flex-item-trailing">
|
|
<button class="ui tiny red button">
|
|
{{svg "octicon-warning" 12}} CJK文本测试 <!-- single CJK text test, it shouldn't be horizontal -->
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex-item">
|
|
<div class="flex-item-leading">
|
|
{{svg "octicon-repo" 32}}
|
|
</div>
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-header">
|
|
<div class="flex-item-title">
|
|
<a class="text primary" href="{{$.Link}}">
|
|
gitea-org / gitea
|
|
</a>
|
|
<span data-tooltip-content="{{$.locale.Tr "repo.fork"}}">{{svg "octicon-repo-forked"}}</span>
|
|
</div>
|
|
<div class="flex-item-trailing">
|
|
<a class="muted" href="{{$.Link}}">
|
|
<span class="flex-text-inline"><i class="color-icon gt-mr-3" style="background-color: aqua"></i>Go</span>
|
|
</a>
|
|
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-star" 16}}45000</a>
|
|
<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-git-branch" 16}}1234</a>
|
|
</div>
|
|
</div>
|
|
<div class="flex-item-body">
|
|
when inside header, the trailing part will wrap below the title
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|