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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_tables.scss (-13 / +17 lines)
Lines 566-576 div, Link Here
566
a {
566
a {
567
    &.dt-button {
567
    &.dt-button {
568
        background: transparent none;
568
        background: transparent none;
569
        border: 0;
569
        border: 1px solid transparent;
570
        border-radius: 4px;
570
        color: #000;
571
        color: #000;
571
        font-size: 1em;
572
        font-size: 1em;
572
        line-height: 1.7em;
573
        line-height: 1.7em;
573
        margin: 3px 3px 0;
574
        margin: 0 3px 0;
574
        padding: 0 .5em;
575
        padding: 0 .5em;
575
576
576
        &::before {
577
        &::before {
Lines 579-620 a { Link Here
579
580
580
        &.disabled {
581
        &.disabled {
581
            background: transparent none;
582
            background: transparent none;
582
            border: 0;
583
            border: 1px solid transparent;
583
            color: #999;
584
            color: #999;
584
            cursor: default;
585
            cursor: default;
585
586
587
            &:focus {
588
                border: 1px solid #ADADAD;
589
            }
590
586
            a,
591
            a,
587
            span {
592
            span {
588
                background: transparent none;
593
                background: transparent none;
589
            }
594
            }
590
        }
595
        }
591
596
592
        &:active,
597
        &:active:not( .disabled ),
593
        &:focus {
598
        &:focus:not( .disabled ) {
594
            background: transparent none;
599
            background: transparent none;
595
            border: 0;
600
            border: 1px solid #ADADAD;
596
            box-shadow: none;
601
            box-shadow: none;
597
            text-shadow: none;
602
            text-shadow: none;
598
603
599
            &:not( .disabled ):hover:not( .disabled ) {
604
            &:not( .disabled ):hover:not( .disabled ) {
600
                background: transparent none;
605
                background: #EEE none;
606
                border: 1px solid transparent;
601
                box-shadow: none;
607
                box-shadow: none;
602
            }
608
            }
603
        }
609
        }
604
610
605
        &:hover {
611
        &:hover {
606
            background: transparent none;
612
            background: transparent none;
607
            border: 0;
613
            border: 1px solid transparent;
608
614
609
            &:not( .disabled ) {
615
            &:not( .disabled ) {
610
                background: transparent none;
616
                background: #EEE none;
611
                border: 0;
612
            }
617
            }
613
        }
618
        }
614
619
615
        &.active:not( .disabled ):hover:not( .disabled ) {
620
        &.active:not( .disabled ):hover:not( .disabled ) {
616
            background: transparent none;
621
            background: #EEE none;
617
            box-shadow: none;
622
            border: 1px solid transparent;
618
        }
623
        }
619
    }
624
    }
620
}
625
}
621
- 

Return to bug 32323