1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/modules/content_warning/css/jqModal.css
Bharat Mediratta ea015d7ded Cleanup:
- Fix up url generation so that they don't expect gallery3 to be installed at the DocumentRoot
- Move the theme page_top HTML into a view
- Make the JS/CSS work with the combined JS/CSS APIs
2011-12-27 01:18:04 -08:00

65 lines
1.5 KiB
CSS

/* jqModal base Styling courtesy of;
Brice Burgess <bhb@iceburg.net> */
/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
the Window's z-index value will be set to 3000 by default (via jqModal.js). */
.jqmWindow {
display: none;
position: fixed;
top: 5%;
left: 5%;
/*margin-left: -500px;*/
width: 90%;
height: 90%;
background-color: #EEE;
color: #333;
border: 1px solid black;
padding: 12px;
}
.jqmOverlay {
background-color: #000;
}
/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {
position:absolute;
top:0;
left:0;
z-index:-1;
width: expression(this.parentNode.offsetWidth+'px');
height: expression(this.parentNode.offsetHeight+'px');
}
/* Fixed posistioning emulation for IE6
Star selector used to hide definition from browsers other than IE6
For valid CSS, use a conditional include instead */
* html .jqmWindow {
position: absolute;
top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
#cw_buttons_container {
width: 100%;
height: 200px;
text-align:center;
}
.cw_buttons {
margin:10px;
padding:10px;
width: 300px;
font-weight: bold;
}
#cw_ko {
margin-left: 100px;
border:1px solid #FF0000;
float: left;
}
#cw_ok {
margin-right: 100px;
border:1px solid #00FF00;
float:right;
}