style.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. vbox, hbox {
  2. margin-top: 8px;
  3. margin-left: 8px;
  4. display: block;
  5. }
  6. .file {
  7. /* Copy of input properties that apply of forms.css below this */
  8. color: inherit;
  9. font: -moz-field;
  10. text-rendering: optimizeLegibility;
  11. line-height: normal !important;
  12. text-align: start;
  13. text-transform: none;
  14. word-spacing: normal;
  15. letter-spacing: normal;
  16. text-indent: 0;
  17. -moz-user-select: text;
  18. text-shadow: none;
  19. /* Copy of the type=file part of forms.css below this */
  20. display: inline; /* this one isn't really a copy... */
  21. white-space: nowrap;
  22. overflow:hidden;
  23. -moz-appearance: none;
  24. -moz-binding: none;
  25. cursor: default;
  26. border: none;
  27. background-color: transparent;
  28. padding: 0;
  29. }
  30. .file > label {
  31. display: inline-block;
  32. /* Copy from forms.css below this */
  33. min-width: 12em;
  34. padding-inline-start: 5px;
  35. color: inherit;
  36. font-size: inherit;
  37. letter-spacing: inherit;
  38. direction: ltr !important;
  39. }
  40. .file[dir='rtl'] > label {
  41. /* Copy from forms.css below this */
  42. padding-inline-start: 0px;
  43. padding-right: 5px;
  44. text-align: right;
  45. }
  46. .file > button {
  47. /* Copy from forms.css below this */
  48. height: inherit;
  49. font-size: inherit;
  50. letter-spacing: inherit;
  51. cursor: inherit;
  52. }