agile_rails 0.0.0.3 → 0.0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/agile/agile.js +30 -9
- data/app/assets/stylesheets/agile/agile.css +136 -82
- data/app/assets/stylesheets/agile/agile_dark.css +404 -0
- data/app/assets/stylesheets/agile_application.css +1 -0
- data/app/assets/stylesheets/agile_editor.css +1 -0
- data/app/controls/agile_control.rb +5 -4
- data/app/helpers/agile_application_helper.rb +5 -6
- data/app/helpers/agile_helper.rb +14 -14
- data/app/helpers/agile_index_helper.rb +22 -24
- data/app/models/ar_filter.rb +1 -1
- data/app/views/paginator_with_input/kaminari/_paginator.erb +49 -0
- data/config/locales/kaminari.yml +18 -3
- data/lib/agile/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 004d896158c15a3bd616b5a24becafb32262ff1ceb23a97930dbe3168ddaaf76
|
|
4
|
+
data.tar.gz: e1844cf07c5bdac2bf48fb60bebcb4c197e5ac3813e7a64284234133c06d3ca6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 495f5368cac1d2d03d774e9dc07d81cc95977fb2f489e3cf3c7515d312455141423459b540175623a2b3bb12bc319f3738b32c35ed78dcaeb7ea08408da445f6
|
|
7
|
+
data.tar.gz: f6a159a3018b33fbf3a97501cb8d45f303fc90aea61038ad0d62c126ad523966eab5501b72f7e3bddf07221af8ea4fa0823155eeb549ebcc1951c71107c24664
|
|
@@ -1411,10 +1411,8 @@ $(document).ready( function() {
|
|
|
1411
1411
|
$('.filter-popup').hide();
|
|
1412
1412
|
return;
|
|
1413
1413
|
}
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
let field_name = header.attr("data-name");
|
|
1417
|
-
$('.filter-popup').attr('data-name', field_name);
|
|
1414
|
+
let field_name = $(this).attr("data-filter")
|
|
1415
|
+
$('.filter-popup').attr('data-filter', field_name);
|
|
1418
1416
|
// change popup position and show
|
|
1419
1417
|
$('.filter-popup').css({'top': e.pageY + 5, 'left': e.pageX, 'position': 'absolute'});
|
|
1420
1418
|
$('.filter-popup').show();
|
|
@@ -1428,7 +1426,7 @@ $(document).ready( function() {
|
|
|
1428
1426
|
let url = $(this).data('url');
|
|
1429
1427
|
let operator = $(this).data('operator');
|
|
1430
1428
|
let parent = $(this).closest('.filter-popup');
|
|
1431
|
-
let field_name = parent.data("
|
|
1429
|
+
let field_name = parent.data("filter");
|
|
1432
1430
|
|
|
1433
1431
|
url = url + '&filter_field=' + field_name + '&filter_oper=' + operator;
|
|
1434
1432
|
simple_ajax_call(url);
|
|
@@ -1451,26 +1449,49 @@ $(document).ready( function() {
|
|
|
1451
1449
|
});
|
|
1452
1450
|
|
|
1453
1451
|
/*******************************************************************
|
|
1454
|
-
*
|
|
1452
|
+
* On firefox number input field does not get focus, when up-down arrows are clicked. Ensure focus.
|
|
1453
|
+
*******************************************************************/
|
|
1454
|
+
$('#kaminari-jump #topage').on('input', function(e) {
|
|
1455
|
+
const field = $('#kaminari-jump #topage');
|
|
1456
|
+
if (document.activeElement !== field) {
|
|
1457
|
+
console.log(field);
|
|
1458
|
+
field.focus();
|
|
1459
|
+
}
|
|
1460
|
+
});
|
|
1461
|
+
|
|
1462
|
+
/*******************************************************************
|
|
1463
|
+
* Loosing focus in kaminari page input field will trigger jump to the page
|
|
1455
1464
|
*******************************************************************/
|
|
1465
|
+
$('#kaminari-jump #topage').on('focusout', function(e) {
|
|
1466
|
+
const field = $('#kaminari-jump #topage');
|
|
1467
|
+
const val = Number(field.val())
|
|
1468
|
+
const max = Number(field.attr('max'))
|
|
1469
|
+
|
|
1470
|
+
if (val > max) field.val(max);
|
|
1471
|
+
document.getElementById('kaminari-jump').submit();
|
|
1472
|
+
});
|
|
1473
|
+
|
|
1474
|
+
/*******************************************************************
|
|
1475
|
+
* Iframe lost focus. Save data
|
|
1476
|
+
******************************************************************
|
|
1456
1477
|
$('.iframe_embedded').on('focusout', function(e) {
|
|
1457
1478
|
console.log('focus out');
|
|
1458
1479
|
});
|
|
1459
1480
|
|
|
1460
1481
|
/*******************************************************************
|
|
1461
1482
|
* Iframe lost focus. Save data
|
|
1462
|
-
|
|
1483
|
+
******************************************************************
|
|
1463
1484
|
$('.iframe_embedded').on('focus', function(e) {
|
|
1464
1485
|
console.log('focus');
|
|
1465
1486
|
});
|
|
1466
1487
|
|
|
1467
1488
|
/*******************************************************************
|
|
1468
1489
|
* Iframe lost focus. Save data
|
|
1469
|
-
|
|
1490
|
+
******************************************************************
|
|
1470
1491
|
$('.iframe_embedded').on('blur', function(e) {
|
|
1471
1492
|
console.log('blur');
|
|
1472
1493
|
});
|
|
1473
|
-
|
|
1494
|
+
*/
|
|
1474
1495
|
});
|
|
1475
1496
|
|
|
1476
1497
|
/*******************************************************************
|
|
@@ -63,7 +63,6 @@ color: #253858;
|
|
|
63
63
|
src: url('ibm-plex-sans-italic.woff2') format('woff2')
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
|
|
67
66
|
/* Web reset. Contributed by
|
|
68
67
|
/* http://meyerweb.com/eric/tools/css/reset/
|
|
69
68
|
v2.0 | 20110126
|
|
@@ -122,19 +121,21 @@ font-weight: 400;
|
|
|
122
121
|
}
|
|
123
122
|
|
|
124
123
|
button {
|
|
125
|
-
font-family: ArSans,arial,sans-serif;
|
|
124
|
+
font-family: ArSans,arial,sans-serif;
|
|
126
125
|
}
|
|
127
126
|
|
|
128
127
|
textarea, input, select {
|
|
129
128
|
font: 16px ArSans,arial,sans-serif;
|
|
129
|
+
font-weight: 500;
|
|
130
130
|
color: #253858;
|
|
131
|
+
background-color: #fff;
|
|
131
132
|
padding: 8px 4px;
|
|
132
133
|
margin-left: 1px;
|
|
133
|
-
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
134
|
-
border-radius: 6px;
|
|
135
134
|
max-width: 100%;
|
|
136
135
|
vertical-align: middle;
|
|
137
|
-
|
|
136
|
+
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
137
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.2);
|
|
138
|
+
border-radius: 6px;
|
|
138
139
|
}
|
|
139
140
|
|
|
140
141
|
.ar-action-menu textarea, .ar-action-menu input, .ar-action-menu select {
|
|
@@ -143,8 +144,9 @@ textarea, input, select {
|
|
|
143
144
|
}
|
|
144
145
|
|
|
145
146
|
textarea:focus, input:focus, select:focus {
|
|
146
|
-
outline: 2px solid #
|
|
147
|
+
outline: 2px solid #253858;
|
|
147
148
|
border-radius: 3px;
|
|
149
|
+
border-bottom: 2px solid transparent;
|
|
148
150
|
}
|
|
149
151
|
|
|
150
152
|
input[type=submit]:focus {
|
|
@@ -157,6 +159,7 @@ input[type=submit]:focus {
|
|
|
157
159
|
textarea[readonly], input[readonly], select[readonly] {
|
|
158
160
|
background-color: rgba(37, 56, 88, 0.05) !important;
|
|
159
161
|
border: 1px solid rgba(37, 56, 88, 0.01) !important;
|
|
162
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.1) !important;
|
|
160
163
|
}
|
|
161
164
|
|
|
162
165
|
input[type=checkbox] {
|
|
@@ -168,6 +171,7 @@ input[type=checkbox] {
|
|
|
168
171
|
width: 1.15em;
|
|
169
172
|
height: 1.15em;
|
|
170
173
|
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
174
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.2);
|
|
171
175
|
border-radius: 6px;
|
|
172
176
|
transform: translateY(-0.075em);
|
|
173
177
|
display: inline-grid;
|
|
@@ -277,11 +281,19 @@ img { vertical-align:bottom; }
|
|
|
277
281
|
border-bottom: 1px solid #eee;
|
|
278
282
|
}
|
|
279
283
|
|
|
284
|
+
/**** results table *****/
|
|
285
|
+
|
|
286
|
+
#result {
|
|
287
|
+
border: 1px solid rgba(37, 56, 88, 0.1);
|
|
288
|
+
border-radius: 6px;
|
|
289
|
+
}
|
|
290
|
+
#result .spacer {
|
|
291
|
+
width: 0;
|
|
292
|
+
}
|
|
293
|
+
|
|
280
294
|
.ar-result {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
border-spacing: 0;
|
|
284
|
-
border-radius: 1px;
|
|
295
|
+
padding: 0;
|
|
296
|
+
border-spacing: 0;
|
|
285
297
|
}
|
|
286
298
|
|
|
287
299
|
.ar-result .ar-link-no {
|
|
@@ -298,42 +310,57 @@ border-radius: 1px;
|
|
|
298
310
|
|
|
299
311
|
.ar-result-header {
|
|
300
312
|
display: flex;
|
|
301
|
-
margin: 2px 0;
|
|
302
|
-
border-bottom: 2px solid rgba(37, 56, 88, 0.3);
|
|
303
|
-
background-color: #fff;
|
|
304
313
|
color: #253858;
|
|
314
|
+
background-color: #fff;
|
|
315
|
+
margin: 0;
|
|
316
|
+
border-bottom: 1px solid rgba(37, 56, 88, 0.2);
|
|
317
|
+
border-top-left-radius: 4px;
|
|
318
|
+
border-top-right-radius: 4px;
|
|
305
319
|
}
|
|
306
320
|
|
|
307
321
|
.ar-result-header .th {
|
|
308
|
-
padding: 4px
|
|
322
|
+
padding: 6px 4px;
|
|
309
323
|
white-space: nowrap;
|
|
310
324
|
overflow: hidden;
|
|
311
325
|
font-weight: 500;
|
|
312
326
|
line-height: 18px;
|
|
313
327
|
position: relative;
|
|
328
|
+
border-right: 1px solid rgba(37, 56, 88, 0.1);
|
|
329
|
+
background-color: rgba(37, 56, 88, 0.1);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.ar-result-header .th:last-of-type {
|
|
333
|
+
border-right: none;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.ar-result-header .th i {
|
|
337
|
+
padding: 0;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.ar-result-header .th.is-sorted,
|
|
341
|
+
.ar-result-data .td.is-sorted {
|
|
342
|
+
background: rgba(37, 56, 88, 0.15);
|
|
314
343
|
}
|
|
315
344
|
|
|
316
345
|
.ar-result-header .th:last-child {
|
|
317
346
|
flex-grow: 1;
|
|
318
347
|
}
|
|
319
|
-
|
|
320
|
-
|
|
348
|
+
|
|
349
|
+
.ar-result-header .th.is-sorted,
|
|
350
|
+
.ar-result-data .td.is-sorted {
|
|
351
|
+
background: rgba(37, 56, 88, 0.1);
|
|
321
352
|
}
|
|
322
353
|
|
|
323
|
-
.ar-result-header .th i.mi-sort_down:before,
|
|
324
354
|
.ar-result-header .th i.mi-ads_click:before,
|
|
325
|
-
.ar-result-header .th i.mi-sort_up:before,
|
|
326
355
|
.ar-result-header .th i.mi-sort_unset:before {
|
|
327
356
|
font-size: 12px;
|
|
328
357
|
position: static;
|
|
329
358
|
vertical-align: top;
|
|
330
359
|
}
|
|
331
360
|
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
.ar-result-header a:link, .ar-result-header a:visited {
|
|
361
|
+
#result .ar-result-data:last-of-type {
|
|
362
|
+
border-bottom-left-radius: 4px;
|
|
363
|
+
border-bottom-right-radius: 4px;
|
|
337
364
|
}
|
|
338
365
|
|
|
339
366
|
.ar-result-header a:hover {
|
|
@@ -342,21 +369,25 @@ border-radius: 1px;
|
|
|
342
369
|
|
|
343
370
|
.ar-result-data {
|
|
344
371
|
display: flex;
|
|
345
|
-
padding:
|
|
372
|
+
padding: 0;
|
|
346
373
|
color: #253858;
|
|
347
374
|
}
|
|
348
375
|
|
|
376
|
+
.ar-result-data:nth-child(even) {
|
|
377
|
+
background-color: rgba(37, 56, 88, 0.05);
|
|
378
|
+
}
|
|
379
|
+
|
|
349
380
|
.ar-result-data:hover {
|
|
350
|
-
background-color:
|
|
381
|
+
background-color: rgba(37, 56, 88, 0.2);
|
|
351
382
|
}
|
|
352
383
|
|
|
353
384
|
.ar-result-data .td {
|
|
354
|
-
padding: 4px
|
|
385
|
+
padding: 8px 4px;
|
|
355
386
|
white-space: nowrap;
|
|
356
387
|
overflow: hidden;
|
|
357
388
|
text-overflow: ellipsis;
|
|
358
|
-
|
|
359
|
-
|
|
389
|
+
border-right: 1px solid rgba(37, 56, 88, 0.1);
|
|
390
|
+
border-right: 1px solid transparent;
|
|
360
391
|
}
|
|
361
392
|
|
|
362
393
|
.ar-result-data .td:last-child {
|
|
@@ -364,7 +395,7 @@ border-radius: 1px;
|
|
|
364
395
|
}
|
|
365
396
|
|
|
366
397
|
.ar-result-actions i, .ar-result-actions .ar-link i, .ar-result-actions .ar-link-ajax i {
|
|
367
|
-
color: #
|
|
398
|
+
color: #253858;
|
|
368
399
|
font-size: 22px;
|
|
369
400
|
cursor: pointer;
|
|
370
401
|
}
|
|
@@ -381,24 +412,27 @@ border-radius: 1px;
|
|
|
381
412
|
white-space: nowrap;
|
|
382
413
|
}
|
|
383
414
|
|
|
415
|
+
.ar-result-header .ar-result-actions {
|
|
416
|
+
background-color: rgba(37, 56, 88, 0.1);
|
|
417
|
+
}
|
|
384
418
|
|
|
385
419
|
.ar-result-submenu ul {
|
|
386
420
|
display: none;
|
|
387
421
|
background-color: #fff;
|
|
388
|
-
filter: drop-shadow(1px 1px 6px #ddd);
|
|
389
422
|
position: fixed;
|
|
390
423
|
margin: -6px 0 0 16px;
|
|
424
|
+
padding: 4px;
|
|
391
425
|
}
|
|
392
426
|
|
|
393
427
|
.ar-result-submenu ul li {
|
|
394
428
|
text-align: left;
|
|
395
|
-
padding:
|
|
429
|
+
padding: 6px;
|
|
430
|
+
border-radius: 4px;
|
|
396
431
|
}
|
|
397
432
|
|
|
398
433
|
.ar-result-submenu ul li a:link, .ar-result-submenu .ar-link a:link,
|
|
399
434
|
.ar-result-submenu .ar-link.ar-window-open{
|
|
400
435
|
font-size: 15px;
|
|
401
|
-
line-height: 18px;
|
|
402
436
|
font-weight: 500;
|
|
403
437
|
color: #253858;
|
|
404
438
|
display: inline-block;
|
|
@@ -411,7 +445,7 @@ border-radius: 1px;
|
|
|
411
445
|
}
|
|
412
446
|
|
|
413
447
|
.ar-result-actions .ar-result-submenu ul li i {
|
|
414
|
-
color: #
|
|
448
|
+
color: #253858;
|
|
415
449
|
padding-right: 2px;
|
|
416
450
|
}
|
|
417
451
|
|
|
@@ -486,9 +520,8 @@ display: inline-table;
|
|
|
486
520
|
|
|
487
521
|
.ar-edit-menu li {
|
|
488
522
|
display: inline-flex;
|
|
489
|
-
margin-right:
|
|
523
|
+
margin-right: 4px;
|
|
490
524
|
vertical-align: middle;
|
|
491
|
-
padding: 1px 0;
|
|
492
525
|
}
|
|
493
526
|
|
|
494
527
|
#data-fields {margin: 5px;}
|
|
@@ -498,12 +531,10 @@ display: inline-table;
|
|
|
498
531
|
color: #253858;
|
|
499
532
|
font-weight: 500;
|
|
500
533
|
text-align: center;
|
|
501
|
-
border-radius:
|
|
534
|
+
border-radius: 6px;
|
|
502
535
|
background: rgba(37, 56, 88, 0.06);
|
|
503
|
-
padding:
|
|
536
|
+
padding: 8px;
|
|
504
537
|
text-decoration: none;
|
|
505
|
-
line-height: 26px;
|
|
506
|
-
/*border: 1px solid rgba(37, 56, 88, 0.06);*/
|
|
507
538
|
border: none;
|
|
508
539
|
}
|
|
509
540
|
|
|
@@ -529,18 +560,17 @@ display: inline-table;
|
|
|
529
560
|
.ar-link i,
|
|
530
561
|
.ar-link-ajax i,
|
|
531
562
|
.ar-submit i {
|
|
532
|
-
|
|
533
|
-
color: #5b89d7;
|
|
563
|
+
color: #253858;
|
|
534
564
|
padding-right: 2px;
|
|
535
565
|
}
|
|
536
566
|
|
|
537
567
|
.ar-link-no {
|
|
538
568
|
text-align: left;
|
|
539
569
|
font-weight: 500;
|
|
540
|
-
padding:
|
|
570
|
+
padding: 8px;
|
|
541
571
|
vertical-align: middle;
|
|
542
572
|
border: 1px solid rgba(37, 56, 88, 0.02);
|
|
543
|
-
border-radius:
|
|
573
|
+
border-radius: 6px;
|
|
544
574
|
color: rgba(37, 56, 88, 0.6);
|
|
545
575
|
background: rgba(37, 56, 88, 0.04);
|
|
546
576
|
line-height: 26px;
|
|
@@ -559,7 +589,7 @@ display: inline-table;
|
|
|
559
589
|
}
|
|
560
590
|
|
|
561
591
|
.ar-link-img {
|
|
562
|
-
color: #
|
|
592
|
+
color: #253858;
|
|
563
593
|
padding: 3px;
|
|
564
594
|
text-align: center;
|
|
565
595
|
margin: 0;
|
|
@@ -637,29 +667,29 @@ display: inline-table;
|
|
|
637
667
|
font-weight: 600;
|
|
638
668
|
font-size: 1.2em;
|
|
639
669
|
color: #253858;
|
|
640
|
-
padding:
|
|
670
|
+
padding: 0 4px;
|
|
641
671
|
border-spacing: 0;
|
|
642
672
|
margin: 0;
|
|
673
|
+
display: flex;
|
|
674
|
+
align-items: center;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.ar-title .title {
|
|
678
|
+
margin-right: auto;
|
|
679
|
+
padding: 8px 0;
|
|
643
680
|
}
|
|
644
681
|
|
|
645
682
|
.ar-title .ar-paginate {
|
|
646
|
-
float:right;
|
|
647
|
-
padding-top: 4px;
|
|
648
683
|
font-size: 0.9em;
|
|
649
684
|
}
|
|
650
685
|
|
|
651
686
|
.ar-title .ar-help-icon {
|
|
652
|
-
float:right;
|
|
653
|
-
padding: 4px 0 0 4px;
|
|
654
|
-
font-size: 1.1em;
|
|
655
|
-
height: 1em;
|
|
656
|
-
border: none;
|
|
657
687
|
background: none;
|
|
658
|
-
filter: none;
|
|
659
688
|
}
|
|
660
689
|
|
|
661
690
|
.ar-title .ar-help-icon i {
|
|
662
691
|
color: #5b89d7;
|
|
692
|
+
margin-left: 8px;
|
|
663
693
|
}
|
|
664
694
|
|
|
665
695
|
.ar-title .ar-help-icon i:hover {
|
|
@@ -698,6 +728,23 @@ display: inline-table;
|
|
|
698
728
|
background-color: rgba(44, 142, 255, 1);
|
|
699
729
|
}
|
|
700
730
|
|
|
731
|
+
.ar-paginate input {
|
|
732
|
+
padding: 4px;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.ar-paginate a:link, .ar-paginate a:visited {
|
|
736
|
+
background: #F4F5F6;
|
|
737
|
+
border-radius: 10px;
|
|
738
|
+
color: #253858;
|
|
739
|
+
}
|
|
740
|
+
.ar-paginate a:hover {
|
|
741
|
+
background: #DFE2E6;
|
|
742
|
+
}
|
|
743
|
+
.ar-paginate a i {
|
|
744
|
+
vertical-align: text-bottom;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
|
|
701
748
|
/***** FORM *****/
|
|
702
749
|
|
|
703
750
|
#ar-form-container {
|
|
@@ -792,12 +839,12 @@ display: inline-table;
|
|
|
792
839
|
}
|
|
793
840
|
|
|
794
841
|
.ar-form-label::after {
|
|
795
|
-
font-size: 0.
|
|
842
|
+
font-size: 0.8em;
|
|
796
843
|
content: '?';
|
|
797
844
|
color: #253858;
|
|
798
|
-
background
|
|
845
|
+
background: #E0EEFF;
|
|
799
846
|
border-radius: 10px;
|
|
800
|
-
padding: 0
|
|
847
|
+
padding: 0 5px;
|
|
801
848
|
border: 1px solid #E8EAEC;
|
|
802
849
|
}
|
|
803
850
|
|
|
@@ -860,12 +907,14 @@ display: inline-table;
|
|
|
860
907
|
padding: 8px 4px;
|
|
861
908
|
background-color: rgba(37, 56, 88, 0.05) !important;
|
|
862
909
|
border: 1px solid rgba(37, 56, 88, 0.01) !important;
|
|
910
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.1) !important;
|
|
863
911
|
border-radius: 6px;
|
|
864
912
|
}
|
|
865
913
|
|
|
866
914
|
.tree-select.ar-readonly {
|
|
867
915
|
display: block;
|
|
868
916
|
background-color: rgba(37, 56, 88, 0.05) !important;
|
|
917
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.1) !important;
|
|
869
918
|
}
|
|
870
919
|
|
|
871
920
|
.ar-color-odd {
|
|
@@ -1007,7 +1056,7 @@ display: flex;
|
|
|
1007
1056
|
vertical-align: bottom;
|
|
1008
1057
|
color: #fff;
|
|
1009
1058
|
background: #253858;
|
|
1010
|
-
border-radius:
|
|
1059
|
+
border-radius: 6px;
|
|
1011
1060
|
margin: 4px;
|
|
1012
1061
|
}
|
|
1013
1062
|
.ar-form-accordion.open:before {
|
|
@@ -1092,13 +1141,12 @@ font-size: 1.2em;
|
|
|
1092
1141
|
.agile-top {
|
|
1093
1142
|
width: 100%;
|
|
1094
1143
|
background-color: #fff;
|
|
1095
|
-
border-top: 4px solid #fff;
|
|
1096
1144
|
}
|
|
1097
1145
|
|
|
1098
1146
|
.agile-top #cms-top-menu {
|
|
1099
|
-
padding:
|
|
1147
|
+
padding: 12px 4px 0 4rem;
|
|
1100
1148
|
color: #253858;
|
|
1101
|
-
background-color: rgba(37, 56, 88, 0.
|
|
1149
|
+
background-color: rgba(37, 56, 88, 0.05);
|
|
1102
1150
|
border-bottom: 1px solid rgba(37, 56, 88, 0.1);
|
|
1103
1151
|
}
|
|
1104
1152
|
|
|
@@ -1131,7 +1179,7 @@ font-size: 1.2em;
|
|
|
1131
1179
|
font-size: 15px;
|
|
1132
1180
|
font-weight: 500;
|
|
1133
1181
|
color: #253858;
|
|
1134
|
-
background-color: rgba(37, 56, 88, 0.
|
|
1182
|
+
background-color: rgba(37, 56, 88, 0.05);
|
|
1135
1183
|
border-right: 1px solid rgba(37, 56, 88, 0.1);
|
|
1136
1184
|
}
|
|
1137
1185
|
|
|
@@ -1249,6 +1297,7 @@ font-size: 1.2em;
|
|
|
1249
1297
|
|
|
1250
1298
|
.ar-text-autocomplete input {
|
|
1251
1299
|
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
1300
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.2);
|
|
1252
1301
|
}
|
|
1253
1302
|
|
|
1254
1303
|
.ar-text-autocomplete input+span:before {
|
|
@@ -1282,6 +1331,7 @@ font-size: 1.2em;
|
|
|
1282
1331
|
display: inline-block;
|
|
1283
1332
|
border-radius: 16px;
|
|
1284
1333
|
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
1334
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.2);
|
|
1285
1335
|
padding: 8px;
|
|
1286
1336
|
background-color: #fff;
|
|
1287
1337
|
}
|
|
@@ -1315,7 +1365,7 @@ font-size: 1.2em;
|
|
|
1315
1365
|
font-size: 1em;
|
|
1316
1366
|
padding: 1em 5em 1em 1em;
|
|
1317
1367
|
border: 1px solid #eee;
|
|
1318
|
-
border-radius:
|
|
1368
|
+
border-radius: 6px;
|
|
1319
1369
|
background-color: #fafafa;
|
|
1320
1370
|
}
|
|
1321
1371
|
|
|
@@ -1365,10 +1415,10 @@ font-size: 1.2em;
|
|
|
1365
1415
|
}
|
|
1366
1416
|
.iframe_embedded {
|
|
1367
1417
|
padding: 4px;
|
|
1368
|
-
border-radius: 12px;
|
|
1369
|
-
/*border: 1px solid rgba(37, 56, 88, 0.06);*/
|
|
1370
1418
|
background-color: #fff;
|
|
1371
1419
|
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
1420
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.2);
|
|
1421
|
+
border-radius: 8px;
|
|
1372
1422
|
}
|
|
1373
1423
|
|
|
1374
1424
|
#iframe_edit, #iframe_cms {
|
|
@@ -1387,7 +1437,7 @@ font-size: 1.2em;
|
|
|
1387
1437
|
font-weight: bold;
|
|
1388
1438
|
color: rgba(37, 56, 88, 0.5);
|
|
1389
1439
|
display: block;
|
|
1390
|
-
margin: 12px 0
|
|
1440
|
+
margin: 12px 0;
|
|
1391
1441
|
}
|
|
1392
1442
|
.ar-action-menu {
|
|
1393
1443
|
display: list-item;
|
|
@@ -1397,7 +1447,7 @@ font-size: 1.2em;
|
|
|
1397
1447
|
display: inline-flex;
|
|
1398
1448
|
position: relative;
|
|
1399
1449
|
white-space: nowrap;
|
|
1400
|
-
margin-right:
|
|
1450
|
+
margin-right: 4px;
|
|
1401
1451
|
vertical-align: middle;
|
|
1402
1452
|
}
|
|
1403
1453
|
|
|
@@ -1415,10 +1465,9 @@ font-size: 1.2em;
|
|
|
1415
1465
|
font-weight: 500;
|
|
1416
1466
|
background: #fff;
|
|
1417
1467
|
color: #253858;
|
|
1418
|
-
padding:
|
|
1468
|
+
padding: 8px;
|
|
1419
1469
|
float: none;
|
|
1420
1470
|
margin-right: 0;
|
|
1421
|
-
filter: drop-shadow(1px 1px 4px #eee);
|
|
1422
1471
|
}
|
|
1423
1472
|
|
|
1424
1473
|
.ar-action-menu ul ul a {
|
|
@@ -1443,23 +1492,24 @@ font-size: 1.2em;
|
|
|
1443
1492
|
/****** menu filter ****/
|
|
1444
1493
|
|
|
1445
1494
|
.menu-filter {
|
|
1446
|
-
|
|
1495
|
+
max-width: 400px;
|
|
1447
1496
|
position: initial;
|
|
1448
1497
|
right: 1.4rem;
|
|
1449
1498
|
top: -6px;
|
|
1450
1499
|
}
|
|
1451
1500
|
|
|
1452
1501
|
.ar-action-menu ul ul.menu-filter {
|
|
1453
|
-
filter:
|
|
1454
|
-
border: 1px solid #
|
|
1455
|
-
border-radius:
|
|
1502
|
+
filter: none;
|
|
1503
|
+
border: 1px solid #f4f5f6;
|
|
1504
|
+
border-radius: 4px;
|
|
1505
|
+
padding: 4px;
|
|
1456
1506
|
}
|
|
1457
1507
|
|
|
1458
1508
|
.menu-filter li.ar-link {
|
|
1459
|
-
padding:
|
|
1509
|
+
padding: 8px;
|
|
1460
1510
|
text-align: left;
|
|
1461
1511
|
border: 0;
|
|
1462
|
-
border-radius:
|
|
1512
|
+
border-radius: 4px;
|
|
1463
1513
|
}
|
|
1464
1514
|
|
|
1465
1515
|
.menu-filter li a {
|
|
@@ -1646,7 +1696,7 @@ font-size: 1.2em;
|
|
|
1646
1696
|
color: #253858;
|
|
1647
1697
|
padding: 4px 12px 6px;
|
|
1648
1698
|
border: none;
|
|
1649
|
-
border-radius:
|
|
1699
|
+
border-radius: 6px;
|
|
1650
1700
|
background: rgba(37, 56, 88, 0.06);
|
|
1651
1701
|
}
|
|
1652
1702
|
|
|
@@ -1740,7 +1790,7 @@ cursor: pointer;
|
|
|
1740
1790
|
text-align: left;
|
|
1741
1791
|
color: #253858;
|
|
1742
1792
|
background-color: #fff;
|
|
1743
|
-
border-radius:
|
|
1793
|
+
border-radius: 6px;
|
|
1744
1794
|
z-index: 100;
|
|
1745
1795
|
filter: drop-shadow(0 8px 8px #aaa);
|
|
1746
1796
|
}
|
|
@@ -1765,7 +1815,8 @@ cursor: pointer;
|
|
|
1765
1815
|
}
|
|
1766
1816
|
|
|
1767
1817
|
#ar_filter h1 {
|
|
1768
|
-
font-size: 1.
|
|
1818
|
+
font-size: 1.5em;
|
|
1819
|
+
margin-bottom: 8px;
|
|
1769
1820
|
font-weight: 600;
|
|
1770
1821
|
color: #253858;
|
|
1771
1822
|
}
|
|
@@ -1787,6 +1838,7 @@ cursor: pointer;
|
|
|
1787
1838
|
padding: 10px;
|
|
1788
1839
|
margin-left: 1px;
|
|
1789
1840
|
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
1841
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.2);
|
|
1790
1842
|
border-radius: 6px;
|
|
1791
1843
|
}
|
|
1792
1844
|
|
|
@@ -1795,11 +1847,12 @@ cursor: pointer;
|
|
|
1795
1847
|
.ar-radio {
|
|
1796
1848
|
display: inline-table;
|
|
1797
1849
|
background-color: #fff;
|
|
1850
|
+
font-weight: 500;
|
|
1798
1851
|
padding: 7px 0 9px;
|
|
1799
1852
|
margin-left: 1px;
|
|
1800
1853
|
border: 1px solid rgba(37, 56, 88, 0.06);
|
|
1854
|
+
border-bottom: 2px solid rgba(37, 56, 88, 0.2);
|
|
1801
1855
|
border-radius: 6px;
|
|
1802
|
-
font-weight: 500;
|
|
1803
1856
|
}
|
|
1804
1857
|
.ar-radio div {
|
|
1805
1858
|
padding: 8px;
|
|
@@ -1849,17 +1902,18 @@ cursor: pointer;
|
|
|
1849
1902
|
}
|
|
1850
1903
|
.ar-form-label.ar-width-0 { display: none;}
|
|
1851
1904
|
|
|
1852
|
-
.ar-edit-menu { padding:
|
|
1905
|
+
.ar-edit-menu { padding: 8px 4px;}
|
|
1853
1906
|
.ar-edit-menu li, .ar-action-menu ul li { margin: 2px 3px 2px; }
|
|
1854
1907
|
|
|
1855
1908
|
.ar-submit {
|
|
1856
1909
|
line-height: 20px;
|
|
1857
1910
|
}
|
|
1858
1911
|
.ar-link div, .ar-link-no {
|
|
1859
|
-
padding:
|
|
1912
|
+
padding: 8px;
|
|
1860
1913
|
}
|
|
1861
1914
|
|
|
1862
1915
|
#result {width: 200%;}
|
|
1916
|
+
|
|
1863
1917
|
.ar-action-menu .ar-right {
|
|
1864
1918
|
position: initial;
|
|
1865
1919
|
}
|
|
@@ -1887,8 +1941,8 @@ cursor: pointer;
|
|
|
1887
1941
|
|
|
1888
1942
|
/******* Firefox only ********/
|
|
1889
1943
|
@-moz-document url-prefix() {
|
|
1890
|
-
.ar-
|
|
1891
|
-
|
|
1944
|
+
.ar-paginate .mi-o {
|
|
1945
|
+
vertical-align: text-top;
|
|
1892
1946
|
}
|
|
1893
1947
|
|
|
1894
1948
|
.cms-toggle {padding: 2px 3px;}
|