ar-poncho 2.0.272 → 2.0.274
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.
- package/dist/css/poncho.css +398 -0
- package/dist/css/poncho.min.css +1 -1
- package/dist/js/poncho.js +586 -0
- package/dist/js/poncho.min.js +1 -1
- package/gulpfile.js +2 -0
- package/package.json +1 -1
package/dist/css/poncho.css
CHANGED
|
@@ -6456,6 +6456,404 @@ a.list-group-item:hover, a.list-group-item:focus, a.list-group-item:hover small,
|
|
|
6456
6456
|
color: #DEE2E6;
|
|
6457
6457
|
}
|
|
6458
6458
|
|
|
6459
|
+
/*MIGAS*/
|
|
6460
|
+
.pane-content .jumbotron .jumbotron_bar {
|
|
6461
|
+
background: #0f0f0f;
|
|
6462
|
+
position: absolute;
|
|
6463
|
+
padding: 0px;
|
|
6464
|
+
}
|
|
6465
|
+
.pane-content .jumbotron .jumbotron_bar .breadcrumb li {
|
|
6466
|
+
padding: 10px 0 5px 0;
|
|
6467
|
+
}
|
|
6468
|
+
.pane-content .jumbotron .jumbotron_bar .breadcrumbs li {
|
|
6469
|
+
padding: 10px 0 5px 0;
|
|
6470
|
+
}
|
|
6471
|
+
.pane-content .jumbotron_bar a {
|
|
6472
|
+
font-size: 14px;
|
|
6473
|
+
}
|
|
6474
|
+
.pane-content .jumbotron_bar .breadcrumb a {
|
|
6475
|
+
color: #fff;
|
|
6476
|
+
}
|
|
6477
|
+
.pane-content .jumbotron_bar .breadcrumb a:hover {
|
|
6478
|
+
text-decoration: underline;
|
|
6479
|
+
}
|
|
6480
|
+
.pane-content .jumbotron_bar .breadcrumb li:first-of-type::after {
|
|
6481
|
+
color: #fff;
|
|
6482
|
+
}
|
|
6483
|
+
.pane-content .jumbotron_bar .breadcrumb li::after {
|
|
6484
|
+
color: #fff;
|
|
6485
|
+
}
|
|
6486
|
+
.pane-content .jumbotron_bar .breadcrumbs a {
|
|
6487
|
+
color: #fff;
|
|
6488
|
+
}
|
|
6489
|
+
.pane-content .jumbotron_bar .breadcrumbs a:hover {
|
|
6490
|
+
text-decoration: underline;
|
|
6491
|
+
}
|
|
6492
|
+
.pane-content .jumbotron_bar .breadcrumbs li:first-of-type::after {
|
|
6493
|
+
color: #fff;
|
|
6494
|
+
}
|
|
6495
|
+
.pane-content .jumbotron_bar .breadcrumbs li::after {
|
|
6496
|
+
color: #fff;
|
|
6497
|
+
}
|
|
6498
|
+
.pane-content .breadcrumb a:hover {
|
|
6499
|
+
color: #333333;
|
|
6500
|
+
text-decoration: underline;
|
|
6501
|
+
}
|
|
6502
|
+
.pane-content .breadcrumb li {
|
|
6503
|
+
padding: 16px 0 5px 0;
|
|
6504
|
+
}
|
|
6505
|
+
.pane-content .breadcrumbs a:hover {
|
|
6506
|
+
color: #333333;
|
|
6507
|
+
text-decoration: underline;
|
|
6508
|
+
}
|
|
6509
|
+
.pane-content .breadcrumbs li {
|
|
6510
|
+
padding: 16px 0 5px 0;
|
|
6511
|
+
}
|
|
6512
|
+
|
|
6513
|
+
.breadcrumb.breadcrumb_expanded {
|
|
6514
|
+
margin-top: initial;
|
|
6515
|
+
}
|
|
6516
|
+
|
|
6517
|
+
.breadcrumbs.breadcrumbs_expanded {
|
|
6518
|
+
margin-top: initial;
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
.breadcrumb {
|
|
6522
|
+
box-sizing: border-box;
|
|
6523
|
+
width: 100%;
|
|
6524
|
+
list-style: none;
|
|
6525
|
+
font-size: 14px;
|
|
6526
|
+
text-transform: none;
|
|
6527
|
+
padding: 0;
|
|
6528
|
+
}
|
|
6529
|
+
.breadcrumb li {
|
|
6530
|
+
display: inline;
|
|
6531
|
+
}
|
|
6532
|
+
.breadcrumb li a {
|
|
6533
|
+
text-decoration: none;
|
|
6534
|
+
}
|
|
6535
|
+
.breadcrumb li:after {
|
|
6536
|
+
content: "/";
|
|
6537
|
+
display: inline-block;
|
|
6538
|
+
padding: 0px 5px;
|
|
6539
|
+
color: #555;
|
|
6540
|
+
}
|
|
6541
|
+
.breadcrumb li:first-child:after {
|
|
6542
|
+
display: none;
|
|
6543
|
+
}
|
|
6544
|
+
.breadcrumb li:first-of-type:after {
|
|
6545
|
+
content: "/";
|
|
6546
|
+
display: inline-block;
|
|
6547
|
+
padding: 0px 5px;
|
|
6548
|
+
color: #555;
|
|
6549
|
+
}
|
|
6550
|
+
|
|
6551
|
+
.breadcrumbs {
|
|
6552
|
+
box-sizing: border-box;
|
|
6553
|
+
width: 100%;
|
|
6554
|
+
list-style: none;
|
|
6555
|
+
font-size: 14px;
|
|
6556
|
+
text-transform: none;
|
|
6557
|
+
padding: 0;
|
|
6558
|
+
}
|
|
6559
|
+
.breadcrumbs li {
|
|
6560
|
+
display: inline;
|
|
6561
|
+
}
|
|
6562
|
+
.breadcrumbs li a {
|
|
6563
|
+
text-decoration: none;
|
|
6564
|
+
}
|
|
6565
|
+
.breadcrumbs li:after {
|
|
6566
|
+
content: "/";
|
|
6567
|
+
display: inline-block;
|
|
6568
|
+
padding: 0px 5px;
|
|
6569
|
+
color: #555;
|
|
6570
|
+
}
|
|
6571
|
+
.breadcrumbs li:first-child:after {
|
|
6572
|
+
display: none;
|
|
6573
|
+
}
|
|
6574
|
+
.breadcrumbs li:first-of-type:after {
|
|
6575
|
+
content: "/";
|
|
6576
|
+
display: inline-block;
|
|
6577
|
+
padding: 0px 5px;
|
|
6578
|
+
color: #555;
|
|
6579
|
+
}
|
|
6580
|
+
|
|
6581
|
+
.jumbotron_bar {
|
|
6582
|
+
position: absolute;
|
|
6583
|
+
top: -30px;
|
|
6584
|
+
width: 100%;
|
|
6585
|
+
}
|
|
6586
|
+
.jumbotron_bar .breadcrumb {
|
|
6587
|
+
margin: inherit;
|
|
6588
|
+
padding: 0px;
|
|
6589
|
+
margin-right: 10px;
|
|
6590
|
+
}
|
|
6591
|
+
.jumbotron_bar .breadcrumbs {
|
|
6592
|
+
margin: inherit;
|
|
6593
|
+
padding: 0px;
|
|
6594
|
+
margin-right: 10px;
|
|
6595
|
+
}
|
|
6596
|
+
|
|
6597
|
+
.jumbotron {
|
|
6598
|
+
margin-top: 30px;
|
|
6599
|
+
}
|
|
6600
|
+
.jumbotron li {
|
|
6601
|
+
padding: 10px 0 5px;
|
|
6602
|
+
}
|
|
6603
|
+
|
|
6604
|
+
.jumbotron.align-mid.m-t-0 .jumbotron_bar {
|
|
6605
|
+
display: none;
|
|
6606
|
+
}
|
|
6607
|
+
|
|
6608
|
+
.jumbotron.m-t-0 .jumbotron_bar {
|
|
6609
|
+
display: none;
|
|
6610
|
+
}
|
|
6611
|
+
|
|
6612
|
+
li.breadcrumb__toggle {
|
|
6613
|
+
display: none;
|
|
6614
|
+
}
|
|
6615
|
+
|
|
6616
|
+
li.breadcrumbs__toggle {
|
|
6617
|
+
display: none;
|
|
6618
|
+
}
|
|
6619
|
+
|
|
6620
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded li:after {
|
|
6621
|
+
content: "/";
|
|
6622
|
+
display: inline-block;
|
|
6623
|
+
padding: 0px 5px;
|
|
6624
|
+
}
|
|
6625
|
+
|
|
6626
|
+
.breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded li:after {
|
|
6627
|
+
content: "/";
|
|
6628
|
+
display: inline-block;
|
|
6629
|
+
padding: 0px 5px;
|
|
6630
|
+
}
|
|
6631
|
+
|
|
6632
|
+
@media only screen and (max-width: 991px) {
|
|
6633
|
+
.panel-pane.pane-page-breadcrumb {
|
|
6634
|
+
position: relative;
|
|
6635
|
+
}
|
|
6636
|
+
.panel-pane.pane-page-breadcrumbs {
|
|
6637
|
+
position: relative;
|
|
6638
|
+
}
|
|
6639
|
+
.breadcrumb {
|
|
6640
|
+
white-space: nowrap;
|
|
6641
|
+
}
|
|
6642
|
+
.breadcrumb .breadcrumb__toggle {
|
|
6643
|
+
float: left;
|
|
6644
|
+
}
|
|
6645
|
+
.breadcrumbs {
|
|
6646
|
+
white-space: nowrap;
|
|
6647
|
+
}
|
|
6648
|
+
.breadcrumbs .breadcrumbs__toggle {
|
|
6649
|
+
float: left;
|
|
6650
|
+
}
|
|
6651
|
+
.breadcrumb.breadcrumb_overflow {
|
|
6652
|
+
white-space: normal;
|
|
6653
|
+
}
|
|
6654
|
+
.breadcrumb.breadcrumb_overflow li {
|
|
6655
|
+
display: none;
|
|
6656
|
+
}
|
|
6657
|
+
.breadcrumb.breadcrumb_overflow li:nth-last-child(-n+2) {
|
|
6658
|
+
display: block;
|
|
6659
|
+
}
|
|
6660
|
+
.breadcrumb.breadcrumb_overflow li.breadcrumb__toggle {
|
|
6661
|
+
display: block;
|
|
6662
|
+
}
|
|
6663
|
+
.breadcrumb.breadcrumb_overflow li.last {
|
|
6664
|
+
display: block;
|
|
6665
|
+
}
|
|
6666
|
+
.breadcrumb.breadcrumb_overflow .breadcrumb__toggle {
|
|
6667
|
+
display: inline-block;
|
|
6668
|
+
}
|
|
6669
|
+
.breadcrumb.breadcrumb_overflow .breadcrumb__toggle a:before {
|
|
6670
|
+
content: "...";
|
|
6671
|
+
}
|
|
6672
|
+
.breadcrumbs.breadcrumbs_overflow {
|
|
6673
|
+
white-space: normal;
|
|
6674
|
+
}
|
|
6675
|
+
.breadcrumbs.breadcrumbs_overflow li {
|
|
6676
|
+
display: none;
|
|
6677
|
+
}
|
|
6678
|
+
.breadcrumbs.breadcrumbs_overflow li:nth-last-child(-n+2) {
|
|
6679
|
+
display: block;
|
|
6680
|
+
}
|
|
6681
|
+
.breadcrumbs.breadcrumbs_overflow li.breadcrumbs__toggle {
|
|
6682
|
+
display: block;
|
|
6683
|
+
}
|
|
6684
|
+
.breadcrumbs.breadcrumbs_overflow li.last {
|
|
6685
|
+
display: block;
|
|
6686
|
+
}
|
|
6687
|
+
.breadcrumbs.breadcrumbs_overflow .breadcrumbs__toggle {
|
|
6688
|
+
display: inline-block;
|
|
6689
|
+
}
|
|
6690
|
+
.breadcrumbs.breadcrumbs_overflow .breadcrumbs__toggle a:before {
|
|
6691
|
+
content: "...";
|
|
6692
|
+
}
|
|
6693
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded {
|
|
6694
|
+
white-space: normal;
|
|
6695
|
+
margin-bottom: 40px;
|
|
6696
|
+
margin-top: 16px;
|
|
6697
|
+
}
|
|
6698
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded li {
|
|
6699
|
+
display: contents;
|
|
6700
|
+
}
|
|
6701
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded li::last-of-type {
|
|
6702
|
+
display: none;
|
|
6703
|
+
}
|
|
6704
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded li:nth-last-child(-n+2) {
|
|
6705
|
+
display: contents;
|
|
6706
|
+
}
|
|
6707
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded .breadcrumb__toggle {
|
|
6708
|
+
position: absolute;
|
|
6709
|
+
transform: translate(0ch, 7ch);
|
|
6710
|
+
bottom: 6ch;
|
|
6711
|
+
display: block;
|
|
6712
|
+
float: inherit;
|
|
6713
|
+
}
|
|
6714
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded .breadcrumb__toggle a:before {
|
|
6715
|
+
display: inline-flex;
|
|
6716
|
+
color: #fff;
|
|
6717
|
+
font-size: 75%;
|
|
6718
|
+
text-align: right;
|
|
6719
|
+
text-decoration: none;
|
|
6720
|
+
content: "Cerrar";
|
|
6721
|
+
width: 100%;
|
|
6722
|
+
}
|
|
6723
|
+
.breadcrumb.breadcrumb_overflow.breadcrumb_expanded .breadcrumb__toggle::after {
|
|
6724
|
+
content: "";
|
|
6725
|
+
}
|
|
6726
|
+
.breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded {
|
|
6727
|
+
white-space: normal;
|
|
6728
|
+
margin-bottom: 40px;
|
|
6729
|
+
margin-top: 16px;
|
|
6730
|
+
}
|
|
6731
|
+
.breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded li {
|
|
6732
|
+
display: contents;
|
|
6733
|
+
}
|
|
6734
|
+
.breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded li::last-of-type {
|
|
6735
|
+
display: none;
|
|
6736
|
+
}
|
|
6737
|
+
.breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded li:nth-last-child(-n+2) {
|
|
6738
|
+
display: contents;
|
|
6739
|
+
}
|
|
6740
|
+
.breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded .breadcrumbs__toggle {
|
|
6741
|
+
position: absolute;
|
|
6742
|
+
transform: translate(0ch, 7ch);
|
|
6743
|
+
bottom: 6ch;
|
|
6744
|
+
}
|
|
6745
|
+
.breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded .breadcrumbs__toggle a:before {
|
|
6746
|
+
display: inline-flex;
|
|
6747
|
+
color: #fff;
|
|
6748
|
+
font-size: 75%;
|
|
6749
|
+
text-align: right;
|
|
6750
|
+
text-decoration: none;
|
|
6751
|
+
content: "Cerrar";
|
|
6752
|
+
width: 100%;
|
|
6753
|
+
}
|
|
6754
|
+
.jumbotron .breadcrumb.breadcrumb_overflow.breadcrumb_expanded .breadcrumb__toggle {
|
|
6755
|
+
transform: translate(0ch, 7ch);
|
|
6756
|
+
position: absolute;
|
|
6757
|
+
bottom: 6ch;
|
|
6758
|
+
}
|
|
6759
|
+
.jumbotron .breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded .breadcrumbs__toggle {
|
|
6760
|
+
transform: translate(0ch, 7ch);
|
|
6761
|
+
position: absolute;
|
|
6762
|
+
bottom: 6ch;
|
|
6763
|
+
}
|
|
6764
|
+
.jumbotron li {
|
|
6765
|
+
padding: 0px;
|
|
6766
|
+
}
|
|
6767
|
+
.jumbotron_bar .breadcrumb.breadcrumb_overflow.breadcrumb_expanded {
|
|
6768
|
+
margin-top: 10px;
|
|
6769
|
+
}
|
|
6770
|
+
.jumbotron_bar .breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded {
|
|
6771
|
+
margin-top: 10px;
|
|
6772
|
+
}
|
|
6773
|
+
.pane-content .jumbotron_bar .breadcrumb.breadcrumb_overflow.breadcrumb_expanded .breadcrumb__toggle a::before {
|
|
6774
|
+
color: #fff;
|
|
6775
|
+
}
|
|
6776
|
+
.pane-content .jumbotron_bar .breadcrumbs.breadcrumbs_overflow.breadcrumbs_expanded .breadcrumbs__toggle a::before {
|
|
6777
|
+
color: #fff;
|
|
6778
|
+
}
|
|
6779
|
+
.breadcrumb.breadcrumbs_overflow.breadcrumbs_expanded .breadcrumbs__toggle {
|
|
6780
|
+
display: block;
|
|
6781
|
+
float: inherit;
|
|
6782
|
+
}
|
|
6783
|
+
.breadcrumb.breadcrumbs_overflow.breadcrumbs_expanded .breadcrumbs__toggle::after {
|
|
6784
|
+
content: "";
|
|
6785
|
+
}
|
|
6786
|
+
.btn.menu-xs-sup.collapsed {
|
|
6787
|
+
color: #555;
|
|
6788
|
+
}
|
|
6789
|
+
.btn.menu-xs-sup.collapsed:focus {
|
|
6790
|
+
border: transparent !important;
|
|
6791
|
+
}
|
|
6792
|
+
.btn.menu-xs-sup.collapsed:active {
|
|
6793
|
+
border: transparent !important;
|
|
6794
|
+
}
|
|
6795
|
+
.btn.menu-xs-sup {
|
|
6796
|
+
color: #555;
|
|
6797
|
+
}
|
|
6798
|
+
.btn.menu-xs-sup:focus {
|
|
6799
|
+
border: transparent !important;
|
|
6800
|
+
}
|
|
6801
|
+
.btn.menu-xs-sup:active {
|
|
6802
|
+
box-shadow: none;
|
|
6803
|
+
}
|
|
6804
|
+
.panel-pane.pane-node-book-nav .btn.menu-xs-sup.collapsed {
|
|
6805
|
+
width: 100%;
|
|
6806
|
+
text-align: left;
|
|
6807
|
+
}
|
|
6808
|
+
.panel-pane.pane-node-book-nav p.mb-1 {
|
|
6809
|
+
margin-bottom: 0px;
|
|
6810
|
+
}
|
|
6811
|
+
.panel-pane.pane-node-book-nav p.mb-1 a {
|
|
6812
|
+
margin: 0;
|
|
6813
|
+
}
|
|
6814
|
+
#collapseExample {
|
|
6815
|
+
border-top: 3px solid gray;
|
|
6816
|
+
}
|
|
6817
|
+
#collapseExample ul li a {
|
|
6818
|
+
padding: 0px 20px;
|
|
6819
|
+
}
|
|
6820
|
+
#collapseExample ul li a.active {
|
|
6821
|
+
color: #0072bb;
|
|
6822
|
+
font-weight: bold;
|
|
6823
|
+
background: transparent;
|
|
6824
|
+
}
|
|
6825
|
+
.page-sidebar .nav-pills li a {
|
|
6826
|
+
color: #333333;
|
|
6827
|
+
}
|
|
6828
|
+
.page-sidebar .nav-pills li > a:visited {
|
|
6829
|
+
color: #333333;
|
|
6830
|
+
}
|
|
6831
|
+
.page-sidebar .nav > li > a:hover {
|
|
6832
|
+
background-color: transparent;
|
|
6833
|
+
}
|
|
6834
|
+
.page-sidebar .nav > li > a:focus {
|
|
6835
|
+
background-color: transparent;
|
|
6836
|
+
}
|
|
6837
|
+
.fa.fa-list.pe-3 {
|
|
6838
|
+
color: #555;
|
|
6839
|
+
}
|
|
6840
|
+
.pl-mp-activo.btn-title {
|
|
6841
|
+
font-size: inherit;
|
|
6842
|
+
}
|
|
6843
|
+
.nav-stacked > li + li {
|
|
6844
|
+
margin-top: 0px;
|
|
6845
|
+
}
|
|
6846
|
+
}
|
|
6847
|
+
@media only screen and (min-width: 990px) {
|
|
6848
|
+
.jumbotron_bar .container .breadcrumb,
|
|
6849
|
+
.jumbotron_bar .container .breadcrumbs {
|
|
6850
|
+
padding: 11px 0px 5px;
|
|
6851
|
+
}
|
|
6852
|
+
.breadcrumb.breadcrumb_overflow,
|
|
6853
|
+
.breadcrumbs.breadcrumbs_overflow {
|
|
6854
|
+
margin: 18px 0 0;
|
|
6855
|
+
}
|
|
6856
|
+
}
|
|
6459
6857
|
.pagination {
|
|
6460
6858
|
font-size: 18px;
|
|
6461
6859
|
font-weight: 500;
|