menu_editor.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. form#menu-editor-overview-form th {
  2. white-space:nowrap; /* we don't want linebreaks in the title cells */
  3. }
  4. form#menu-editor-overview-form td {
  5. vertical-align:middle;
  6. }
  7. form#menu-editor-overview-form td.description {
  8. width:3em; /* shrink to smallest possible width */
  9. }
  10. form#menu-editor-overview-form td.checkbox {
  11. width:1em; /* shrink to smallest possible width */
  12. white-space:nowrap;
  13. }
  14. form#menu-editor-overview-form td.title-edit .form-item,
  15. form#menu-editor-overview-form td.path-edit .form-item,
  16. form#menu-editor-overview-form td.description .form-item {
  17. padding-right:4px; /* compensate the 100% width */
  18. position:relative;
  19. zoom:1; /* hasLayout hack for IE6, IE7 */
  20. }
  21. form#menu-editor-overview-form td.title-edit input,
  22. form#menu-editor-overview-form td.path-edit input,
  23. form#menu-editor-overview-form td.description input {
  24. border-width:1px;
  25. margin-top:0;
  26. margin-bottom:0;
  27. width:100%;
  28. }
  29. form#menu-editor-overview-form td.description textarea {
  30. border-width:1px;
  31. margin-top:0;
  32. margin-bottom:0;
  33. width:100%;
  34. height:1em;
  35. resize:none; /* prevent chrome and safari textarea resizing */
  36. }
  37. form#menu-editor-overview-form .focus-description-column td.description {
  38. width:250px;
  39. }
  40. form#menu-editor-overview-form .focus-description-column tr.focus td.description div.form-item {
  41. height:auto !important;
  42. zoom:1; /* hasLayout hack for IE6, IE7 */
  43. }
  44. form#menu-editor-overview-form .focus-description-column tr.focus td.description textarea {
  45. height:60px !important;
  46. }