View | Details | Raw Unified | Return to bug 32341
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss (-15 / +46 lines)
Lines 541-546 div.dt-button-collection button.dt-button.buttons-print:not( .disabled )::before Link Here
541
    }
541
    }
542
}
542
}
543
543
544
table {
545
    &.dataTable {
546
        &.dtr-column {
547
            tbody {
548
                tr {
549
                    td,
550
                    th {
551
                        &.dtr-control {
552
                            min-width: 4em;
553
                            padding: 0;
554
555
                            &::before {
556
                                background-color: #E1E1E1;
557
                                background-image: linear-gradient(180deg, #EBEBEB, #E1E1E1);
558
                                border: 1px solid #B3B3B3;
559
                                border-radius: .25rem;
560
                                box-shadow: none;
561
                                color: #000;
562
                                content: "\f067";
563
                                font-family: FontAwesome;
564
                                font-size: 1em;
565
                                font-style: normal;
566
                                height: 1em;
567
                                left: 35%;
568
                                padding: .5rem;
569
                                width: 1em;
570
                            }
571
                        }
572
                    }
573
574
                    &.parent {
575
                        td,
576
                        th {
577
                            &.dtr-control {
578
                                &::before {
579
                                    content: "\f068";
580
                                }
581
                            }
582
                        }
583
                    }
584
                }
585
            }
586
        }
587
    }
588
}
589
544
.buttons-print {
590
.buttons-print {
545
    &::before {
591
    &::before {
546
        content: "\f02f";
592
        content: "\f02f";
Lines 624-644 div.dt-button-collection button.dt-button.buttons-print:not( .disabled )::before Link Here
624
}
670
}
625
671
626
.table {
672
.table {
627
    .sorting_asc {
628
        background: url( "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2bW0iIGhlaWdodD0iMi4zODRtbSIgdmlld0JveD0iMCAwIDYuMDAwMDAwMiAyLjM4NDAzODkiPjxnPjxwYXRoIGZpbGw9IiMwMDZhY2MiIGQ9Ik00LjA1IDEuNzRoLTIuMUwzIC42NHoiLz48L2c+PC9zdmc+" ) no-repeat scroll 100% 80% #E2E8E8;
629
        padding-right: 19px;
630
    }
631
632
    .sorting_desc {
633
        background: url( "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2bW0iIGhlaWdodD0iMi4zODRtbSIgdmlld0JveD0iMCAwIDYuMDAwMDAwMiAyLjM4NDAzODkiPjxnPjxwYXRoIGZpbGw9IiMwMDZhY2MiIGQ9Ik00LjA1LjY0aC0yLjFMMyAxLjc0eiIvPjwvZz48L3N2Zz4=" ) no-repeat scroll 100% 80% #E2E8E8;
634
        padding-right: 19px;
635
    }
636
637
    .sorting {
638
        background: url( "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2bW0iIGhlaWdodD0iMi41NTFtbSIgdmlld0JveD0iMCAwIDYuMDAwMDAwMyAyLjU1MDY2MTQiPjxwYXRoIGZpbGw9IiNhY2FjYWMiIGQ9Ik00LjA1IDEuNDVoLTIuMUwzIDIuNTV6Ii8+PHBhdGggZmlsbD0iI2FjYWNhYyIgZD0iTTQuMDUgMS4xaC0yLjFMMyAweiIvPjwvc3ZnPg==" ) no-repeat scroll 100% 75% #E2E8E8;
639
        padding-right: 19px;
640
    }
641
642
    &.dataTable{
673
    &.dataTable{
643
        thead{
674
        thead{
644
            .sorting_asc {
675
            .sorting_asc {
(-)a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss (-34 lines)
Lines 2845-2881 $star-selected: #EDB867; Link Here
2845
    }
2845
    }
2846
}
2846
}
2847
2847
2848
table.dataTable.dtr-column>tbody>tr{
2849
2850
    > td,
2851
    > th{
2852
        &.dtr-control{
2853
            min-width:10em;
2854
2855
            &:before{
2856
                top: 50%;
2857
                left:unset;
2858
                height: 1em;
2859
                width: 5.3em;
2860
                content: "Expand";
2861
                background-color: #31b131;
2862
            }
2863
        }
2864
    }
2865
2866
    &.parent {
2867
2868
        td,th{
2869
2870
            &.dtr-control{
2871
2872
                &:before{
2873
                    content: "Unexpand";
2874
                    background-color:#d33333
2875
                }
2876
            }
2877
        }
2878
    }
2879
2880
}
2881
@import "responsive";
2848
@import "responsive";
2882
- 

Return to bug 32341