File modules/cms/ui/themes/default/style/openrat-dialog.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 /* 2 OpenRat Content Management System 3 Copyright (C) 2002-2010 Jan Dankert 4 5 This program is free software; you can redistribute it and/or 6 modify it under the terms of the GNU General Public License 7 as published by the Free Software Foundation; either version 2 8 of the License, or (at your option) any later version. 9 10 This program is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details. 14 15 You should have received a copy of the GNU General Public License 16 along with this program; if not, write to the Free Software 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 18 */ 19 /* 20 Basis-Style for Openrat. 21 */ 22 /* Usage to this variable is safe to be removed */ 23 .or-dialog { 24 position: absolute; 25 z-index: 2; 26 top: 0; 27 left: 0; 28 width: 0; 29 opacity: 0; 30 visibility: hidden; 31 overflow: hidden; 32 display: flex; 33 height: 100%; 34 flex-direction: row; 35 } 36 .or-dialog--is-open { 37 visibility: visible; 38 overflow-y: auto; 39 opacity: 1; 40 width: 100%; 41 } 42 .or-dialog--is-open .or-dialog-filler { 43 width: 15%; 44 } 45 @media only screen and (max-width: 55rem) { 46 .or-dialog--is-open .or-dialog-filler { 47 width: 0; 48 } 49 } 50 .or-dialog-filler { 51 height: 100%; 52 width: 100%; 53 opacity: 0.6; 54 filter: blur(10em); 55 } 56 .or-dialog-filler-icon { 57 opacity: 1; 58 font-size: 3em; 59 position: absolute; 60 right: 20px; 61 top: 20px; 62 } 63 .or-dialog-content { 64 flex: 1; 65 overflow: auto; 66 height: 100%; 67 z-index: 3; 68 } 69 .or-dialog-content .or-view { 70 height: 100%; 71 } 72
Download modules/cms/ui/themes/default/style/openrat-dialog.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.