1
0
mirror of https://github.com/flarum/core.git synced 2025-08-11 02:44:04 +02:00

Simplify PrerequisiteInterface

I went with a return type of Collection, because it is easier to call
methods such as isEmpty() directly on those objects.
This commit is contained in:
Franz Liedke
2018-11-13 22:23:52 +01:00
parent de6001f4cf
commit 89e018a4f0
11 changed files with 98 additions and 97 deletions

View File

@@ -129,30 +129,30 @@
animation-name: fadeIn;
}
.Errors {
.Problems {
margin-top: 50px;
}
.Errors .Error:first-child {
.Problems .Problem:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.Errors .Error:last-child {
.Problems .Problem:last-child {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.Error {
.Problem {
background: #EDF2F7;
margin: 0 0 1px;
padding: 20px 25px;
text-align: left;
}
.Error-message {
.Problem-message {
font-size: 16px;
color: #3C5675;
font-weight: normal;
margin: 0;
}
.Error-detail {
.Problem-detail {
font-size: 13px;
margin: 5px 0 0;
}