You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

107 line
2.4 KiB

  1. /*! CoreMedia Studio - Styles for Preview */
  2. // ### FRAGMENT PREVIEW ###
  3. /* preview image with details (description and copyright) */
  4. .cm-image-preview {
  5. &__picture-box {
  6. width: 100%;
  7. /* at least show the spinning icon of the background (32x32) */
  8. min-width: 35px;
  9. min-height: 35px;
  10. max-width: $cm-preview-width;
  11. }
  12. &__picture {
  13. position: static;
  14. }
  15. &__copyright {
  16. font-size: 0.8rem;
  17. padding-right: 0.5rem;
  18. line-height: 1.2rem;
  19. color: #fff;
  20. text-align: right;
  21. &:before {
  22. content: "(\00a9";
  23. margin-right: 5px;
  24. }
  25. :after {
  26. content: ")";
  27. }
  28. }
  29. &__infos {
  30. background-color: #80BF8a;
  31. }
  32. &__description {
  33. padding: 0.5rem;
  34. p {
  35. margin: 0;
  36. }
  37. }
  38. }
  39. .cm-page-preview {
  40. background: none transparent; /* same color as Studio frame */
  41. margin: 0;
  42. padding: 0;
  43. height: auto; /* reset 100% height by themes to avoid scrollbars caused by margin of items */
  44. }
  45. /* fragmented item */
  46. .cm-preview-item {
  47. margin-top: 2px;
  48. }
  49. /* studio look like buttons in fragment preview */
  50. .cm-page-preview .toggle-button {
  51. background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNJREFUeNpiYBgFgxPIA/F7IP6PBb+HyhME+lgMeQ8VJxogG0KyZmRD7pOreRTQCwAEGABc9hDJtWMwowAAAABJRU5ErkJggg==') 6px center no-repeat #C8C6C6;
  52. }
  53. .cm-page-preview .toggle-button.toggle-off {
  54. background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADFJREFUeNpiYBgF+IA8pQa8B2J9Sgz4T6kh/yk15D8Svj9gLqAoDCiOBfkRkt4BAgwACLgQycQ7s9wAAAAASUVORK5CYII=');
  55. }
  56. .cm-page-preview .toggle-container-off {
  57. display: none;
  58. }
  59. /* headline */
  60. .cm-preview-item__headline {
  61. display: block;
  62. padding: 4px 6px 4px 24px;
  63. font: 700 12px/32px 'Roboto', 'Segoe UI', 'Trebuchet MS', 'Lucida Grande', 'Helvetica', sans-serif;
  64. color: #000;
  65. cursor: pointer;
  66. text-decoration: none;
  67. }
  68. .cm-preview-item__headline:hover,
  69. .cm-preview-item__headline:focus,
  70. .cm-preview-item__headline:active {
  71. color: #000;
  72. text-decoration: none;
  73. }
  74. /* content */
  75. .cm-preview-item__container {
  76. display: block;
  77. padding: 12px;
  78. }
  79. .cm-preview-content {
  80. padding: 15px;
  81. background-color: #ffffff;
  82. transition: box-shadow 0.25s;
  83. box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  84. .content {
  85. }
  86. }