Blame view

backend/makest/js/plugins/justified-gallery/jquery.justifiedgallery.css 1.78 KB
d1f8bd40   Alexey Boroda   first commit
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
  /* 
  Justified Gallery
  Version: 2.1
  Author: Miro Mannino
  Author URI: http://miromannino.it
  
  Copyright 2012 Miro Mannino (miro.mannino@gmail.com)
  
  This file is part of Justified Gallery.
  
  This work is licensed under the Creative Commons Attribution 3.0 Unported License. 
  
  To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ 
  or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
  */
  
  html { overflow-y: scroll; } /*to prevent the loop when the scrollbar appear and disappear*/
  
  .justifiedGallery { width: 100%; margin-bottom: 10px; }
  .justifiedGallery .jg-image {
      position: absolute;
      display: inline-block;
      vertical-align: top;
      margin-left: 0px;
  }
  .justifiedGallery .jg-image img {
      border: none;
      margin: 0;
      padding: 0;
      display: none;
  }
  .justifiedGallery .jg-image a { text-decoration: none; }
  .justifiedGallery .jg-image-label {
      white-space: normal;
      font: normal 12px arial;
      background: #000;
      color: #fff;
      position: absolute;
      left: 0;
      right: 0;
      padding: 5px 5px 10px 8px;
      text-align: left;
      opacity: 0;
      filter:alpha(opacity=0); /* IE8 or Earlier */
  }
  .justifiedGallery .jg-loading-img{
      margin: auto;
      width: 50px;
      height: 50px;
      background:url(loading.gif) no-repeat center center;
  }
  .justifiedGallery .jg-loading{
      margin: auto;
      width: 50px;
      height: 50px;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
  }
  .justifiedGallery .jg-row {
      position: relative;
      white-space: nowrap;    
      overflow:hidden;
      margin-bottom: 4px;
  }
  
  .justifiedGallery .jg-error {
      font-size: 12px; 
      border: 1px solid red; 
      background-color: #faa; 
      margin: 10px 0px 10px 0px; 
      padding: 5px 0px 5px 5px;
  }