annotate themes/isobartik/css/components/node-preview.css @ 19:fa3358dc1485 tip

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