ie.css

/* IE renders monospace font too big. */
code,
pre,
kbd {
  font-size: 1em;
}

/* Node Add/Edit Page Layout */

.layout-node-form {
  overflow: hidden;
}

.overlay .node-actions {
  margin-bottom: 1em;
}

.node-main-content,
.node-actions {
  padding: 0.5em 1.5em 0 1.5em;
}

/**
 * 1. Applies the Position Is Everything technique for equal-height columns;
 *    @see http://www.positioniseverything.net/articles/onetruelayout/equalheight
 * 2. When animating the height of elements within this region, prevent
 *    vertical jittering of elements further down in the document flow.
 */
.node-advanced-settings {
  margin-bottom: -999em;
  padding-bottom: 999em;
  display: table;

  -moz-box-shadow: inset 0.1em -1em 0.6em rgba(100, 100, 100, .1);
  -webkit-box-shadow: inset 0.1em -1em 0.6em rgba(100, 100, 100, .1);
  box-shadow: inset 0.1em -1em 0.6em rgba(100, 100, 100, .1);
  border: none;
}

File

drupal/core/themes/seven/ie.css
View source
  1. /* IE renders monospace font too big. */
  2. code,
  3. pre,
  4. kbd {
  5. font-size: 1em;
  6. }
  7. /* Node Add/Edit Page Layout */
  8. .layout-node-form {
  9. overflow: hidden;
  10. }
  11. .overlay .node-actions {
  12. margin-bottom: 1em;
  13. }
  14. .node-main-content,
  15. .node-actions {
  16. padding: 0.5em 1.5em 0 1.5em;
  17. }
  18. /**
  19. * 1. Applies the Position Is Everything technique for equal-height columns;
  20. * @see http://www.positioniseverything.net/articles/onetruelayout/equalheight
  21. * 2. When animating the height of elements within this region, prevent
  22. * vertical jittering of elements further down in the document flow.
  23. */
  24. .node-advanced-settings {
  25. margin-bottom: -999em;
  26. padding-bottom: 999em;
  27. display: table;
  28. -moz-box-shadow: inset 0.1em -1em 0.6em rgba(100, 100, 100, .1);
  29. -webkit-box-shadow: inset 0.1em -1em 0.6em rgba(100, 100, 100, .1);
  30. box-shadow: inset 0.1em -1em 0.6em rgba(100, 100, 100, .1);
  31. border: none;
  32. }