mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
Merge pull request #2437 from benjiwheeler/placeholder-text-go-away
Placeholder text go away
This commit is contained in:
commit
964459fb17
1 changed files with 32 additions and 0 deletions
|
@ -482,8 +482,40 @@ $stage-width: 480px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::-webkit-input-placeholder { /* Chrome <=56, Safari < 10 */
|
||||||
|
transition: opacity .25s;
|
||||||
|
opacity: 1;
|
||||||
|
-webkit-transition: opacity .25s;
|
||||||
|
}
|
||||||
|
:-moz-placeholder { /* FF 4-18 */
|
||||||
|
transition: opacity .25s;
|
||||||
|
opacity: 1;
|
||||||
|
-moz-transition: opacity .25s;
|
||||||
|
}
|
||||||
|
::-moz-placeholder { /* FF 19-51 */
|
||||||
|
transition: opacity .25s;
|
||||||
|
opacity: 1;
|
||||||
|
-moz-transition: opacity .25s;
|
||||||
|
}
|
||||||
|
:-ms-input-placeholder { /* IE 10+ */
|
||||||
|
transition: opacity .25s;
|
||||||
|
opacity: 1;
|
||||||
|
-ms-transition: opacity .25s;
|
||||||
|
}
|
||||||
|
::placeholder { /* Modern Browsers */
|
||||||
|
transition: opacity .25s;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
*:focus::-webkit-input-placeholder { opacity: 0; } /* Chrome <=56, Safari < 10 */
|
||||||
|
*:focus:-moz-placeholder { opacity: 0; } /* FF 4-18 */
|
||||||
|
*:focus::-moz-placeholder { opacity: 0; } /* FF 19-50 */
|
||||||
|
*:focus:-ms-input-placeholder { opacity: 0; } /* IE 10+ */
|
||||||
|
*:focus::placeholder { opacity: 0; } /* Modern Browsers */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.comments-header {
|
.comments-header {
|
||||||
padding: 0 0 1rem 0;
|
padding: 0 0 1rem 0;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
Loading…
Reference in a new issue