source: trunk/plog-admin/css/lightbox.css @ 590

Revision 590, 663 bytes checked in by sidtheduck, 19 months ago (diff)

Large commit based on work with Kim Parsell and myself
Should be ready for a release candidate after this commit.
Items worked on:

  • Large overhaul for code cleanup and syntax standardization
  • Security fixes for folder permissions on all server environments (now all directories should be set to 0755 and all files set to 0644)
  • Works compeletely with safe_mode restrictions using FTP commands
  • Beginnings of plugin usage (no architecture yet, but start of code standardization and addon code)
  • Fixing comments and adding security
  • More error messages
  • Minor fixes to upgrade and install process
  • Should fix tickets #188, #206, #194, #195, #197, #201, #203, #204, #89, #174, #200
  • Many other minor edits that I can't remember now (hopefully future commits will be much smaller and deal with individual issues, enhancements, or bugs)
Line 
1#lightbox {
2        background-color: #eee;
3        padding: 10px;
4        border-right: 2px solid #666;
5        border-bottom: 2px solid #666;
6}
7
8#lightboxDetails {
9        font-size: 0.8em;
10        padding-top: 0.4em;
11}
12
13#lightboxCaption {
14        float: left;
15}
16
17#keyboardMsg {
18        float: right;
19}
20
21#closeButton {
22        top: 5px;
23        right: 5px;
24}
25
26#lightbox img {
27        border: none;
28        clear: both;
29}
30
31#overlay img {
32        border: none;
33}
34
35#overlay {
36        background-image: url("../images/overlay.png");
37}
38
39* html #overlay {
40        background-color: #333;
41        back\ground-color: transparent;
42        background-image: url("blank.gif");
43        filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/overlay.png", sizingMethod="scale");
44}
Note: See TracBrowser for help on using the repository browser.