Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

textfield.scss 356B

12345678910111213141516171819
  1. @mixin liferay-textfield {
  2. &.v-app input[type="text"],
  3. &.v-app input[type="password"],
  4. &.v-app input[type="reset"],
  5. &.v-app textarea ,
  6. .v-window input[type="text"],
  7. .v-window input[type="password"],
  8. .v-window input[type="reset"],
  9. .v-window textarea {
  10. padding: 5px 1px;
  11. }
  12. input.v-textfield-prompt,
  13. textarea.v-textarea-prompt {
  14. font-style: normal;
  15. }
  16. }