Disable forced lowercase for placeholder

This commit is contained in:
SinTan1729 2022-11-09 23:44:30 -06:00
parent e88cc1f738
commit 68ae439f5b
2 changed files with 12 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

@ -25,10 +25,6 @@
width: 100%;
}
input {
width: 65%;
}
table tr td div {
max-height: 75px;
line-height: 25px;
@ -37,10 +33,6 @@
overflow: auto;
}
form input[name="shortUrl"] {
text-transform: lowercase;
}
td[name="deleteBtn"] {
text-align: center;
}
@ -51,6 +43,18 @@
cursor: pointer;
background-color: transparent;
}
input {
width: 65%;
}
form input[name="shortUrl"] {
text-transform: lowercase;
}
form input[name="shortUrl"]::placeholder {
text-transform: none;
}
</style>
</head>