easy_reports 0.0.24 → 0.0.25

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 506bd323f3e0a833f5178fdd2eb0768a408910a9
4
- data.tar.gz: 8c3b3760dffe7b3db9376dc3747be6dc1dcf06ad
3
+ metadata.gz: d26f9e3ea77696746e0ec1af155e7128c26ea5cd
4
+ data.tar.gz: 8654c7e4aaf941c29c194285474f22333adcb9db
5
5
  SHA512:
6
- metadata.gz: f3f5b81117624d52e25100aa4ada5041edff13f0ba1ad94b9ed4314af5855c73d959d745449f12bb5dacdae43f107a6b82c53eda718056ecb950d90e7d955178
7
- data.tar.gz: 58ee8bd742bd8755713ade0e56b2df26e5a12b91fb663f38baeec32833186bd65b5814390d83738ef240d63cd7c72bc24ec9c69b6c2bc28de5e2965f4005bb8b
6
+ metadata.gz: 8c4b9547a315e013254e60516f6e549ae2126b6ec3734208ba430e59f2d9d770e64e817413bf87e2dc4b4586e3f882c024ac5712cd42c79b2b05e278326d1a2c
7
+ data.tar.gz: c99a030ce9eec483dccdfd39c0ac609d9d1af385255299d43d515fe65f37e444d2135a65dcb1960d7b1d9f293430ed9865b7bd4600927eed794fda76c7d24309
@@ -0,0 +1,354 @@
1
+ /*!
2
+ * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com)
3
+ * Code licensed under the Apache License v2.0.
4
+ * For details, see http://www.apache.org/licenses/LICENSE-2.0.
5
+ */
6
+
7
+ body {
8
+ background-color: #f8f8f8;
9
+ }
10
+
11
+ #wrapper {
12
+ width: 100%;
13
+ }
14
+
15
+ #page-wrapper {
16
+ padding: 0 15px;
17
+ min-height: 568px;
18
+ background-color: #fff;
19
+ }
20
+
21
+ @media(min-width:768px) {
22
+ #page-wrapper {
23
+ position: inherit;
24
+ margin: 0 0 0 250px;
25
+ padding: 0 30px;
26
+ border-left: 1px solid #e7e7e7;
27
+ }
28
+ }
29
+
30
+ .navbar-top-links {
31
+ margin-right: 0;
32
+ }
33
+
34
+ .navbar-top-links li {
35
+ display: inline-block;
36
+ }
37
+
38
+ .navbar-top-links li:last-child {
39
+ margin-right: 15px;
40
+ }
41
+
42
+ .navbar-top-links li a {
43
+ padding: 15px;
44
+ min-height: 50px;
45
+ }
46
+
47
+ .navbar-top-links .dropdown-menu li {
48
+ display: block;
49
+ }
50
+
51
+ .navbar-top-links .dropdown-menu li:last-child {
52
+ margin-right: 0;
53
+ }
54
+
55
+ .navbar-top-links .dropdown-menu li a {
56
+ padding: 3px 20px;
57
+ min-height: 0;
58
+ }
59
+
60
+ .navbar-top-links .dropdown-menu li a div {
61
+ white-space: normal;
62
+ }
63
+
64
+ .navbar-top-links .dropdown-messages,
65
+ .navbar-top-links .dropdown-tasks,
66
+ .navbar-top-links .dropdown-alerts {
67
+ width: 310px;
68
+ min-width: 0;
69
+ }
70
+
71
+ .navbar-top-links .dropdown-messages {
72
+ margin-left: 5px;
73
+ }
74
+
75
+ .navbar-top-links .dropdown-tasks {
76
+ margin-left: -59px;
77
+ }
78
+
79
+ .navbar-top-links .dropdown-alerts {
80
+ margin-left: -123px;
81
+ }
82
+
83
+ .navbar-top-links .dropdown-user {
84
+ right: 0;
85
+ left: auto;
86
+ }
87
+
88
+ .sidebar .sidebar-nav.navbar-collapse {
89
+ padding-right: 0;
90
+ padding-left: 0;
91
+ }
92
+
93
+ .sidebar .sidebar-search {
94
+ padding: 15px;
95
+ }
96
+
97
+ .sidebar ul li {
98
+ border-bottom: 1px solid #e7e7e7;
99
+ }
100
+
101
+ .sidebar ul li a.active {
102
+ background-color: #eee;
103
+ }
104
+
105
+ .sidebar .arrow {
106
+ float: right;
107
+ }
108
+
109
+ .sidebar .fa.arrow:before {
110
+ content: "\f104";
111
+ }
112
+
113
+ .sidebar .active>a>.fa.arrow:before {
114
+ content: "\f107";
115
+ }
116
+
117
+ .sidebar .nav-second-level li,
118
+ .sidebar .nav-third-level li {
119
+ border-bottom: 0!important;
120
+ }
121
+
122
+ .sidebar .nav-second-level li a {
123
+ padding-left: 37px;
124
+ }
125
+
126
+ .sidebar .nav-third-level li a {
127
+ padding-left: 52px;
128
+ }
129
+
130
+ @media(min-width:768px) {
131
+ .sidebar {
132
+ z-index: 1;
133
+ position: absolute;
134
+ width: 250px;
135
+ /* margin-top: 51px; */
136
+ }
137
+
138
+ .navbar-top-links .dropdown-messages,
139
+ .navbar-top-links .dropdown-tasks,
140
+ .navbar-top-links .dropdown-alerts {
141
+ margin-left: auto;
142
+ }
143
+ }
144
+
145
+ .btn-outline {
146
+ color: inherit;
147
+ background-color: transparent;
148
+ transition: all .5s;
149
+ }
150
+
151
+ .btn-primary.btn-outline {
152
+ color: #428bca;
153
+ }
154
+
155
+ .btn-success.btn-outline {
156
+ color: #5cb85c;
157
+ }
158
+
159
+ .btn-info.btn-outline {
160
+ color: #5bc0de;
161
+ }
162
+
163
+ .btn-warning.btn-outline {
164
+ color: #f0ad4e;
165
+ }
166
+
167
+ .btn-danger.btn-outline {
168
+ color: #d9534f;
169
+ }
170
+
171
+ .btn-primary.btn-outline:hover,
172
+ .btn-success.btn-outline:hover,
173
+ .btn-info.btn-outline:hover,
174
+ .btn-warning.btn-outline:hover,
175
+ .btn-danger.btn-outline:hover {
176
+ color: #fff;
177
+ }
178
+
179
+ .chat {
180
+ margin: 0;
181
+ padding: 0;
182
+ list-style: none;
183
+ }
184
+
185
+ .chat li {
186
+ margin-bottom: 10px;
187
+ padding-bottom: 5px;
188
+ border-bottom: 1px dotted #999;
189
+ }
190
+
191
+ .chat li.left .chat-body {
192
+ margin-left: 60px;
193
+ }
194
+
195
+ .chat li.right .chat-body {
196
+ margin-right: 60px;
197
+ }
198
+
199
+ .chat li .chat-body p {
200
+ margin: 0;
201
+ }
202
+
203
+ .panel .slidedown .glyphicon,
204
+ .chat .glyphicon {
205
+ margin-right: 5px;
206
+ }
207
+
208
+ .chat-panel .panel-body {
209
+ height: 350px;
210
+ overflow-y: scroll;
211
+ }
212
+
213
+ .login-panel {
214
+ margin-top: 25%;
215
+ }
216
+
217
+ .flot-chart {
218
+ display: block;
219
+ height: 400px;
220
+ }
221
+
222
+ .flot-chart-content {
223
+ width: 100%;
224
+ height: 100%;
225
+ }
226
+
227
+ .dataTables_wrapper {
228
+ position: relative;
229
+ clear: both;
230
+ }
231
+
232
+ table.dataTable thead .sorting,
233
+ table.dataTable thead .sorting_asc,
234
+ table.dataTable thead .sorting_desc,
235
+ table.dataTable thead .sorting_asc_disabled,
236
+ table.dataTable thead .sorting_desc_disabled {
237
+ background: 0 0;
238
+ }
239
+
240
+ table.dataTable thead .sorting_asc:after {
241
+ content: "\f0de";
242
+ float: right;
243
+ font-family: fontawesome;
244
+ }
245
+
246
+ table.dataTable thead .sorting_desc:after {
247
+ content: "\f0dd";
248
+ float: right;
249
+ font-family: fontawesome;
250
+ }
251
+
252
+ table.dataTable thead .sorting:after {
253
+ content: "\f0dc";
254
+ float: right;
255
+ font-family: fontawesome;
256
+ color: rgba(50,50,50,.5);
257
+ }
258
+
259
+ .btn-circle {
260
+ width: 30px;
261
+ height: 30px;
262
+ padding: 6px 0;
263
+ border-radius: 15px;
264
+ text-align: center;
265
+ font-size: 12px;
266
+ line-height: 1.428571429;
267
+ }
268
+
269
+ .btn-circle.btn-lg {
270
+ width: 50px;
271
+ height: 50px;
272
+ padding: 10px 16px;
273
+ border-radius: 25px;
274
+ font-size: 18px;
275
+ line-height: 1.33;
276
+ }
277
+
278
+ .btn-circle.btn-xl {
279
+ width: 70px;
280
+ height: 70px;
281
+ padding: 10px 16px;
282
+ border-radius: 35px;
283
+ font-size: 24px;
284
+ line-height: 1.33;
285
+ }
286
+
287
+ .show-grid [class^=col-] {
288
+ padding-top: 10px;
289
+ padding-bottom: 10px;
290
+ border: 1px solid #ddd;
291
+ background-color: #eee!important;
292
+ }
293
+
294
+ .show-grid {
295
+ margin: 15px 0;
296
+ }
297
+
298
+ .huge {
299
+ font-size: 40px;
300
+ }
301
+
302
+ .panel-green {
303
+ border-color: #5cb85c;
304
+ }
305
+
306
+ .panel-green .panel-heading {
307
+ border-color: #5cb85c;
308
+ color: #fff;
309
+ background-color: #5cb85c;
310
+ }
311
+
312
+ .panel-green a {
313
+ color: #5cb85c;
314
+ }
315
+
316
+ .panel-green a:hover {
317
+ color: #3d8b3d;
318
+ }
319
+
320
+ .panel-red {
321
+ border-color: #d9534f;
322
+ }
323
+
324
+ .panel-red .panel-heading {
325
+ border-color: #d9534f;
326
+ color: #fff;
327
+ background-color: #d9534f;
328
+ }
329
+
330
+ .panel-red a {
331
+ color: #d9534f;
332
+ }
333
+
334
+ .panel-red a:hover {
335
+ color: #b52b27;
336
+ }
337
+
338
+ .panel-yellow {
339
+ border-color: #f0ad4e;
340
+ }
341
+
342
+ .panel-yellow .panel-heading {
343
+ border-color: #f0ad4e;
344
+ color: #fff;
345
+ background-color: #f0ad4e;
346
+ }
347
+
348
+ .panel-yellow a {
349
+ color: #f0ad4e;
350
+ }
351
+
352
+ .panel-yellow a:hover {
353
+ color: #df8a13;
354
+ }
@@ -1,135 +1,10 @@
1
- @import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
2
-
3
- @import url(http://fonts.googleapis.com/css?family=Titillium+Web:300);
4
-
5
- .sidebar {
6
- margin-top: 50px;
7
- }
8
-
9
- .fa-2x {
10
- font-size: 2em;
11
- }
12
- .fa {
13
- position: relative;
14
- display: table-cell;
15
- width: 60px;
16
- height: 36px;
17
- text-align: center;
18
- vertical-align: middle;
19
- font-size:20px;
20
- }
21
-
22
-
23
- .main-menu:hover,nav.main-menu.expanded {
24
- width:250px;
25
- overflow:visible;
26
- }
27
-
28
- .main-menu {
29
- background:#fbfbfb;
30
- border-right:1px solid #e5e5e5;
31
- position:absolute;
32
- top:0;
33
- bottom:0;
34
- height:100%;
35
- left:0;
36
- width:60px;
37
- overflow:hidden;
38
- -webkit-transition:width .05s linear;
39
- transition:width .05s linear;
40
- -webkit-transform:translateZ(0) scale(1,1);
41
- z-index:1000;
42
- }
43
-
44
- .main-menu>ul {
45
- margin:7px 0;
46
- }
47
-
48
- .main-menu li {
49
- position:relative;
50
- display:block;
51
- width:250px;
52
- }
53
-
54
- .main-menu li>a {
55
- position:relative;
56
- display:table;
57
- border-collapse:collapse;
58
- border-spacing:0;
59
- color:#999;
60
- font-family: arial;
61
- font-size: 14px;
62
- text-decoration:none;
63
- -webkit-transform:translateZ(0) scale(1,1);
64
- -webkit-transition:all .1s linear;
65
- transition:all .1s linear;
66
-
67
- }
68
-
69
- .main-menu .nav-icon {
70
- position:relative;
71
- display:table-cell;
72
- width:60px;
73
- height:36px;
74
- text-align:center;
75
- vertical-align:middle;
76
- font-size:18px;
77
- }
78
-
79
- .main-menu .nav-text {
80
- position:relative;
81
- display:table-cell;
82
- vertical-align:middle;
83
- width:190px;
84
- font-family: 'Titillium Web', sans-serif;
85
- }
86
-
87
- .main-menu>ul.logout {
88
- position:absolute;
89
- left:0;
90
- bottom:0;
91
- }
92
-
93
- .no-touch .scrollable.hover {
94
- overflow-y:hidden;
95
- }
96
-
97
- .no-touch .scrollable.hover:hover {
98
- overflow-y:auto;
99
- overflow:visible;
100
- }
101
-
102
- a:hover,a:focus {
103
- text-decoration:none;
104
- }
105
-
106
- nav {
107
- -webkit-user-select:none;
108
- -moz-user-select:none;
109
- -ms-user-select:none;
110
- -o-user-select:none;
111
- user-select:none;
112
- }
113
-
114
- nav ul,nav li {
115
- outline:0;
116
- margin:0;
117
- padding:0;
118
- }
119
- .main-menu li:hover>a,nav.main-menu li.active>a,.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus,.no-touch .dashboard-page nav.dashboard-menu ul li:hover a,.dashboard-page nav.dashboard-menu ul li.active a {
120
- color:#fff;
121
- background-color:#5fa2db;
122
- }
123
- .area {
124
- float: left;
125
- background: #e2e2e2;
126
- width: 100%;
127
- height: 100%;
128
- }
129
- @font-face {
130
- font-family: 'Titillium Web';
131
- font-style: normal;
132
- font-weight: 300;
133
- src: local('Titillium WebLight'), local('TitilliumWeb-Light'), url(http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr24bNCNEoFTpS2BTjF6FB5E.woff) format('woff');
134
- }
135
-
1
+ /*
2
+ * metismenu - v1.1.3
3
+ * Easy menu jQuery plugin for Twitter Bootstrap 3
4
+ * https://github.com/onokumus/metisMenu
5
+ *
6
+ * Made by Osman Nuri Okumus
7
+ * Under MIT License
8
+ */
9
+
10
+ .arrow{float:right;line-height:1.42857}.glyphicon.arrow:before{content:"\e079"}.active>a>.glyphicon.arrow:before{content:"\e114"}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.plus-times{float:right}.fa.plus-times:before{content:"\f067"}.active>a>.fa.plus-times{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.plus-minus{float:right}.fa.plus-minus:before{content:"\f067"}.active>a>.fa.plus-minus:before{content:"\f068"}
@@ -1,3 +1,67 @@
1
- .col-lg-12
2
- h1.page-header Dashboard
3
-
1
+ #page-wrapper style=("min-height: 200px;")
2
+ .row
3
+ .col-lg-12
4
+ h1.page-header Dashboard
5
+ /! /.col-lg-12
6
+ /! /.row
7
+ .row
8
+ .col-lg-3.col-md-6
9
+ .panel.panel-primary
10
+ .panel-heading
11
+ .row
12
+ .col-xs-3
13
+ i.fa.fa-comments.fa-5x
14
+ .col-xs-9.text-right
15
+ .huge 26
16
+ div New Comments!
17
+ a href="#"
18
+ .panel-footer
19
+ span.pull-left View Details
20
+ span.pull-right
21
+ i.fa.fa-arrow-circle-right
22
+ .clearfix
23
+ .col-lg-3.col-md-6
24
+ .panel.panel-green
25
+ .panel-heading
26
+ .row
27
+ .col-xs-3
28
+ i.fa.fa-tasks.fa-5x
29
+ .col-xs-9.text-right
30
+ .huge 12
31
+ div New Tasks!
32
+ a href="#"
33
+ .panel-footer
34
+ span.pull-left View Details
35
+ span.pull-right
36
+ i.fa.fa-arrow-circle-right
37
+ .clearfix
38
+ .col-lg-3.col-md-6
39
+ .panel.panel-yellow
40
+ .panel-heading
41
+ .row
42
+ .col-xs-3
43
+ i.fa.fa-shopping-cart.fa-5x
44
+ .col-xs-9.text-right
45
+ .huge 124
46
+ div New Orders!
47
+ a href="#"
48
+ .panel-footer
49
+ span.pull-left View Details
50
+ span.pull-right
51
+ i.fa.fa-arrow-circle-right
52
+ .clearfix
53
+ .col-lg-3.col-md-6
54
+ .panel.panel-red
55
+ .panel-heading
56
+ .row
57
+ .col-xs-3
58
+ i.fa.fa-support.fa-5x
59
+ .col-xs-9.text-right
60
+ .huge 13
61
+ div Support Tickets!
62
+ a href="#"
63
+ .panel-footer
64
+ span.pull-left View Details
65
+ span.pull-right
66
+ i.fa.fa-arrow-circle-right
67
+ .clearfix
@@ -6,10 +6,7 @@ html
6
6
  = javascript_include_tag "easy_reports/application"
7
7
  = csrf_meta_tags
8
8
  body
9
- .header
10
- = render 'shared/header'
11
- .sidebar
12
- = render 'shared/sidebar'
13
- .container-fluid style="width: 90%"
14
- = yield
9
+ = render 'shared/header'
10
+ = render 'shared/sidebar'
11
+ = yield
15
12
 
@@ -1,58 +1,90 @@
1
- html
2
- head
3
- body
4
- .area
5
- nav.main-menu
6
- ul
7
- li
8
- a href="#"
9
- i.fa.fa-home.fa-2x
10
- span.nav-text
11
- | Dashboard
12
- li.has-subnav
13
- a href="#"
14
- i.fa.fa-laptop.fa-2x
15
- span.nav-text
16
- | UI Components
17
- li.has-subnav
18
- a href="#"
19
- i.fa.fa-list.fa-2x
20
- span.nav-text
21
- | Forms
22
- li.has-subnav
23
- a href="#"
24
- i.fa.fa-folder-open.fa-2x
25
- span.nav-text
26
- | Pages
27
- li
28
- a href="#"
29
- i.fa.fa-bar-chart-o.fa-2x
30
- span.nav-text
31
- | Graphs and Statistics
32
- li
33
- a href="#"
34
- i.fa.fa-font.fa-2x
35
- span.nav-text
36
- | Typography and Icons
37
- li
38
- a href="#"
39
- i.fa.fa-table.fa-2x
40
- span.nav-text
41
- | Tables
42
- li
43
- a href="#"
44
- i.fa.fa-map-marker.fa-2x
45
- span.nav-text
46
- | Maps
47
- li
48
- a href="#"
49
- i.fa.fa-info.fa-2x
50
- span.nav-text
51
- | Documentation
52
- ul.logout
53
- li
54
- a href="#"
55
- i.fa.fa-power-off.fa-2x
56
- span.nav-text
57
- | Logout
1
+ .navbar-default.sidebar role="navigation"
2
+ .sidebar-nav.navbar-collapse
3
+ ul#side-menu.nav.in
4
+ li.sidebar-search
5
+ .input-group.custom-search-form
6
+ input.form-control placeholder="Search..." type="text" /
7
+ span.input-group-btn
8
+ button.btn.btn-default type="button"
9
+ i.fa.fa-search
10
+ /! /input-group
11
+ li
12
+ a.active href="index.html"
13
+ i.fa.fa-dashboard.fa-fw
14
+ | Dashboard
15
+ li
16
+ a href="#"
17
+ i.fa.fa-bar-chart-o.fa-fw
18
+ | Charts
19
+ span.fa.arrow
20
+ ul.nav.nav-second-level.collapse aria-expanded="false" style=("height: 0px;")
21
+ li
22
+ a href="flot.html" Flot Charts
23
+ li
24
+ a href="morris.html" Morris.js Charts
25
+ /! /.nav-second-level
26
+ li
27
+ a href="tables.html"
28
+ i.fa.fa-table.fa-fw
29
+ | Tables
30
+ li
31
+ a href="forms.html"
32
+ i.fa.fa-edit.fa-fw
33
+ | Forms
34
+ li
35
+ a href="#"
36
+ i.fa.fa-wrench.fa-fw
37
+ | UI Elements
38
+ span.fa.arrow
39
+ ul.nav.nav-second-level.collapse
40
+ li
41
+ a href="panels-wells.html" Panels and Wells
42
+ li
43
+ a href="buttons.html" Buttons
44
+ li
45
+ a href="notifications.html" Notifications
46
+ li
47
+ a href="typography.html" Typography
48
+ li
49
+ a href="icons.html" Icons
50
+ li
51
+ a href="grid.html" Grid
52
+ /! /.nav-second-level
53
+ li
54
+ a href="#"
55
+ i.fa.fa-sitemap.fa-fw
56
+ | Multi-Level Dropdown
57
+ span.fa.arrow
58
+ ul.nav.nav-second-level.collapse
59
+ li
60
+ a href="#" Second Level Item
61
+ li
62
+ a href="#" Second Level Item
63
+ li
64
+ a href="#"
65
+ | Third Level
66
+ span.fa.arrow
67
+ ul.nav.nav-third-level.collapse
68
+ li
69
+ a href="#" Third Level Item
70
+ li
71
+ a href="#" Third Level Item
72
+ li
73
+ a href="#" Third Level Item
74
+ li
75
+ a href="#" Third Level Item
76
+ /! /.nav-third-level
77
+ /! /.nav-second-level
78
+ li
79
+ a href="#"
80
+ i.fa.fa-files-o.fa-fw
81
+ | Sample Pages
82
+ span.fa.arrow
83
+ ul.nav.nav-second-level.collapse
84
+ li
85
+ a href="blank.html" Blank Page
86
+ li
87
+ a href="login.html" Login Page
88
+ /! /.nav-second-level
89
+ /! /.sidebar-collapse
58
90
 
@@ -1,3 +1,3 @@
1
1
  module EasyReports
2
- VERSION = "0.0.24"
2
+ VERSION = "0.0.25"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_reports
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.24
4
+ version: 0.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davydenkov Mihail