field_ui.admin.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. align-items: center;
  34. }
  35. [dir="rtl"] .field-ui-overview .field-plugin-settings-edit-wrapper {
  36. float: left;
  37. }
  38. .field-ui-overview .field-plugin-settings-edit {
  39. float: right; /* LTR */
  40. }
  41. [dir="rtl"] .field-ui-overview .field-plugin-settings-edit {
  42. float: left;
  43. }
  44. .field-ui-overview .field-plugin-settings-editing td {
  45. vertical-align: top;
  46. }
  47. .field-ui-overview .field-plugin-settings-editing .field-plugin-type {
  48. display: none;
  49. }
  50. .field-ui-overview .field-plugin-settings-edit-form .plugin-name {
  51. font-weight: bold;
  52. }