mirror of https://github.com/go-gitea/gitea.git
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.
62 lines
978 B
62 lines
978 B
.milestone-list { |
|
list-style: none; |
|
} |
|
|
|
.milestone-card { |
|
width: 100%; |
|
padding-top: 10px; |
|
padding-bottom: 10px; |
|
} |
|
|
|
.milestone-card + .milestone-card { |
|
border-top: 1px solid var(--color-secondary); |
|
} |
|
|
|
.milestone-card .render-content { |
|
padding-top: 10px; |
|
} |
|
|
|
.milestone-header progress { |
|
width: 200px; |
|
height: 16px; |
|
} |
|
|
|
.milestone-header { |
|
display: flex; |
|
align-items: center; |
|
margin: 0; |
|
flex-wrap: wrap; |
|
justify-content: space-between; |
|
} |
|
|
|
.milestone-toolbar { |
|
padding-top: 5px; |
|
display: flex; |
|
flex-wrap: wrap; |
|
gap: 8px; |
|
justify-content: space-between; |
|
} |
|
|
|
.milestone-toolbar .group { |
|
color: var(--color-text-light-2); |
|
display: flex; |
|
flex-wrap: wrap; |
|
gap: 8px; |
|
} |
|
|
|
.milestone-toolbar .group > a { |
|
font-size: 15px; |
|
color: var(--color-text-light-2); |
|
} |
|
|
|
.milestone-toolbar .group > a:hover { |
|
color: var(--color-text); |
|
} |
|
|
|
@media (max-width: 767.98px) { |
|
.milestone-card { |
|
display: flex; |
|
flex-direction: column; |
|
gap: 8px; |
|
} |
|
}
|
|
|