sinatra-hexacta 1.2.4 → 1.2.9

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
  SHA256:
3
- metadata.gz: 9e90a3677be430822cfa304d87e0e2083cb678d51007eef3ee2213e3830417bd
4
- data.tar.gz: f71c13e6243ba309c1a74e003177fb94cc258ba79864d21351a71cc8f2e61985
3
+ metadata.gz: eae9b5d80ffcd16923473974837a7f17569ecf34ca3817595e6495d11e052ae8
4
+ data.tar.gz: 2ff000bf77a66cb12b4d7c69ab784985f8e5db614a6e481bfdcfdaaec6206a7e
5
5
  SHA512:
6
- metadata.gz: fd47cb2c5c388d0cc9f310000ce47e4ecfc178d0fdb9a23217b662df86508f0352df045a92e052d9f062e73564d03968a2344272ae45c41ded5a8eb23da40e69
7
- data.tar.gz: f51bfabb3069961d8d77287d837494ed942a7dc81572a3ca24f1c84dafa00e6562d15d0053bb982ab1dec02400d249eaa5c914232d1ebab5a49345d0b8ab2717
6
+ metadata.gz: c838fcd88d1fe11813c50806bf307ed97c1da4f862e1c5f562e63614399b9f55631f2adbf8fab10147988c19aeddbc0514c786ec7a0200cdd369f29c1d15670c
7
+ data.tar.gz: 8aafa5be7d3e4d6ae81a7c6e9e2b6c2230bdca29e9269880eb31e28cede06fa578bb54f8881b9cecbeaf5b68e69b1a058246eba5817d6f375455267c8312a904
@@ -15784,7 +15784,7 @@ body.login-content:before {
15784
15784
 
15785
15785
  #profile-main .pmb-block .pmbb-header h2 {
15786
15786
  margin: 0;
15787
- font-weight: 100;
15787
+ font-weight: 300;
15788
15788
  font-size: 20px;
15789
15789
  }
15790
15790
 
@@ -636,7 +636,7 @@ html.ismobile .page-loader {
636
636
  margin: 0;
637
637
  line-height: 100%;
638
638
  color: #fff;
639
- font-weight: 100;
639
+ font-weight: 300;
640
640
  font-size: 50px;
641
641
  }
642
642
 
@@ -645,7 +645,7 @@ html.ismobile .page-loader {
645
645
  letter-spacing: 0;
646
646
  vertical-align: top;
647
647
  font-size: 16px;
648
- font-weight: 100;
648
+ font-weight: 300;
649
649
  }
650
650
 
651
651
  .pt-inner .pti-header .ptih-title {
@@ -218,7 +218,7 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
218
218
  }
219
219
 
220
220
  .listview:not(.lv-lg):not(.lv-message) .lv-item {
221
- border-bottom: 1px solid #424242 !important;
221
+ border-bottom: 1px solid #424242;
222
222
  }
223
223
 
224
224
  .weekend {
@@ -0,0 +1,494 @@
1
+
2
+ #header {
3
+ box-shadow: none;
4
+ background-color: #f2f4f8;
5
+ border-bottom: 1px solid rgba(0,0,0,0.05);
6
+ }
7
+
8
+ body.darkmode #header {
9
+ -webkit-box-shadow: 0 10px 30px 0 rgba(82,63,105,.08);
10
+ box-shadow: 0 10px 30px 0 rgba(82,63,105,.08);
11
+ background-color: rgba(40,40,40,0.9) !important;
12
+ }
13
+
14
+ #header .top-menu > li > a, .actions > li > a > i, .actions > a > i {
15
+ color: #047bf8;
16
+ }
17
+
18
+ body.darkmode #header .top-menu > li > a {
19
+ color: white;
20
+ }
21
+
22
+ .top-menu > li > a > .tmn-counts, .tmn-counts {
23
+ color: white;
24
+ }
25
+
26
+ #header .logo {
27
+ padding: 6px 12px 6px 8px;
28
+ border-radius: 100px;
29
+ top: -4px;
30
+ position: relative;
31
+ min-width: 46px;
32
+ }
33
+
34
+ #header #menu-trigger .line-wrap .line {
35
+ background-color: #047bf8;
36
+ }
37
+
38
+ body.darkmode #header #menu-trigger .line-wrap .line {
39
+ background-color: white;
40
+ }
41
+
42
+ #header input[type="text"] {
43
+ border-radius: 30px;
44
+ outline: none;
45
+ border: none;
46
+ box-shadow: none;
47
+ background-color: rgba(121,138,185,0.07) !important;
48
+ color: gray;
49
+ }
50
+
51
+ body.darkmode #header input {
52
+ border-bottom: 2px solid white !important;
53
+ }
54
+
55
+ #header input::placeholder {
56
+ color: gray !important;
57
+ }
58
+
59
+ body.darkmode #header input::placeholder {
60
+ color: #7e8299 !important;
61
+ }
62
+
63
+ #header input:-ms-input-placeholder {
64
+ color: #7e8299 !important;
65
+ }
66
+
67
+ #header input::-ms-input-placeholder {
68
+ color: #7e8299 !important;
69
+ }
70
+
71
+ [data-current-skin="lightblue"] .logo {
72
+ background-color: #03a9f4;
73
+ }
74
+
75
+ [data-current-skin="bluegray"] .logo {
76
+ background-color: #607d8b;
77
+ }
78
+
79
+ [data-current-skin="blue"] .logo {
80
+ background-color: #2196f3;
81
+ }
82
+
83
+ [data-current-skin="darkblue"] .logo {
84
+ background-color: #2c4985;
85
+ }
86
+
87
+ [data-current-skin="teal"] .logo {
88
+ background-color: #009688;
89
+ }
90
+
91
+ [data-current-skin="purple"] .logo {
92
+ background-color: #9c27b0;
93
+ }
94
+
95
+ [data-current-skin="orange"] .logo {
96
+ background-color: #ff9800;
97
+ }
98
+
99
+ [data-current-skin="cyan"] .logo {
100
+ background-color: #00bcd4;
101
+ }
102
+
103
+ [data-current-skin="green"] .logo {
104
+ background-color: #4caf50;
105
+ }
106
+
107
+ [data-current-skin="teal"] .logo {
108
+ background-color: #009688;
109
+ }
110
+
111
+ [data-current-skin="pink"] .logo {
112
+ background-color: #e91e63;
113
+ }
114
+
115
+ body {
116
+ background-color: #f2f4f8;
117
+ }
118
+
119
+ #sidebar {
120
+ background-color: #f2f4f8;
121
+ border-right: 1px solid rgba(0,0,0,0.05);
122
+ position: absolute;
123
+ top: 0px;
124
+ min-height: 700px;
125
+ margin-top: 76px;
126
+ width: 150px;
127
+ -webkit-transform: translate3d(0, 0, 0);
128
+ transform: translate3d(0, 0, 0);
129
+ opacity: 1;
130
+ filter: alpha(opacity=100);
131
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
132
+ }
133
+
134
+ .container .block-header h2 {
135
+ color: #334152 !important;
136
+ }
137
+
138
+ .profile-menu {
139
+ margin-top: 0px;
140
+ }
141
+
142
+ .profile-menu > a {
143
+ background: none !important;
144
+ }
145
+
146
+ .profile-menu > a .profile-pic {
147
+ text-align: center;
148
+ }
149
+
150
+ .profile-menu > a .profile-info {
151
+ background: none;
152
+ margin-top: 0px;
153
+ color: #7f7f7f;
154
+ }
155
+
156
+ .profile-menu .main-menu {
157
+ border-bottom: 0px;
158
+ box-shadow: 0 10px 30px 0 rgba(82,63,105,.08);
159
+ }
160
+
161
+ .main-menu > li.active > a {
162
+ color: white;
163
+ background-color: #047bf8;
164
+ }
165
+
166
+ .sub-menu > a:before, .sub-menu > a:after {
167
+ font-size: 12px;
168
+ right: 6px;
169
+ width: 17px;
170
+ text-align: center;
171
+ border-radius: 100px;
172
+ color: white;
173
+ background-color: #047bf8;
174
+ }
175
+
176
+ .sub-menu ul > li > a {
177
+ padding: 8px 20px 8px 20px;
178
+ color: #3E4B5B;
179
+ }
180
+
181
+ .sub-menu .sub-menu > a:before, .sub-menu .sub-menu > a:after {
182
+ top: 9px;
183
+ }
184
+
185
+ .sub-menu ul > li ul {
186
+ background-color: #047bf8;
187
+ }
188
+
189
+ .sub-menu.toggled ul > li > a {
190
+ color: white;
191
+ }
192
+
193
+ .profile-menu > a .profile-info {
194
+ text-align: center;
195
+ color: #3E4B5B;
196
+ border-bottom: 1px solid rgba(0,0,0,0.05);
197
+ }
198
+
199
+ .profile-menu > a .profile-info > i {
200
+ display: none;
201
+ }
202
+
203
+ .profile-menu .main-menu, .profile-menu .main-menu > li > a:hover {
204
+ border-bottom: 1px solid rgba(0,0,0,0.05);
205
+ box-shadow: none;
206
+ background-color: #047bf8;
207
+ }
208
+
209
+ .profile-menu .main-menu > li > a {
210
+ color: white;
211
+ }
212
+
213
+ .profile-menu .main-menu > li > a:hover {
214
+ font-weight: 600;
215
+ }
216
+
217
+ .card {
218
+ border-radius: 6px;
219
+ box-shadow: 0px 2px 4px rgba(126,142,177,0.12);
220
+ -webkit-transition: all 0.25s ease;
221
+ transition: all 0.25s ease;
222
+ }
223
+
224
+ .card:hover {
225
+ box-shadow: 0px 5px 12px rgba(126,142,177,0.2);
226
+ }
227
+
228
+ .card .tab-nav {
229
+ }
230
+
231
+ #profile-main {
232
+ }
233
+
234
+ #profile-main .pmo-pic .pmo-stat {
235
+ background: #047bf8 !important;
236
+ }
237
+
238
+ @media (min-width: 1200px) {
239
+ #profile-main .pm-body {
240
+
241
+ }
242
+ }
243
+
244
+ @media (min-width: 768px) and (max-width: 1200px) {
245
+ #profile-main .pm-body {
246
+
247
+ }
248
+ }
249
+
250
+ @media (max-width: 767px) {
251
+ #profile-main .pm-body {
252
+
253
+ }
254
+ }
255
+
256
+ #profile-main .pm-body .tab-nav {
257
+ }
258
+
259
+ .tab-nav li > a {
260
+ font-weight: 700;
261
+ }
262
+
263
+ .tab-nav:not([data-tab-color]) > li > a:after {
264
+ background: #047bf8;
265
+ }
266
+
267
+ .tab-nav li > a:after {
268
+ width: 50%;
269
+ left: 25%;
270
+ }
271
+
272
+ #profile-main .pm-body .tab-content {
273
+ }
274
+
275
+ #profile-main .pm-overview {
276
+ }
277
+
278
+ #profile-main .pmo-pic, #profile-main .pmo-block{
279
+ }
280
+
281
+ #profile-main .pmo-contact {
282
+ }
283
+
284
+ .lv-item, .t-view, .tvb-stats li,
285
+ .footer-text .text, .actions > li > a:before,
286
+ .actions > a:before, .pagination > li > a, .pagination > li > span,
287
+ #header input[type="text"], #header .results, .dropdown.open .dropdown-menu,
288
+ .modal .modal-content, .pt-inner .pti-header, .ptih-title,
289
+ .card .tab-nav, .dash-widget-item, .progress {
290
+ border-radius: 6px;
291
+ }
292
+
293
+ .t-view:before {
294
+ box-shadow: none !important;
295
+ }
296
+
297
+ t-view:after {
298
+ left: -52px !important;
299
+ width: 3px !important;
300
+ }
301
+
302
+ .dash-widget-item {
303
+ -webkit-box-shadow: 0 10px 30px 0 rgba(82,63,105,.08);
304
+ box-shadow: 0 10px 30px 0 rgba(82,63,105,.08);
305
+ overflow: hidden;
306
+ }
307
+
308
+ #main {
309
+ }
310
+
311
+ .pagination > li > a, .pagination > li > span {
312
+ }
313
+
314
+ .form-control {
315
+ }
316
+
317
+ #loader {
318
+ }
319
+
320
+ .profile-menu .profile-pic > img {
321
+ padding: 5px;
322
+ border: 1px solid rgba(0,0,0,0.05);
323
+ width: 65px;
324
+ height: 65px;
325
+ }
326
+
327
+
328
+ .profile-pic > img{
329
+ padding: 5px;
330
+ border: 1px solid rgba(0,0,0,0.05);
331
+ }
332
+
333
+ .results .card {
334
+ }
335
+
336
+ .profile-view {
337
+ }
338
+
339
+ .listview:not(.lv-lg):not(.lv-message) .lv-item {
340
+ border-bottom: 0px !important;
341
+ }
342
+
343
+ @media (min-width: 1200px) {
344
+ body #content {
345
+ padding-left: 150px;
346
+ }
347
+ }
348
+
349
+ @media (min-width: 1200px) {
350
+ body #content > .container {
351
+ width: calc(100% - 30px);
352
+ }
353
+ }
354
+
355
+ @media (min-width: 1200px) {
356
+ #header {
357
+ padding-left: 15px;
358
+ }
359
+
360
+ #menu-trigger {
361
+ display: none;
362
+ }
363
+ }
364
+
365
+ body:not(.sw-toggled) #sidebar {
366
+ box-shadow: none;
367
+ }
368
+
369
+
370
+ .lv-item span, .pt-inner .pti-header > h2 {
371
+ color: #334152;
372
+ font-weight: 700;
373
+ }
374
+
375
+ .listview .lv-item .lv-small, .pt-inner .pti-header > h2 small {
376
+ font-size: 10px;
377
+ letter-spacing: 1px;
378
+ text-transform: uppercase;
379
+ margin-top: 2px;
380
+ margin-bottom: 0px;
381
+ color: #047bf8;
382
+ font-weight: 700;
383
+ }
384
+
385
+ .card .card-header {
386
+ border-top-left-radius: 6px;
387
+ border-top-right-radius: 6px;
388
+ }
389
+
390
+ .card .card-body {
391
+ border-bottom-left-radius: 6px;
392
+ border-bottom-right-radius: 6px;
393
+ }
394
+
395
+ .card .card-header h2 small {
396
+ font-size: 10px;
397
+ letter-spacing: 1px;
398
+ text-transform: uppercase;
399
+ color: #047bf8;
400
+ font-weight: 700;
401
+ }
402
+
403
+ .modal .modal-body {
404
+ background-image: url('/sinatra-hexacta/img/lightadmin.white.png');
405
+ background-repeat: no-repeat;
406
+ background-position: center bottom;
407
+ background-size: 100% 70%;
408
+ }
409
+
410
+ .modal .modal-footer .btn-link {
411
+ font-weight: 700 !important;
412
+ color: #047bf8;
413
+ }
414
+
415
+ .modal .modal-header {
416
+ padding: 23px 26px;
417
+ border-bottom: 1px solid rgba(0,0,0,0.05);
418
+ margin-bottom: 20px;
419
+ }
420
+
421
+ .modal .modal-footer {
422
+ border-top: 1px solid rgba(0,0,0,0.05);
423
+ }
424
+
425
+ .modal .modal-content {
426
+ box-shadow: 0 25px 65px rgba(15,24,33,0.29);
427
+ }
428
+
429
+ .modal-title {
430
+ font-weight: 700 !important;
431
+ }
432
+
433
+ .modal-backdrop {
434
+ background-color:#235a94;
435
+ }
436
+
437
+ .modal.fade .modal-dialog
438
+ {
439
+ -moz-transition: none !important;
440
+ -o-transition: none !important;
441
+ -webkit-transition: none !important;
442
+ transition: none !important;
443
+
444
+ -moz-transform: none !important;
445
+ -ms-transform: none !important;
446
+ -o-transform: none !important;
447
+ -webkit-transform: none !important;
448
+ transform: none !important;
449
+ }
450
+
451
+ .form-control {
452
+ background: transparent;
453
+ }
454
+
455
+ .preloader {
456
+ background: rgba(255,255,255,0.5);
457
+ border-radius: 100px;
458
+ left: 8px !important;
459
+ top: 6px !important;
460
+ }
461
+
462
+ /* ----- Pegaso related ----- */
463
+
464
+ .idx {
465
+ margin: 0px;
466
+ position: absolute;
467
+ text-align: center;
468
+ font-weight: 700;
469
+ left: -29px;
470
+ top: 9px;
471
+ width: 38px;
472
+ color: white;
473
+ background: #047bf8;
474
+ font-size: 14pt;
475
+ height: 38px;
476
+ border-radius: 100px;
477
+ padding-top: 9px;
478
+ }
479
+
480
+ .ha-menu {
481
+ background-color: transparent !important;
482
+ border-bottom: 1px solid rgba(0,0,0,0.05);
483
+ }
484
+
485
+ .ha-menu > ul > li:not(.active) > *:not(ul) {
486
+ color: #334152;
487
+ font-weight: 700;
488
+ }
489
+
490
+ .ha-menu > ul > li.active > *:not(ul) {
491
+ color: #334152;
492
+ box-shadow: inset 0px -3px 0 0px #047bf8;
493
+ font-weight: 700;
494
+ }
@@ -27,6 +27,10 @@ html:not([data-scroll='0']) body.darkmode #header .top-menu > li > a {
27
27
  color: white;
28
28
  }
29
29
 
30
+ .top-menu > li > a > .tmn-counts, .tmn-counts {
31
+ color: white;
32
+ }
33
+
30
34
  #header .logo {
31
35
  padding: 6px 12px 6px 8px;
32
36
  border-radius: .42rem;
@@ -48,12 +52,13 @@ html:not([data-scroll='0']) body.darkmode #header #menu-trigger .line-wrap .line
48
52
  background: transparent !important;
49
53
  /*border-bottom: 2px solid #7e8299 !important;*/
50
54
  border-bottom: 2px solid white !important;
51
- color: #7e8299 !important;
55
+ color: white !important;
52
56
  border-radius: 0 !important;
53
57
  }
54
58
 
55
59
  html:not([data-scroll='0']) #header input {
56
60
  border-bottom: 2px solid #7e8299 !important;
61
+ color: #7e8299 !important;
57
62
  }
58
63
 
59
64
  html:not([data-scroll='0']) body.darkmode #header input {
@@ -132,7 +137,7 @@ body {
132
137
  }
133
138
 
134
139
  .container .block-header h2 {
135
- color: white;
140
+ color: white !important;
136
141
  }
137
142
 
138
143
  .profile-menu {
@@ -211,10 +216,10 @@ body {
211
216
  .btn, .lv-item, .btn-group, .t-view, .tvb-stats li,
212
217
  .footer-text .text, .t-view:before, .actions > li > a:before,
213
218
  .actions > a:before, .pagination > li > a, .pagination > li > span,
214
- .listview [class*="lv-img"], .profile-pic > img, .form-control,
219
+ .listview [class*="lv-img"], .profile-pic > img,
215
220
  #header input[type="text"], #header .results, .img-circle, .dropdown.open .dropdown-menu,
216
221
  .modal .modal-content, .profile-view .pv-header > .pv-main, .pt-inner .pti-header, .ptih-title,
217
- .card .tab-nav, .dash-widget-item {
222
+ .card .tab-nav, .dash-widget-item, .t-view .tvh-user img {
218
223
  border-radius: .42rem;
219
224
  }
220
225
 
@@ -252,3 +257,6 @@ body {
252
257
  .profile-view {
253
258
  }
254
259
 
260
+ .listview:not(.lv-lg):not(.lv-message) .lv-item {
261
+ border-bottom: 0px !important;
262
+ }
@@ -21,7 +21,7 @@
21
21
  .lv-item style="padding:10px 15px;border-bottom:1px solid #eee;#{notification.pending?? 'background-color: #ECF9FF;' : ''}"
22
22
  .media
23
23
  .pull-left.text-center.p-r-15
24
- img.lv-img-sm alt="" src="#{Configuration::USER_PHOTO_URL}#{notification.creator.hxt_id}" title="#{notification.creator.full_name}"
24
+ img.lv-img-sm alt="" src="#{Configuration::USER_PHOTO_URL}#{notification.creator.hxt_id}" onError="this.onerror=null;this.src='/sinatra-hexacta/img/noimage.jpg';" title="#{notification.creator.full_name}"
25
25
  input type="checkbox" name="notifications[]" value="#{notification.id}" style="position: absolute;left: 5px;bottom: 5px;"
26
26
  .media-body
27
27
  small.lv-small
@@ -13,7 +13,7 @@
13
13
  h5.c-gray Tema
14
14
 
15
15
  .col-xs-4
16
- == select_input({ :name => "css", :elements => [{ :text => "Default", :value => nil}, { :text => "Wieldy", :value => 'wieldy'}, { :text => "Metronic", :value => 'metronic'}], :placeholder => "" , :chosen => user_configuration.nil?? nil : user_configuration.css })
16
+ == select_input({ :name => "css", :elements => [{ :text => "Default", :value => nil}, { :text => "Wieldy", :value => 'wieldy'}, { :text => "Metronic", :value => 'metronic'}, { :text => "Light Admin", :value => 'lightadmin'}], :placeholder => "" , :chosen => user_configuration.nil?? nil : user_configuration.css })
17
17
 
18
18
  .col-xs-6
19
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra-hexacta
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marco Zanger
@@ -105,6 +105,7 @@ files:
105
105
  - lib/sinatra/public/css/app.min.1.css
106
106
  - lib/sinatra/public/css/app.min.2.css
107
107
  - lib/sinatra/public/css/darkmode.css
108
+ - lib/sinatra/public/css/lightadmin.css
108
109
  - lib/sinatra/public/css/metronic.css
109
110
  - lib/sinatra/public/css/shell.css
110
111
  - lib/sinatra/public/css/wieldy.css
@@ -133,6 +134,7 @@ files:
133
134
  - lib/sinatra/public/fonts/roboto/Roboto-Thin-webfont.ttf
134
135
  - lib/sinatra/public/fonts/roboto/Roboto-Thin-webfont.woff
135
136
  - lib/sinatra/public/img/finder.png
137
+ - lib/sinatra/public/img/lightadmin.white.png
136
138
  - lib/sinatra/public/img/metronic.jpg
137
139
  - lib/sinatra/public/img/noimage.jpg
138
140
  - lib/sinatra/public/img/select.png