You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

textfield.scss 976B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @mixin runo-textfield($primaryStyleName : v-textfield) {
  2. .#{$primaryStyleName},
  3. .v-textarea {
  4. background: #fff url(img/bg.png) repeat-x;
  5. border: 1px solid #b6b6b6;
  6. border-top-color: #9d9d9d;
  7. border-bottom-color: #d6d6d6;
  8. border-right-color: #d6d6d6;
  9. margin: 0;
  10. line-height: 14px;
  11. }
  12. input.#{$primaryStyleName},
  13. input[type=text].#{$primaryStyleName},
  14. textarea.v-textarea {
  15. font-size: 12px;
  16. height: 22px;
  17. padding: 2px;
  18. }
  19. textarea.v-textarea {
  20. height: auto;
  21. }
  22. .#{$primaryStyleName}-focus,
  23. .v-textarea-focus {
  24. border-color: #5daee8;
  25. }
  26. input.#{$primaryStyleName}-prompt,
  27. textarea.v-textarea-prompt {
  28. color: #999;
  29. font-style: normal;
  30. }
  31. .v-richtextarea {
  32. border: 1px solid #b6b6b6;
  33. }
  34. .v-richtextarea .gwt-RichTextArea {
  35. background: #fff url(img/bg.png) repeat-x;
  36. }
  37. /* Small style */
  38. input.#{$primaryStyleName}-small,
  39. input[type=text].#{$primaryStyleName}-small,
  40. textarea.v-textarea-small {
  41. font-size: 11px;
  42. height: 18px;
  43. line-height: 12px;
  44. padding: 1px 2px;
  45. }
  46. }