File modules/cms/ui/themes/default/style/openrat-notices.css

Last commit: Sun Oct 13 13:17:32 2024 +0200	Jan Dankert	New Minifier for CSS and JS: Leave JS Linebreaks as they are (for better debugging); Exploded CSS files (instead of a combined one), LESS is necessary but should be avoided in the future.
1 /* Usage to this variable is safe to be removed */ 2 .or-notice { 3 border-style: solid; 4 border-width: 1px 1px 1px 1em; 5 border-color: #000000; 6 padding: 1.1em; 7 position: relative; 8 width: 90%; 9 margin: 1em; 10 border-radius: 0.2em; 11 -moz-border-radius: 0.2em; 12 -webkit-border-radius: 0.2em; 13 -khtml-border-radius: 0.2em; 14 } 15 @media only screen and (max-width: 55rem) { 16 .or-notice { 17 border-radius: 0; 18 -moz-border-radius: 0; 19 -webkit-border-radius: 0; 20 -khtml-border-radius: 0; 21 border-style: solid; 22 border-width: 1px 0 0 1em; 23 margin: 0; 24 font-size: 0.75em; 25 width: 100%; 26 } 27 } 28 .or-notice-container { 29 display: block; 30 position: fixed; 31 bottom: 0; 32 right: 0; 33 padding: 0; 34 width: 50%; 35 z-index: 5; 36 } 37 @media only screen and (max-width: 55rem) { 38 .or-notice-container { 39 right: 0; 40 bottom: 0; 41 width: 100%; 42 padding: 0; 43 } 44 } 45 .or-notice-toolbar { 46 float: right; 47 margin: 0 0.2em; 48 font-size: 2em; 49 color: gray; 50 cursor: pointer; 51 } 52 .or-notice:hover .or-notice-toolbar { 53 color: black; 54 } 55 .or-notice div.text { 56 font-weight: bold; 57 } 58 .or-notice-text { 59 font-size: 1.1em; 60 } 61 .or-notice:after { 62 /* 63 content: ''; 64 position: absolute; 65 right: 0; 66 top: 50%; 67 width: 0; 68 height: 0; 69 border: 1em solid transparent; 70 border-right: 0; 71 margin-top: -1em; 72 margin-right: -1em;*/ 73 } 74 .or-notice-log { 75 font-family: 'Source Code Pro', Monospace, Monospaced, Courier; 76 height: 15em; 77 overflow-y: scroll; 78 } 79
Download modules/cms/ui/themes/default/style/openrat-notices.css
History Sun, 13 Oct 2024 13:17:32 +0200 Jan Dankert New Minifier for CSS and JS: Leave JS Linebreaks as they are (for better debugging); Exploded CSS files (instead of a combined one), LESS is necessary but should be avoided in the future.