1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00
This commit is contained in:
Unknwon
2014-09-13 22:12:11 -04:00
parent a5926f2689
commit b9560374cd
9 changed files with 24 additions and 12 deletions

View File

@@ -525,6 +525,9 @@ input[readonly]:focus {
.form-align .field {
margin-bottom: 1em;
}
label.text-left {
text-align: left;
}
label.req:after {
content: "*";
color: #d9453d;

View File

@@ -176,7 +176,6 @@ input[readonly] {
margin-bottom: 1em;
}
}
.form-align {
label,
.form-label {
@@ -189,10 +188,14 @@ input[readonly] {
margin-bottom: 1em;
}
}
label.req {
&:after {
content: "*";
color: @labelRedColor;
}
label {
&.text-left {
text-align: left;
}
&.req {
&:after {
content: "*";
color: @labelRedColor;
}
}
}