Add static placeholder in blog permalink field

This commit is contained in:
leosw
2021-08-19 18:24:52 +02:00
parent da27362fd5
commit dfa4dccd6c
3 changed files with 19 additions and 4 deletions

View File

@@ -230,9 +230,20 @@ form.form label {
float: right;
font-size: 17px;
}
#permalink {
width: calc(100% - 20px);
#permalink_container {
position: relative;
}
#permalink {
width: calc(100% - 225px);
padding-left: 215px;
}
#permalink_label {
position: absolute;
top: 10px;
left: 10px;
opacity: 0.8;
}
form.form input[type=submit] {
width: auto;

View File

@@ -25,7 +25,8 @@ a:hover {
text-decoration: none;
}
input {
input, textarea {
font-family: "Fira Sans", "Open Sans",Helvetica,Arial,sans-serif;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}