Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/css/core/core.css
| Show First 20 Lines • Show All 156 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| .audible .visual-only { | .audible .visual-only { | ||||
| position: absolute !important; | position: absolute !important; | ||||
| background: #990066; | background: #990066; | ||||
| opacity: 0.25; | opacity: 0.25; | ||||
| } | } | ||||
| .print-only { | |||||
| display: none; | |||||
| } | |||||
| /* NOTE: These rules currently only work when applied to elements which | |||||
| actually want "display: inline". There is no "display: auto". If there | |||||
| is a future need to mix inline and block print elements, using | |||||
| "display: initial" may be a reasonable approach. */ | |||||
| .printable .print-only { | |||||
| display: inline; | |||||
| } | |||||
| .printable .screen-only { | |||||
| display: none; | |||||
| } | |||||
| @media print { | |||||
| .screen-only { | |||||
| display: none; | |||||
| } | |||||
| .print-only { | |||||
| display: inline; | |||||
| } | |||||
| } | |||||
| .routing-bar { | .routing-bar { | ||||
| position: fixed; | position: fixed; | ||||
| top: 0; | top: 0; | ||||
| width: 100%; | width: 100%; | ||||
| height: 2px; | height: 2px; | ||||
| background: {$darkbluetext}; | background: {$darkbluetext}; | ||||
| z-index: 80; | z-index: 80; | ||||
| box-shadow: 0 2px 1px rgba(0, 128, 255, 0.25); | box-shadow: 0 2px 1px rgba(0, 128, 255, 0.25); | ||||
| Show All 22 Lines | |||||