field_ui.admin.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * @file
  3. * Stylesheet for the Field UI module.
  4. */
  5. /* 'Manage fields' and 'Manage display' overviews */
  6. .field-ui-overview .region-title td {
  7. font-weight: bold;
  8. }
  9. .field-ui-overview .region-message td {
  10. font-style: italic;
  11. }
  12. /* 'Manage form display' and 'Manage display' overview */
  13. .field-ui-overview .field-plugin-summary-cell {
  14. line-height: 1em;
  15. }
  16. .field-ui-overview .field-plugin-summary {
  17. float: left; /* LTR */
  18. font-size: 0.9em;
  19. }
  20. [dir="rtl"] .field-ui-overview .field-plugin-summary {
  21. float: right;
  22. }
  23. .field-ui-overview .field-plugin-summary-cell .warning {
  24. display: block;
  25. float: left; /* LTR */
  26. margin-right: 0.5em;
  27. }
  28. [dir="rtl"] .field-ui-overview .field-plugin-summary-cell .warning {
  29. float: right;
  30. }
  31. .field-ui-overview .field-plugin-settings-edit-wrapper {
  32. float: right; /* LTR */
  33. }
  34. [dir="rtl"] .field-ui-overview .field-plugin-settings-edit-wrapper {
  35. float: left;
  36. }
  37. .field-ui-overview .field-plugin-settings-edit {
  38. float: right; /* LTR */
  39. }
  40. [dir="rtl"] .field-ui-overview .field-plugin-settings-edit {
  41. float: left;
  42. }
  43. .field-ui-overview .field-plugin-settings-editing td {
  44. vertical-align: top;
  45. }
  46. .field-ui-overview .field-plugin-settings-editing .field-plugin-type {
  47. display: none;
  48. }
  49. .field-ui-overview .field-plugin-settings-edit-form .plugin-name {
  50. font-weight: bold;
  51. }