image.admin.css

/**
 * Image style configuration pages.
 */
.image-style-new,
.image-style-new div {
  display: inline;
}
.image-style-preview .preview-image-wrapper {
  float: left;
  padding-bottom: 2em;
  text-align: center;
  top: 50%;
  width: 48%;
}
.image-style-preview .preview-image {
  margin: auto;
  position: relative;
}
.image-style-preview .preview-image .width {
  border: 1px solid #666;
  border-top: none;
  bottom: -6px;
  height: 2px;
  left: -1px;
  position: absolute;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.image-style-preview .preview-image .width span {
  position: relative;
  top: 4px;
}
.image-style-preview .preview-image .height {
  border: 1px solid #666;
  border-left: none;
  position: absolute;
  right: -6px;
  top: -1px;
  width: 2px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.image-style-preview .preview-image .height span {
  height: 2em;
  left: 10px;
  margin-top: -1em;
  position: absolute;
  top: 50%;
}

/**
 * Image anchor element.
 */
.image-anchor {
  width: auto;
}
.image-anchor .even,
.image-anchor .odd {
  background: none;
}
.image-anchor td {
  border: 1px solid #ccc;
}

File

drupal/core/modules/image/image.admin.css
View source
  1. /**
  2. * Image style configuration pages.
  3. */
  4. .image-style-new,
  5. .image-style-new div {
  6. display: inline;
  7. }
  8. .image-style-preview .preview-image-wrapper {
  9. float: left;
  10. padding-bottom: 2em;
  11. text-align: center;
  12. top: 50%;
  13. width: 48%;
  14. }
  15. .image-style-preview .preview-image {
  16. margin: auto;
  17. position: relative;
  18. }
  19. .image-style-preview .preview-image .width {
  20. border: 1px solid #666;
  21. border-top: none;
  22. bottom: -6px;
  23. height: 2px;
  24. left: -1px;
  25. position: absolute;
  26. -webkit-box-sizing: content-box;
  27. -moz-box-sizing: content-box;
  28. box-sizing: content-box;
  29. }
  30. .image-style-preview .preview-image .width span {
  31. position: relative;
  32. top: 4px;
  33. }
  34. .image-style-preview .preview-image .height {
  35. border: 1px solid #666;
  36. border-left: none;
  37. position: absolute;
  38. right: -6px;
  39. top: -1px;
  40. width: 2px;
  41. -webkit-box-sizing: content-box;
  42. -moz-box-sizing: content-box;
  43. box-sizing: content-box;
  44. }
  45. .image-style-preview .preview-image .height span {
  46. height: 2em;
  47. left: 10px;
  48. margin-top: -1em;
  49. position: absolute;
  50. top: 50%;
  51. }
  52. /**
  53. * Image anchor element.
  54. */
  55. .image-anchor {
  56. width: auto;
  57. }
  58. .image-anchor .even,
  59. .image-anchor .odd {
  60. background: none;
  61. }
  62. .image-anchor td {
  63. border: 1px solid #ccc;
  64. }