File modules/cms/ui/themes/default/style/openrat-dropdown.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 .or-dropdown { 2 display: none; 3 overflow: hidden; 4 z-index: 4; 5 min-width: 17em; 6 position: absolute; 7 padding: 0.5em 0; 8 font-style: normal; 9 font-weight: normal; 10 text-decoration: none; 11 } 12 .or-dropdown--is-open { 13 display: block; 14 } 15 .or-dropdown--on-right { 16 right: 1em; 17 } 18 @media only screen and (max-width: 55rem) { 19 .or-dropdown-key { 20 display: none; 21 } 22 } 23 .or-dropdown-entry { 24 padding: 0; 25 } 26 .or-dropdown-entry > .or-link { 27 display: flex; 28 align-items: center; 29 padding: 0 0.5em; 30 } 31 .or-dropdown-entry > .or-link * { 32 margin: 0.25em; 33 } 34 .or-dropdown-entry > .or-link .or-dropdown-text { 35 flex: 1; 36 /* Consumes all available space */ 37 } 38 .or-dropdown-entry--inactive { 39 opacity: 0.5; 40 } 41 > .or-dropdown-text { 42 display: block; 43 margin: 1em; 44 } 45 .or-dropdown-divide { 46 height: 1px; 47 width: 100%; 48 margin-top: 0.5em; 49 margin-bottom: 0.5em; 50 } 51
Downloadmodules/cms/ui/themes/default/style/openrat-dropdown.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.