image_styles_admin.css 933 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. table#image-styles {
  2. table-layout: fixed;
  3. }
  4. #image-styles th.style-name {
  5. width: 20%;
  6. }
  7. #image-styles th.effects {
  8. width: 30%;
  9. }
  10. #image-styles th.settings {
  11. width: 15%;
  12. }
  13. #image-styles td {
  14. vertical-align: top;
  15. }
  16. #image-styles .expand.inner {
  17. background: transparent url(/misc/menu-collapsed.png) left 0.6em no-repeat;
  18. margin-left: -12px;
  19. padding-left: 12px;
  20. }
  21. #image-styles .expanded.expand.inner {
  22. background: transparent url(/misc/menu-expanded.png) left 0.6em no-repeat;
  23. }
  24. #image-styles .description {
  25. cursor: pointer;
  26. }
  27. #image-styles .description .inner {
  28. overflow: hidden; /* truncates descriptions if too long */
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. }
  32. #image-styles .description .expanded.inner {
  33. overflow: visible;
  34. white-space: normal;
  35. }
  36. #image-styles .description .expanded .details {
  37. display: block;
  38. }
  39. #image-styles .description .expanded .separator {
  40. display: none;
  41. }