Index: openacs-4/packages/acs-templating/www/resources/modal.css =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/www/resources/Attic/modal.css,v diff -u -N --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/acs-templating/www/resources/modal.css 2 Aug 2023 14:56:40 -0000 1.1.2.1 @@ -0,0 +1,31 @@ +/* + + ACS Modal CSS + + See also: https://www.w3schools.com/howto/howto_css_modals.asp + +*/ + +/* The Modal (background) */ +.acs-modal { + display: none; /* Hidden by default */ + position: fixed; /* Stay in place */ + z-index: 2000; /* Sit on top */ + padding-top: 3em; /* Location of the box */ + left: 0; + top: 0; + width: 100%; /* Full width */ + height: 100%; /* Full height */ + overflow: auto; /* Enable scroll if needed */ + background-color: rgb(0,0,0); /* Fallback color */ + background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ +} + +/* Modal Content */ +.acs-modal-content { + background-color: #fefefe; + margin: auto; + padding: 2em; + border: 1px solid #888; + width: 80%; +}