rsanchez
2015-01-28 da889d489da5d7fa8c71d9f21f24b1dc2e29d8e1
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
body {
   padding-top: 50px;
   padding-bottom: 20px;
}
@media (min-width: 1400px) {
   .container {
       width: 1350px !important;
   }
}
@media (min-width: 1600px) {
   .container {
       width: 1550px !important;
   }
}
a {
   cursor: default !important;
}
.animate-show {
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
  opacity:1;
}
 
.animate-show.ng-hide-add,
.animate-show.ng-hide-remove {
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
  display: block !important;
}
 
.animate-show.ng-hide {
  opacity: 0;
}
input.ng-invalid, textarea.ng-invalid {
   border: solid 1px red;
}
input.ng-dirty.ng-valid, textarea.ng-dirty.ng-valid {
   border: solid 1px green;
}
.alert.inline-alert {
   padding-top: 5px;
   padding-bottom: 5px;
   margin-bottom: 5px;
}
.chosen-choices {
   min-width: 100% !important;
   height: 34px !important;
   padding: 3px 6px;
   font-size: 14px;
   vertical-align: middle;
   border: 1px solid #ccc;
   border-radius: 4px;
}
.chosen-container {
   min-width: 100% !important;
   border: none;
   padding: 0px;
}
.chosen-container-multi li.search-field input[type="text"] {
   min-height: 25px !important;
   height: 25px !important;
}
.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 999px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    background: red;
    cursor: inherit;
    display: block;
}