annotate core/themes/bartik/css/components/node-preview.css @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
rev   line source
Chris@0 1 .node-preview-container {
Chris@0 2 position: fixed;
Chris@0 3 z-index: 499;
Chris@0 4 width: 100%;
Chris@0 5 padding: 5px 10px;
Chris@5 6 background: #d1e8f5;
Chris@5 7 background-image: -webkit-linear-gradient(top, #d1e8f5, #d3e8f4);
Chris@5 8 background-image: linear-gradient(to bottom, #d1e8f5, #d3e8f4);
Chris@5 9 box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3333);
Chris@5 10 font-family: Arial, sans-serif;
Chris@0 11 }
Chris@0 12 .node-preview-backlink {
Chris@5 13 display: inline-block;
Chris@5 14 margin: 5px 10px 5px 0; /* LTR */
Chris@5 15 padding: 4px 1em 4px 0.6em; /* LTR */
Chris@5 16 color: #fff;
Chris@5 17 border: 1px solid #0048c8;
Chris@5 18 border-radius: 0.4em;
Chris@0 19 background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, -webkit-linear-gradient(top, #419ff1, #1076d5);
Chris@0 20 background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, linear-gradient(to bottom, #419ff1, #1076d5); /* LTR */
Chris@0 21 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
Chris@5 22 text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
Chris@0 23 font-size: 0.9em;
Chris@0 24 line-height: normal;
Chris@0 25 }
Chris@0 26 [dir="rtl"] .node-preview-backlink {
Chris@5 27 float: right;
Chris@5 28 margin: 5px 0 5px 10px;
Chris@5 29 padding: 4px 0.6em 4px 1em;
Chris@0 30 background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, -webkit-linear-gradient(top, #419ff1, #1076d5);
Chris@0 31 background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, linear-gradient(to bottom, #419ff1, #1076d5);
Chris@0 32 }
Chris@0 33 .node-preview-backlink:focus,
Chris@0 34 .node-preview-backlink:hover {
Chris@5 35 text-decoration: none;
Chris@5 36 color: #fff;
Chris@5 37 border: 1px solid #0048c8;
Chris@0 38 background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, -webkit-linear-gradient(top, #59abf3, #2a90ef);
Chris@0 39 background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, linear-gradient(to bottom, #59abf3, #2a90ef); /* LTR */
Chris@0 40 }
Chris@0 41 [dir="rtl"] .node-preview-backlink:focus,
Chris@0 42 [dir="rtl"] .node-preview-backlink:hover {
Chris@0 43 background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, -webkit-linear-gradient(top, #59abf3, #2a90ef);
Chris@0 44 background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, linear-gradient(to bottom, #59abf3, #2a90ef);
Chris@0 45 }
Chris@0 46 .node-preview-backlink:active {
Chris@5 47 border: 1px solid #0048c8;
Chris@0 48 background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, -webkit-linear-gradient(top, #0e69be, #2a93ef);
Chris@0 49 background: url(../../../../misc/icons/000000/chevron-left.svg) left no-repeat, linear-gradient(to bottom, #0e69be, #2a93ef); /* LTR */
Chris@0 50 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
Chris@0 51 }
Chris@0 52 [dir="rtl"] .node-preview-backlink:active {
Chris@0 53 background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, -webkit-linear-gradient(top, #0e69be, #2a93ef);
Chris@0 54 background: url(../../../../misc/icons/000000/chevron-right.svg) right no-repeat, linear-gradient(to bottom, #0e69be, #2a93ef);
Chris@0 55 }
Chris@0 56 .node-preview-backlink::before {
Chris@5 57 display: inline-block;
Chris@0 58 width: 10px;
Chris@5 59 content: "";
Chris@0 60 }
Chris@0 61 [dir="rtl"] .node-preview-backlink::after {
Chris@5 62 display: inline-block;
Chris@0 63 width: 10px;
Chris@5 64 content: "";
Chris@0 65 }
Chris@0 66 .node-preview-container .form-item-view-mode {
Chris@0 67 display: inline-block;
Chris@0 68 margin: 5px 0;
Chris@0 69 }
Chris@0 70 [dir="rtl"] .node-preview-container .form-item-view-mode {
Chris@0 71 margin-right: 0;
Chris@0 72 }