Blame view

sources/apps/contacts/css/jquery.Jcrop.css 1.68 KB
03e52840d   Kload   Init
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
  /* jquery.Jcrop.css
     The code contained in this file is free software under MIT License
     Copyright (c)2008-2011 Tapmodo Interactive LLC
  */
  
  /*
    The outer-most container in a typical Jcrop instance
    If you are having difficulty with formatting related to styles
    on a parent element, place any fixes here or in a like selector
  */
  .jcrop-holder {
    direction: ltr;
    text-align: left;
  }
  
  .jcrop-vline, .jcrop-hline {
  	background: white url('%appswebroot%/contacts/img/Jcrop.gif') top left repeat;
  	font-size: 0px;
  	position: absolute;
  }
  
  .jcrop-vline {
    height: 100%;
    width: 1px !important;
  }
  
  .jcrop-hline {
    width: 100%;
    height: 1px !important;
  }
  
  .jcrop-vline.right {
    right: 0px;
  }
  
  .jcrop-hline.bottom {
    bottom: 0px;
  }
  
  .jcrop-handle {
  	background-color: #333;
  	border: 1px #eee solid;
  	font-size: 1px;
  }
  
  .jcrop-tracker {
    height: 100%;
    -webkit-tap-highlight-color: transparent; /* "turn off" link highlight */
    -webkit-touch-callout: none;              /* disable callout, image save panel */
    -webkit-user-select: none;                /* disable cut copy paste */
    width: 100%;
  }
  
  /*
  */
  
  .jcrop-light .jcrop-vline, .jcrop-light .jcrop-hline {
  	background: white;
    filter: Alpha(opacity=70) !important;
    opacity: .70 !important;
  }
  
  .jcrop-light .jcrop-handle {
  	background-color: black;
  	border-color: white;
    border-radius: 3px;
  	-moz-border-radius: 3px;
  	-webkit-border-radius: 3px;
  }
  
  .jcrop-dark .jcrop-vline, .jcrop-dark .jcrop-hline {
  	background: black;
    filter: Alpha(opacity=70) !important;
    opacity: 0.70 !important;
  }
  
  .jcrop-dark .jcrop-handle {
  	background-color: white;
  	border-color: black;
    border-radius: 3px;
  	-moz-border-radius: 3px;
  	-webkit-border-radius: 3px;
  }