source: branches/version-2_11-dev/html/js/jquery.facebox/facebox.css @ 20917

Revision 20917, 1.1 KB checked in by nanasess, 13 years ago (diff)

#706 (拡大画像の表示の jQuery 化)

  • IE7 で画像が枠からはみ出すのを修正
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
Line 
1#facebox {
2  position: absolute;
3  top: 0;
4  left: 0;
5  z-index: 100;
6  text-align: left;
7}
8
9
10#facebox .popup{
11  position:relative;
12  border:3px solid rgba(0,0,0,0);
13  -webkit-border-radius:5px;
14  -moz-border-radius:5px;
15  border-radius:5px;
16  -webkit-box-shadow:0 0 18px rgba(0,0,0,0.4);
17  -moz-box-shadow:0 0 18px rgba(0,0,0,0.4);
18  box-shadow:0 0 18px rgba(0,0,0,0.4);
19}
20
21#facebox .content {
22  display:table;
23  padding: 10px;
24  background: #fff;
25  -webkit-border-radius:4px;
26  -moz-border-radius:4px;
27  border-radius:4px;
28}
29
30#facebox .content > p:first-child{
31  margin-top:0;
32}
33#facebox .content > p:last-child{
34  margin-bottom:0;
35}
36
37#facebox .close{
38  position:absolute;
39  top:5px;
40  right:5px;
41  padding:2px;
42  background:#fff;
43}
44#facebox .close img{
45  opacity:0.3;
46}
47#facebox .close:hover img{
48  opacity:1.0;
49}
50
51#facebox .loading {
52  text-align: center;
53}
54
55#facebox .image {
56  text-align: center;
57}
58
59#facebox img {
60  border: 0;
61  margin: 0;
62}
63
64#facebox_overlay {
65  position: fixed;
66  top: 0px;
67  left: 0px;
68  height:100%;
69  width:100%;
70}
71
72.facebox_hide {
73  z-index:-100;
74}
75
76.facebox_overlayBG {
77  background-color: #000;
78  z-index: 99;
79}
Note: See TracBrowser for help on using the repository browser.