pyk 0.2.3 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
File without changes
@@ -1,5 +1,7 @@
1
1
  //= require jquery
2
2
  //= require jquery_ujs
3
+ //= require_tree ./lib/
4
+ //= require_tree ./app/
3
5
  //= require highcharts/highstock
4
- //= require_tree ./vendor/
5
- //= require_tree ./app/
6
+ //= require chosen-jquery
7
+ //= require tinymce-jquery
File without changes
@@ -9,7 +9,7 @@
9
9
  .gridster ul{list-style: none; height: auto;}
10
10
 
11
11
  .gridster ul li{border: 1px #F0F0F0 solid;}
12
- .gridster ul li:hover{background: #F0F0F0;}
12
+ .gridster ul li:hover{background: #8FC3FF;}
13
13
 
14
14
  .gridster > * {
15
15
  margin: 0 auto;
@@ -1,8 +1,6 @@
1
- @import "vendor/bootstrap.min";
2
- @import "vendor/jquery.gridster";
3
- @import "vendor/chardinjs";
4
- @import "vendor/dc";
5
- @import "app/helpers";
6
- @import "app/sprites";
7
- @import "app/user_card";
8
- @import "app/pyk_master";
1
+ /*
2
+ *= require_self
3
+ *= require_tree ./lib/
4
+ *= require chosen
5
+ *= require_tree ./app/
6
+ */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pyk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pykih Software LLP
@@ -115,28 +115,23 @@ files:
115
115
  - app/assets/images/sprites/file-icons-16-px.png
116
116
  - app/assets/images/sprites/signup.png
117
117
  - app/assets/images/sprites/so.png
118
- - app/assets/javascripts/app/pyk_master.js
119
- - app/assets/javascripts/app/pyk_master_prateek.js
120
- - app/assets/javascripts/app/pykih.gridster.js
118
+ - app/assets/javascripts/lib/bootstrap.min.js
119
+ - app/assets/javascripts/lib/crossfilter.js
120
+ - app/assets/javascripts/lib/d3.js
121
+ - app/assets/javascripts/lib/dc.js
122
+ - app/assets/javascripts/lib/jquery.gridster.js
123
+ - app/assets/javascripts/lib/jquery.sparkline.min.js
124
+ - app/assets/javascripts/lib/markermanager.js
125
+ - app/assets/javascripts/lib/tinycon.min.js
126
+ - app/assets/javascripts/lib/topojson.js
121
127
  - app/assets/javascripts/pyk.js
122
- - app/assets/javascripts/vendor/bootstrap.min.js
123
- - app/assets/javascripts/vendor/chardinjs.min.js
124
- - app/assets/javascripts/vendor/crossfilter.js
125
- - app/assets/javascripts/vendor/d3.js
126
- - app/assets/javascripts/vendor/dc.js
127
- - app/assets/javascripts/vendor/jquery.gridster.js
128
- - app/assets/javascripts/vendor/jquery.sparkline.min.js
129
- - app/assets/javascripts/vendor/tinycon.min.js
130
- - app/assets/javascripts/vendor/topojson.js
131
128
  - app/assets/stylesheets/app/helpers.css.scss
132
- - app/assets/stylesheets/app/pyk_master.css
133
129
  - app/assets/stylesheets/app/sprites.css.scss
134
130
  - app/assets/stylesheets/app/user_card.css.scss
131
+ - app/assets/stylesheets/lib/bootstrap.min.css
132
+ - app/assets/stylesheets/lib/dc.css
133
+ - app/assets/stylesheets/lib/jquery.gridster.css
135
134
  - app/assets/stylesheets/pyk.css.scss
136
- - app/assets/stylesheets/vendor/bootstrap.min.css
137
- - app/assets/stylesheets/vendor/chardinjs.css
138
- - app/assets/stylesheets/vendor/dc.css
139
- - app/assets/stylesheets/vendor/jquery.gridster.css
140
135
  - lib/pyk.rb
141
136
  - lib/pyk/address.rb
142
137
  - lib/pyk/api.rb
@@ -1,49 +0,0 @@
1
- $(document).ready(function(){
2
-
3
- //textarea increase / decrease
4
- $(".text_area_animate").focus(function() {
5
-
6
- var val_length = $(this).val().length;
7
- var size = $(this).attr("expand-height");
8
-
9
- if (val_length <= 0 ) {
10
- $(this).animate({"height": size}, "fast" );
11
- }
12
- }
13
- );
14
-
15
- $(".text_area_animate").focusout(function() {
16
-
17
- var val_length = $(this).val().length;
18
- var row = $(this).attr("row"); // 1 row = 16px
19
- var size = $(this).attr("expand-height");
20
-
21
- if (val_length <= 0 ) {
22
-
23
- $(this).animate({"height": "30px" }, "fast" );
24
- }
25
-
26
- }
27
- );
28
-
29
- //form hint
30
-
31
- $(".form-control").focus(function() {
32
- var text_hint = $(this).attr("hint");
33
- if (text_hint.length > 0) {
34
- var text_id = $(this).attr("id");
35
- var text_hint = $(this).attr("hint");
36
- $("#" + text_id).after("<span class='input-error-hint'>"+ text_hint+ "</span>");
37
- $(".input-error-hint").css("font-size", "11px").css("color", "grey");
38
- }
39
- });
40
-
41
- Tinycon.setOptions({
42
- width: 7,
43
- height: 9,
44
- font: '10px arial',
45
- colour: '#ffffff',
46
- background: '#549A2F',
47
- fallback: true
48
- });
49
- });
@@ -1,79 +0,0 @@
1
- $(document).ready(function(){
2
-
3
- // scroll to top
4
- $("#scroll-topper").hide();
5
- $("#scroll-topper").click(function(){
6
- $("html, body").animate({ scrollTop: 0 }, 600);
7
- });
8
-
9
- // header collapser
10
- $("#collapse-header").click(function(){
11
- $("#main-nav").toggle();
12
- $(".breadcrumb-holder").toggle();
13
- $("#collapse-header span").toggleClass("glyphicon-chevron-up");
14
- $("#collapse-header span").toggleClass("glyphicon-chevron-down");
15
- if($("#collapse-header span").hasClass("glyphicon-chevron-down")){
16
- $("body").animate({"padding-top": "50px"});
17
- }else{
18
- $("body").animate({"padding-top": "124px"});
19
- }
20
- });
21
-
22
- // If the toolbar is not present then there should't be extra
23
- // padding on the body top
24
- $("body").css("padding-top", $("#main-header").height());
25
-
26
-
27
- // load all the sparklines
28
- $(".sparkline-holder").each(function(i, e){
29
- var data = $(e).attr("data-csv").split(",");
30
- var graph = $(e).attr("data-graph");
31
- var color = $(e).attr("data-color");
32
-
33
- if(color === "false"){
34
- $(e).sparkline(data, {
35
- type: graph,
36
- barColor: '#2d2d2d',
37
- negBarColor: '#2d2d2d',
38
- zeroColor: '#2d2d2d',
39
-
40
- lineColor: '#2d2d2d',
41
- fillColor: '#eee',
42
- spotColor: '#2d2d2d',
43
- minSpotColor: '#2d2d2d',
44
- maxSpotColor: '#2d2d2d',
45
- highlightSpotColor: '#2d2d2d',
46
- highlightLineColor: '#2d2d2d',
47
-
48
- sliceColors: ["#000","#222","#444","#666","#888","#aaa"],
49
-
50
- tooltipOffsetX: 10,
51
- tooltipOffsetY: 10,
52
- });
53
- }else{
54
- $(e).sparkline(data, {
55
- type: graph,
56
- tooltipOffsetX: 10,
57
- tooltipOffsetY: 10,
58
- });
59
- }
60
- });
61
-
62
-
63
- // remove flashed after a while
64
- var removeFlashes = setTimeout(function(){
65
- $(".alert-success").fadeOut();
66
- $(".alert-info").fadeOut();
67
- $(".alert-warning").fadeOut();
68
- }, 3000);
69
- });
70
-
71
-
72
- // show scroller
73
- $(window).scroll(function(){
74
- if ($(this).scrollTop() > 100) {
75
- $("#scroll-topper").fadeIn();
76
- } else {
77
- $("#scroll-topper").fadeOut();
78
- }
79
- });
@@ -1,139 +0,0 @@
1
- function pykih_gridster(base_url, account_slug, auth_token) {
2
- var url = base_url + "/api/v1/accounts/" + account_slug + "/grid/get.json?access_token=" + auth_token;
3
- $.getJSON(url,
4
- function (data) {
5
- if (data != null) {
6
- $.each(data, function (i, value) {
7
-
8
- // var localData = JSON.parse(localStorage.getItem('position'));
9
- var id_name, col, row, size_x, size_y;
10
-
11
- id_name = "#";
12
- id_name = id_name + value.id;
13
- //console.log(id_name);
14
-
15
- if (id_name == '#li1') {
16
- $('#li1').attr('data-row', value.row);
17
- $('#li1').attr('data-col', value.col);
18
- $('#li1').attr('data-sizex', value.size_x);
19
- $('#li1').attr('data-sizey', value.size_y);
20
-
21
- } else if (id_name == '#li2') {
22
- $('#li2').attr('data-row', value.row);
23
- $('#li2').attr('data-col', value.col);
24
- $('#li2').attr('data-sizex', value.size_x);
25
- $('#li2').attr('data-sizey', value.size_y);
26
-
27
- } else if (id_name == '#li3') {
28
- $('#li3').attr('data-row', value.row);
29
- $('#li3').attr('data-col', value.col);
30
- $('#li3').attr('data-sizex', value.size_x);
31
- $('#li3').attr('data-sizey', value.size_y);
32
-
33
- } else if (id_name == '#li4') {
34
- $('#li4').attr('data-row', value.row);
35
- $('#li4').attr('data-col', value.col);
36
- $('#li4').attr('data-sizex', value.size_x);
37
- $('#li4').attr('data-sizey', value.size_y);
38
-
39
- } else if (id_name == '#li5') {
40
- $('#li5').attr('data-row', value.row);
41
- $('#li5').attr('data-col', value.col);
42
- $('#li5').attr('data-sizex', value.size_x);
43
- $('#li5').attr('data-sizey', value.size_y);
44
-
45
- } else if (id_name == '#li6') {
46
- $('#li6').attr('data-row', value.row);
47
- $('#li6').attr('data-col', value.col);
48
- $('#li6').attr('data-sizex', value.size_x);
49
- $('#li6').attr('data-sizey', value.size_y);
50
-
51
- } else if (id_name == '#li7') {
52
- $('#li7').attr('data-row', value.row);
53
- $('#li7').attr('data-col', value.col);
54
- $('#li7').attr('data-sizex', value.size_x);
55
- $('#li7').attr('data-sizey', value.size_y);
56
-
57
- } else if (id_name == '#li8') {
58
- $('#li8').attr('data-row', value.row);
59
- $('#li8').attr('data-col', value.col);
60
- $('#li8').attr('data-sizex', value.size_x);
61
- $('#li8').attr('data-sizey', value.size_y);
62
-
63
- } else if (id_name == '#li9') {
64
- $('#li9').attr('data-row', value.row);
65
- $('#li9').attr('data-col', value.col);
66
- $('#li9').attr('data-sizex', value.size_x);
67
- $('#li9').attr('data-sizey', value.size_y);
68
-
69
- } else if (id_name == '#li10') {
70
- $('#li10').attr('data-row', value.row);
71
- $('#li10').attr('data-col', value.col);
72
- $('#li10').attr('data-sizex', value.size_x);
73
- $('#li10').attr('data-sizey', value.size_y);
74
-
75
- } else if (id_name == '#li11') {
76
- $('#li11').attr('data-row', value.row);
77
- $('#li11').attr('data-col', value.col);
78
- $('#li11').attr('data-sizex', value.size_x);
79
- $('#li11').attr('data-sizey', value.size_y);
80
-
81
- } else if (id_name == '#li12') {
82
- $('#li12').attr('data-row', value.row);
83
- $('#li12').attr('data-col', value.col);
84
- $('#li12').attr('data-sizex', value.size_x);
85
- $('#li12').attr('data-sizey', value.size_y);
86
-
87
- }
88
-
89
-
90
- });
91
- } else {
92
- console.log('Daily Health Grid Error: No data returned by the server');
93
- }
94
- });
95
-
96
-
97
-
98
- var grid_canvas = $(".gridster > ul").gridster({
99
- widget_margins: [5, 5],
100
- widget_base_dimensions: [180, 180],
101
-
102
- serialize_params: function ($w, wgd) {
103
- return {
104
- id: $($w).attr('id'),
105
- col: wgd.col,
106
- row: wgd.row,
107
- size_x: wgd.size_x,
108
- size_y: wgd.size_y,
109
-
110
- };
111
- },
112
- draggable: {
113
-
114
- stop: function (event, ui) {
115
-
116
- var positions = JSON.stringify(this.serialize());
117
- //localStorage.setItem('position', positions);
118
-
119
- var url_save = base_url + "/api/v1/accounts/" + account_slug + "/grid/save.json?access_token=" + auth_token;
120
- $.post(url_save, {
121
- "positions": positions
122
- },
123
- function (data) {
124
- //var resultado = jQuery.parseJSON(data);
125
- //console.log(resultado);
126
-
127
-
128
- // var localData = JSON.parse(localStorage.getItem('position'));
129
- // $.each(localData, function(key, value){
130
- // console.log(key + ' = ' + value.id);
131
- // });
132
- });
133
-
134
- }
135
- }
136
- }).data('gridster');
137
-
138
-
139
- }
@@ -1,2 +0,0 @@
1
- // Generated by CoffeeScript 1.6.2
2
- (function(){var e=[].slice;(function(t,n){var r;return r=function(){function e(e){var r=this;this.$el=t(e),t(n).resize(function(){return r.refresh()})}return e.prototype.start=function(){var e,t,n,r;if(this._overlay_visible())return!1;this._add_overlay_layer(),r=this.$el.find("*[data-intro]");for(t=0,n=r.length;t<n;t++)e=r[t],this._show_element(e);return this.$el.trigger("chardinJs:start")},e.prototype.toggle=function(){return this._overlay_visible()?this.stop():this.start()},e.prototype.refresh=function(){var e,t,n,r,i;if(this._overlay_visible()){r=this.$el.find("*[data-intro]"),i=[];for(t=0,n=r.length;t<n;t++)e=r[t],i.push(this._position_helper_layer(e));return i}return this},e.prototype.stop=function(){return this.$el.find(".chardinjs-overlay").fadeOut(function(){return t(this).remove()}),this.$el.find(".chardinjs-helper-layer").remove(),this.$el.find(".chardinjs-show-element").removeClass("chardinjs-show-element"),this.$el.find(".chardinjs-relative-position").removeClass("chardinjs-relative-position"),n.removeEventListener?n.removeEventListener("keydown",this._onKeyDown,!0):document.detachEvent&&document.detachEvent("onkeydown",this._onKeyDown),this.$el.trigger("chardinJs:stop")},e.prototype._overlay_visible=function(){return this.$el.find(".chardinjs-overlay").length!==0},e.prototype._add_overlay_layer=function(){var e,t,n,r=this;return this._overlay_visible()?!1:(t=document.createElement("div"),n="",t.className="chardinjs-overlay",this.$el.prop("tagName")==="BODY"?(n+="top: 0;bottom: 0; left: 0;right: 0;position: fixed;",t.setAttribute("style",n)):(e=this._get_offset(this.$el.get()[0]),e&&(n+="width: "+e.width+"px; height:"+e.height+"px; top:"+e.top+"px;left: "+e.left+"px;",t.setAttribute("style",n))),this.$el.get()[0].appendChild(t),t.onclick=function(){return r.stop()},setTimeout(function(){return n+="opacity: .8;",t.setAttribute("style",n)},10))},e.prototype._get_position=function(e){return e.getAttribute("data-position")||"bottom"},e.prototype._place_tooltip=function(e){var n,r,i,s,o,u,a;u=t(e).data("tooltip_layer"),a=this._get_offset(u),u.style.top=null,u.style.right=null,u.style.bottom=null,u.style.left=null;switch(this._get_position(e)){case"top":case"bottom":i=this._get_offset(e),o=i.width,r=t(u).width(),u.style.left=""+(o/2-a.width/2)+"px";break;case"left":case"right":i=this._get_offset(e),s=i.height,n=t(u).height(),u.style.top=""+(s/2-a.height/2)+"px"}switch(this._get_position(e)){case"left":return u.style.left="-"+(a.width-34)+"px";case"right":return u.style.right="-"+(a.width-34)+"px";case"bottom":return u.style.bottom="-"+a.height+"px";case"top":return u.style.top="-"+a.height+"px"}},e.prototype._position_helper_layer=function(e){var n,r;return r=t(e).data("helper_layer"),n=this._get_offset(e),r.setAttribute("style","width: "+n.width+"px; height:"+n.height+"px; top:"+n.top+"px; left: "+n.left+"px;")},e.prototype._show_element=function(e){var n,r,i,s;r=this._get_offset(e),i=document.createElement("div"),s=document.createElement("div"),t(e).data("helper_layer",i).data("tooltip_layer",s),e.id&&i.setAttribute("data-id",e.id),i.className="chardinjs-helper-layer chardinjs-"+this._get_position(e),this._position_helper_layer(e),this.$el.get()[0].appendChild(i),s.className="chardinjs-tooltip chardinjs-"+this._get_position(e),s.innerHTML="<div class='chardinjs-tooltiptext'>"+e.getAttribute("data-intro")+"</div>",i.appendChild(s),this._place_tooltip(e),e.className+=" chardinjs-show-element",n="",e.currentStyle?n=e.currentStyle.position:document.defaultView&&document.defaultView.getComputedStyle&&(n=document.defaultView.getComputedStyle(e,null).getPropertyValue("position")),n=n.toLowerCase();if(n!=="absolute"&&n!=="relative")return e.className+=" chardinjs-relative-position"},e.prototype._get_offset=function(e){var t,n,r;t={width:e.offsetWidth,height:e.offsetHeight},n=0,r=0;while(e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop))n+=e.offsetLeft,r+=e.offsetTop,e=e.offsetParent;return t.top=r,t.left=n,t},e}(),t.fn.extend({chardinJs:function(){var n,i,s,o;return o=arguments[0],i=2<=arguments.length?e.call(arguments,1):[],n=t(this[0]),s=n.data("chardinJs"),s||n.data("chardinJs",s=new r(this,o)),typeof o=="string"&&s[o].apply(s,i),s}})})(window.jQuery,window)}).call(this);
@@ -1,261 +0,0 @@
1
- .table-borderless td, .table-borderless th{border-top: none;}
2
- .pull-center{text-align: center;}
3
- .m0p0{margin: 0px; padding: 0px;}
4
-
5
- body{
6
- padding-top: 120px;
7
- }
8
-
9
- header{
10
- position: fixed;
11
- top: 0;
12
- width: 100%;
13
- background: #fafafa;
14
- z-index: 100;
15
- }
16
-
17
- #main-nav{
18
- border: none;
19
- background: transparent;
20
- border-radius: 0;
21
- margin-bottom: 0;
22
- border-top: 1px solid #fff;
23
- border-bottom: 1px solid #e1e1e1;
24
- min-height: 32px;
25
- z-index: 100;
26
- }
27
-
28
- nav#main-nav.navbar.navbar-default{background: white;z-index: 100;}
29
-
30
- header .navbar-header{
31
- height: 32px;
32
- z-index: 100;
33
- }
34
-
35
- header .navbar-brand img{
36
- transition: all 1s ease;
37
- filter: grayscale(100%);
38
- -webkit-filter: grayscale(100%);
39
- -moz-filter: grayscale(100%);
40
- -ms-filter: grayscale(100%);
41
- -o-filter: grayscale(100%);
42
- z-index: 100;
43
- }
44
-
45
- header .navbar-brand:hover img{
46
- filter: grayscale(0%);
47
- -webkit-filter: grayscale(0%);
48
- -moz-filter: grayscale(0%);
49
- -ms-filter: grayscale(0%);
50
- -o-filter: grayscale(0%);
51
- z-index: 100;
52
- }
53
-
54
- #main-nav .nav > li > a{
55
- font-size: 13px;
56
- font-weight: 800;
57
- color: #000;
58
- text-shadow: 0 1px #fff;
59
- z-index: 100;
60
- }
61
-
62
- #module-switch{
63
- border-left: 1px solid #e1e1e1;
64
- border-right: 1px solid #e1e1e1;
65
- }
66
-
67
- #module-switch span{
68
- text-shadow: 0 1px #fff;
69
- }
70
-
71
-
72
- header .breadcrumb-holder{
73
- padding: 0;
74
- margin: 0;
75
- border-top: 1px solid #fff;
76
- border-bottom: 1px solid #e1e1e1;
77
- z-index: 100;
78
- }
79
-
80
- header .breadcrumb{
81
- margin: 0;
82
- padding: 0;
83
- background: transparent;
84
- font-size: 11px;
85
- padding: 6px 0;
86
- z-index: 100;
87
- }
88
-
89
- header .breadcrumb a{
90
- color: #000;
91
- text-shadow: 0 1px #fff;
92
- z-index: 100;
93
- }
94
-
95
-
96
- #toolbar{
97
- margin: 0;
98
- border: none;
99
- border-radius: 0;
100
- border-top: 1px solid #fafafa;
101
- border-bottom: 1px solid #e1e1e1;
102
- background: #f5f5f5;
103
- min-height: 32px;
104
- z-index: 99;
105
- }
106
-
107
- #toolbar ul{
108
- margin-left: -10px;
109
- z-index: 99;
110
- }
111
-
112
- #toolbar a{
113
- padding: 10px;
114
- z-index: 99;
115
- }
116
-
117
-
118
- .nav-pills li a{
119
- color: #2d2d2d;
120
- padding-top: 6px;
121
- padding-left: 0px;
122
- font-size: 1em;
123
- padding-bottom: 6px;
124
- }
125
-
126
- .nav-pills li.active a{
127
- color: #3C6EBB;
128
- font-weight: 800;
129
- background: white;
130
- padding-left: 0px;
131
- font-size: 1em;
132
- }
133
-
134
- .nav-pills li.active a:hover{
135
- background: #EAEAEA;
136
- }
137
-
138
- .table-actions td.actions{
139
- width: 100px;
140
- text-align: right;
141
- }
142
-
143
- td.actions a{
144
- font-size: 11px;
145
- color: #ddd;
146
- margin: 0 5px;
147
- }
148
-
149
- a:hover{ color: #000;}
150
- a[genre="edit"], a[genre="delete"]{color: lightgray; font-size: 11px; padding-bottom: 2px;}
151
- a[genre="delete"]:hover{ color: #f00;}
152
- a:hover[genre="edit"]{color: #428bca;}
153
-
154
- #footer{
155
- background: #f5f5f5;
156
- border-top: 1px solid #eee;
157
- }
158
-
159
- .avatar{
160
- height: 30px;
161
- width: 40px;
162
- border-radius: 15px;
163
- margin: 0;
164
- padding: 0;
165
- float: left;
166
- padding-right: 10px;
167
- margin-top: -4px;
168
- }
169
-
170
- .other-actions-buttons button{
171
- float: right;
172
- margin-top: 13px;
173
- margin-left: 10px;
174
- }
175
-
176
- .other-actions-buttons div{
177
- float: right;
178
- }
179
-
180
-
181
- #title-help{
182
- font-size: 11px;
183
- color: #aaa;
184
- float: right;
185
- display: inline;
186
- margin-right: 10px;
187
- margin-top: -22px;
188
- }
189
-
190
- #scroll-topper{
191
- position: fixed;
192
- background: #2d2d2d;
193
- padding: 0;
194
- margin: 0;
195
- padding-left: 2px;
196
- height: 50px;
197
- width: 50px;
198
- border-radius: 25px;
199
- text-align: center;
200
- font-size: 30px;
201
- line-height: 47px;
202
- color: green;
203
- top: 200px;
204
- right: 50px;
205
- color: #fff;
206
- opacity: 0.1;
207
- }
208
-
209
- #scroll-topper:hover{
210
- opacity: 0.6;
211
- }
212
-
213
-
214
- .alert {
215
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
216
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
217
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
218
- }
219
-
220
- .alert {
221
- padding: 5px 15px;
222
- margin: 10px 0px;
223
- border-radius: 4px;
224
- position: fixed;
225
- width: 100%;
226
- border-radius: 0;
227
- box-shadow: none;
228
- top: 40px;
229
- left: 0;
230
- right: 0px;
231
- text-align: center;
232
- }
233
-
234
- .alert-success {
235
- color: #fff;
236
- background-color: #5CB85C;
237
- }
238
-
239
- .alert-info {
240
- background: #5BC0DE;
241
- color: #fff;
242
- }
243
-
244
- .alert-warning {
245
- color: #fff;
246
- background-color: #F0AD4E;
247
- }
248
-
249
- .alert-danger {
250
- color: #fff;
251
- background-color: #D9534F;
252
- }
253
-
254
- .jqstooltip{
255
- color: #fff !important;
256
- background: #2d2d2d !important;
257
- height: 21px !important;
258
- width: 100px !important;
259
- border: none !important;
260
- opacity: 0.8;
261
- }