2023-08-22 07:57:02 +03:00
{{ template "base/head" . }}
<link rel="stylesheet" href=" {{ AssetUrlPrefix }} /css/devtest.css?v= {{ AssetVersion }} ">
2023-08-30 02:13:30 +03:00
<div class="page-content devtest">
<div class="ui container">
2023-09-01 00:28:45 +03:00
<h1>Flex List (standalone)</h1>
<div class="divider"></div>
2023-08-22 07:57:02 +03:00
<div class="flex-list">
<div class="flex-item">
<div class="flex-item-leading">
{{ svg "octicon-info" 3 2 }}
</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">
2024-03-26 14:19:15 +03:00
{{ svg "octicon-alert" 1 4 }} CJK文本测试
2023-08-22 07:57:02 +03:00
</button>
2023-09-19 01:05:31 +03:00
<button class="ui tiny primary button">
2023-08-22 07:57:02 +03:00
{{ svg "octicon-info" 1 4 }} Button
</button>
2023-09-19 01:05:31 +03:00
<button class="ui tiny primary button">
2023-08-22 07:57:02 +03:00
Button with long text
</button>
</div>
</div>
<div class="flex-item">
<div class="flex-item-leading">
{{ svg "octicon-info" 3 2 }}
</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
2023-08-23 07:23:30 +03:00
<span class="text truncate">Truncate very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong content</span>
2023-08-22 07:57:02 +03:00
</div>
</div>
<div class="flex-item-trailing">
<button class="ui tiny red button">
2024-03-26 14:19:15 +03:00
{{ svg "octicon-alert" 1 2 }} CJK文本测试 <!-- single CJK text test, it shouldn't be horizontal -->
2023-08-22 07:57:02 +03:00
</button>
</div>
</div>
<div class="flex-item">
<div class="flex-item-leading">
{{ svg "octicon-repo" 3 2 }}
</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>
2023-09-25 11:56:50 +03:00
<span data-tooltip-content=" {{ ctx .Locale .Tr "repo.fork" }} "> {{ svg "octicon-repo-forked" }} </span>
2023-08-22 07:57:02 +03:00
</div>
<div class="flex-item-trailing">
<a class="muted" href=" {{ $ .Link }} ">
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 19:42:49 +03:00
<span class="flex-text-inline"><i class="color-icon tw-mr-2 tw-bg-blue"></i>Go</span>
2023-08-22 07:57:02 +03:00
</a>
<a class="text grey flex-text-inline" href=" {{ $ .Link }} "> {{ svg "octicon-star" 1 6 }} 45000</a>
<a class="text grey flex-text-inline" href=" {{ $ .Link }} "> {{ svg "octicon-git-branch" 1 6 }} 1234</a>
</div>
</div>
<div class="flex-item-body">
when inside header, the trailing part will wrap below the title
</div>
</div>
</div>
</div>
2023-08-30 02:13:30 +03:00
2023-09-01 00:28:45 +03:00
<div class="divider"></div>
2023-08-30 02:13:30 +03:00
<h1>Flex List (with "ui segment")</h1>
<div class="ui attached segment">
<div class="flex-list">
<div class="flex-item">item 1</div>
<div class="flex-item">item 2</div>
</div>
</div>
<div class="ui attached segment">
<h1>Flex List (with "ui segment")</h1>
<div class="flex-list">
<div class="flex-item">item 1</div>
<div class="flex-item">item 2</div>
</div>
</div>
2023-09-01 00:28:45 +03:00
<h1>If parent provides the padding/margin space:</h1>
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 19:42:49 +03:00
<div class="tw-border tw-border-secondary tw-py-4">
2023-09-01 00:28:45 +03:00
<div class="flex-list flex-space-fitted">
<div class="flex-item">item 1 (no padding top)</div>
<div class="flex-item">item 2 (no padding bottom)</div>
</div>
</div>
2023-08-22 07:57:02 +03:00
</div>
</div>
{{ template "base/footer" . }}