Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
silverwind
f4b92578b4
Add tailwindcss (#29357)
This will get tailwindcss working on a basic level. It provides only the
utility classes, e.g. no tailwind base which we don't need because we
have our own CSS reset. Without the base, we also do not have their CSS
variables so a small amount of features do not work and I removed the
generated classes for them.
***Note for future developers: This currently uses a `tw-` prefix, so we
use it like `tw-p-3`.***
<details>
<summary>Currently added CSS, all false-positives</summary>
```
.\!visible{
visibility: visible !important
}
.visible{
visibility: visible
}
.invisible{
visibility: hidden
}
.collapse{
visibility: collapse
}
.static{
position: static
}
.\!fixed{
position: fixed !important
}
.absolute{
position: absolute
}
.relative{
position: relative
}
.sticky{
position: sticky
}
.left-10{
left: 2.5rem
}
.isolate{
isolation: isolate
}
.float-right{
float: right
}
.float-left{
float: left
}
.mr-2{
margin-right: 0.5rem
}
.mr-3{
margin-right: 0.75rem
}
.\!block{
display: block !important
}
.block{
display: block
}
.inline-block{
display: inline-block
}
.inline{
display: inline
}
.flex{
display: flex
}
.inline-flex{
display: inline-flex
}
.\!table{
display: table !important
}
.inline-table{
display: inline-table
}
.table-caption{
display: table-caption
}
.table-cell{
display: table-cell
}
.table-column{
display: table-column
}
.table-column-group{
display: table-column-group
}
.table-footer-group{
display: table-footer-group
}
.table-header-group{
display: table-header-group
}
.table-row-group{
display: table-row-group
}
.table-row{
display: table-row
}
.flow-root{
display: flow-root
}
.inline-grid{
display: inline-grid
}
.contents{
display: contents
}
.list-item{
display: list-item
}
.\!hidden{
display: none !important
}
.hidden{
display: none
}
.flex-shrink{
flex-shrink: 1
}
.shrink{
flex-shrink: 1
}
.flex-grow{
flex-grow: 1
}
.grow{
flex-grow: 1
}
.border-collapse{
border-collapse: collapse
}
.select-all{
user-select: all
}
.resize{
resize: both
}
.flex-wrap{
flex-wrap: wrap
}
.overflow-visible{
overflow: visible
}
.rounded{
border-radius: 0.25rem
}
.border{
border-width: 1px
}
.text-justify{
text-align: justify
}
.uppercase{
text-transform: uppercase
}
.lowercase{
text-transform: lowercase
}
.capitalize{
text-transform: capitalize
}
.italic{
font-style: italic
}
.text-red{
color: var(--color-red)
}
.text-shadow{
color: var(--color-shadow)
}
.underline{
text-decoration-line: underline
}
.overline{
text-decoration-line: overline
}
.line-through{
text-decoration-line: line-through
}
.outline{
outline-style: solid
}
.ease-in{
transition-timing-function: cubic-bezier(0.4, 0, 1, 1)
}
.ease-in-out{
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}
.ease-out{
transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}
```
</details>
---------
Co-authored-by: Giteabot <teabot@gitea.io>
|
9 months ago |
.. |
admin
|
Refactor Safe modifier (#29392)
|
9 months ago |
api/packages/pypi
|
…
|
|
base
|
Remove RenderEmojiPlain from template helper (#29375)
|
9 months ago |
code
|
Remove incorrect and unnecessary Escape from templates (#29394)
|
9 months ago |
custom
|
…
|
|
devtest
|
Add tailwindcss (#29357)
|
9 months ago |
explore
|
Remove incorrect and unnecessary Escape from templates (#29394)
|
9 months ago |
mail
|
Remove incorrect and unnecessary Escape from templates (#29394)
|
9 months ago |
org
|
Refactor Safe modifier (#29392)
|
9 months ago |
package
|
Remove incorrect and unnecessary Escape from templates (#29394)
|
9 months ago |
projects
|
Use full width for project boards (#28225)
|
1 year ago |
repo
|
Add missing space (#29393)
|
9 months ago |
shared
|
Remove incorrect and unnecessary Escape from templates (#29394)
|
9 months ago |
status
|
Remove unnecessary "Str2html" modifier from templates (#29319)
|
9 months ago |
swagger
|
Add API to get merged PR of a commit (#29243)
|
9 months ago |
user
|
Remove incorrect and unnecessary Escape from templates (#29394)
|
9 months ago |
webhook
|
Change webhook-type in create-view (#29114)
|
9 months ago |
home.tmpl
|
Remove unnecessary "Str2html" modifier from templates (#29319)
|
9 months ago |
install.tmpl
|
Remove unnecessary "Safe" modifier from templates (#29318)
|
9 months ago |
post-install.tmpl
|
Always use `ctx.Locale.Tr` inside templates (#27231)
|
1 year ago |