forked from open-lms-open-source/moodle-mod_lightboxgallery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
136 lines (112 loc) · 3.08 KB
/
styles.css
File metadata and controls
136 lines (112 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.lightbox-gallery {
}
.lightbox-gallery .lightbox-gallery-image-container {
float: left;
}
.lightbox-gallery .lightbox-gallery-image-frame {
background-color:#fff;
border: 1px solid #ddd;
display: block;
margin: 10px auto;
text-align: center;
width: 172px;
-moz-box-shadow: 3px 3px 4px #777;
-webkit-box-shadow: 3px 3px 4px #777;
box-shadow: 3px 3px 4px #777;
/* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#777777')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#777777');
}
.lightbox-gallery .lightbox-gallery-image-container .lightbox-gallery-image-frame:hover {
text-decoration:none;
-moz-box-shadow: 3px 3px 4px #333;
-webkit-box-shadow: 3px 3px 4px #333;
box-shadow: 3px 3px 4px #333;
/* For IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#333333')";
/* For IE 5.5 - 7 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#333333');
}
.lightbox-gallery .lightbox-gallery-image-thumbnail {
display: block;
margin: 5px 5px 2px;
vertical-align: middle;
width: 95%;
}
.lightbox-gallery .lightbox-gallery-image-caption,
.lightbox-gallery .lightbox-gallery-image-extinfo {
color: #696969;
font-family: 'Verdana','Lucida Grande',sans-serif;
font-size: 11px;
margin-bottom: 3px;
text-decoration:none;
}
.lightbox-gallery .lightbox-gallery-image-caption {
font-weight: bold;
word-wrap: break-word;
}
.lightbox-gallery .lightbox-gallery-image-caption.top {
margin-bottom: -3px;
}
#mod-lightboxgallery-view .generalbox,
#mod-lightboxgallery-search .generalbox {
overflow: auto;
}
#mod-lightboxgallery-view .thumb,
#mod-lightboxgallery-search .thumb {
position: relative;
z-index: 5;
border: 1px solid #ccc;
background-color: #fff;
float: left;
text-align: center;
margin: 2px;
padding: 3px;
}
#mod-lightboxgallery-view .thumb .image,
#mod-lightboxgallery-search .thumb .image {
position: relative;
z-index: 10;
border: 1px solid #ccc;
background-color: #000;
height: 105px;
width: 120px;
margin-bottom: 2px;
}
#mod-lightboxgallery-view .thumb .overlay img,
#mod-lightboxgallery-search .thumb .overlay img {
border: 0;
}
#mod-lightboxgallery-view .lightbox-edit-select {
margin: 4px;
}
#mod-lightboxgallery-imageedit .generaltable img,
#mod-lightboxgallery-imageadd .generaltable img {
border: 1px solid #ddd;
}
#mod-lightboxgallery-imageedit .menubar {
margin-top: 14px;
text-align: center;
}
#mod-lightboxgallery-imageedit .tag-head {
border-bottom: 1px solid #ddd;
background-color: #f9fafa;
display: block;
padding: 2px 0;
margin: 3px 1px;
}
#mod-lightboxgallery-imageedit .tag-exists {
color: #aaa;
text-decoration: line-through;
}
#mod-lightboxgallery-imageedit .tag-exists input {
display: none;
}
#mod-lightboxgallery-imageadd #messages {
margin: 0 6px 0 12px;
padding: 0;
}
#mod-lightboxgallery-search .generalbox {
margin-bottom: 10px;
}