leppaelae / Campus-of-Vaasa-room-locator

Application that enables users to find rooms around the Vaasa Campus
0 stars 0 forks source link

Room Search case sensitivity - javascript #2

Closed TurboDemo closed 7 years ago

TurboDemo commented 7 years ago

Size of letters doesn't matter - javascript

hexxal commented 7 years ago

Input has been forced capitalized without placeholder being affected (CSS)

input { text-transform: uppercase; } ::-webkit-input-placeholder { /* WebKit browsers */ text-transform: none; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ text-transform: none; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ text-transform: none; } :-ms-input-placeholder { /* Internet Explorer 10+ */ text-transform: none; }