File modules/cms/ui/themes/default/style/openrat-navigation.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 /* N a v i g a t i o n */ 2 .or-navigation--is-open { 3 display: flex; 4 flex-direction: row; 5 } 6 .or-navigation-filler { 7 height: 100%; 8 width: 12em; 9 opacity: 0.8; 10 filter: blur(10em); 11 } 12 @media only screen and (max-width: 55rem) { 13 .or-navigation-filler { 14 width: 0; 15 } 16 } 17 .or-navigation-filler-icon { 18 opacity: 1; 19 font-size: 3em; 20 position: absolute; 21 right: 20px; 22 top: 20px; 23 } 24 .or-navigation-content { 25 flex: 1; 26 height: 100%; 27 z-index: 3; 28 } 29 .or-navigation-content .or-view { 30 height: 100%; 31 } 32 .or-navtree-node { 33 margin: 0; 34 padding: 0.1em 0; 35 line-height: 18px; 36 font-weight: normal; 37 white-space: nowrap; 38 } 39 @media only screen and (max-width: 55rem) { 40 .or-navtree-node { 41 padding: 0.2em 0; 42 } 43 } 44 .or-navtree-node--selected { 45 font-weight: bold; 46 } 47 .or-navtree-node--selected > div > a { 48 font-weight: bold; 49 } 50 .or-navtree-node-control { 51 width: 18px; 52 min-width: 18px; 53 height: 18px; 54 float: left; 55 cursor: pointer; 56 } 57 .or-navtree-list { 58 list-style-type: none; 59 margin: 0; 60 padding: 0; 61 } 62 .or-navtree-list ul { 63 margin-left: 18px; 64 } 65
Downloadmodules/cms/ui/themes/default/style/openrat-navigation.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. Fri, 21 Aug 2020 00:22:13 +0200 Jan Dankert Refactoring: Collect all frontend compiler scripts in update.php. Compiling of CSS and JS was extracted to a new TemplateCompiler. JS and CSS is now collected in a new openrat.[min.][js|css]. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.