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="ui small secondary filter menu tw-items-center tw-mx-0">
2024-03-22 16:45:10 +03:00
<form class="ui form ignore-dirty tw-flex-1">
2024-03-15 02:24:59 +03:00
{{ if .PageIsExploreUsers }}
{{ template "shared/search/combo" dict "Value" .Keyword "Placeholder" ( ctx .Locale .Tr "search.user_kind" ) }}
{{ else }}
{{ template "shared/search/combo" dict "Value" .Keyword "Placeholder" ( ctx .Locale .Tr "search.org_kind" ) }}
{{ end }}
2023-06-28 15:10:36 +03:00
</form>
<!-- Sort -->
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="ui small dropdown type jump item tw-mr-0">
2016-12-24 17:42:26 +03:00
<span class="text">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.issues.filter_sort" }}
2016-12-24 17:42:26 +03:00
</span>
2023-09-21 18:54:26 +03:00
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2016-12-24 17:42:26 +03:00
<div class="menu">
2024-03-20 08:56:42 +03:00
<a class=" {{ if eq .SortType "newest" }} active {{ end }} item" href="?sort=newest&q= {{ $ .Keyword }} "> {{ ctx .Locale .Tr "repo.issues.filter_sort.latest" }} </a>
<a class=" {{ if eq .SortType "oldest" }} active {{ end }} item" href="?sort=oldest&q= {{ $ .Keyword }} "> {{ ctx .Locale .Tr "repo.issues.filter_sort.oldest" }} </a>
<a class=" {{ if eq .SortType "alphabetically" }} active {{ end }} item" href="?sort=alphabetically&q= {{ $ .Keyword }} "> {{ ctx .Locale .Tr "repo.issues.label.filter_sort.alphabetically" }} </a>
<a class=" {{ if eq .SortType "reversealphabetically" }} active {{ end }} item" href="?sort=reversealphabetically&q= {{ $ .Keyword }} "> {{ ctx .Locale .Tr "repo.issues.label.filter_sort.reverse_alphabetically" }} </a>
2016-12-24 17:42:26 +03:00
</div>
</div>
</div>
2023-06-29 15:24:22 +03:00
<div class="divider"></div>