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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss (-1 / +1 lines)
Lines 180-186 a.navbar-toggle { Link Here
180
180
181
    input[type="submit"], button[type="submit"] {
181
    input[type="submit"], button[type="submit"] {
182
        height: 31px;
182
        height: 31px;
183
        background-color: #71B443;
183
        background-color: $background-color-secondary;
184
        color: white;
184
        color: white;
185
        border: 0;
185
        border: 0;
186
        text-shadow: unset;
186
        text-shadow: unset;
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_variables.scss (+1 lines)
Lines 1-5 Link Here
1
$green-text-color: #006100;
1
$green-text-color: #006100;
2
$background-color-primary: #408540;
2
$background-color-primary: #408540;
3
$background-color-secondary: lighten(saturate(adjust-hue($background-color-primary, -24), 9), 9);
3
4
4
// Copied from Bootstrap 5 without system-ui because of
5
// Copied from Bootstrap 5 without system-ui because of
5
// https://infinnie.github.io/blog/2017/systemui.html
6
// https://infinnie.github.io/blog/2017/systemui.html
(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-5 / +4 lines)
Lines 78-84 a { Link Here
78
        i, img {
78
        i, img {
79
            text-align: center;
79
            text-align: center;
80
            color: $green-text-color;
80
            color: $green-text-color;
81
            border: solid 3px #71B443;
81
            border: solid 3px $background-color-secondary;
82
            border-radius: 50%;
82
            border-radius: 50%;
83
            background-color: transparent;
83
            background-color: transparent;
84
            width: 40px;
84
            width: 40px;
Lines 2794-2800 td.bundle { Link Here
2794
    }
2794
    }
2795
    .ui-tabs-nav {
2795
    .ui-tabs-nav {
2796
        li {
2796
        li {
2797
            background: #71B443;
2797
            background: $background-color-secondary;
2798
            border: 0;
2798
            border: 0;
2799
            margin-right: .4em;
2799
            margin-right: .4em;
2800
            border-radius: 4px 4px 0 0;
2800
            border-radius: 4px 4px 0 0;
Lines 2940-2946 td.bundle { Link Here
2940
            position: relative;
2940
            position: relative;
2941
            top: 1px;
2941
            top: 1px;
2942
            white-space: nowrap;
2942
            white-space: nowrap;
2943
            background: #71B443;
2943
            background: $background-color-secondary;
2944
2944
2945
            &.active, &:hover {
2945
            &.active, &:hover {
2946
                font-weight: normal;
2946
                font-weight: normal;
Lines 3554-3560 code { Link Here
3554
.nav-tabs {
3554
.nav-tabs {
3555
    > li {
3555
    > li {
3556
        > a {
3556
        > a {
3557
            background-color: #71B443;
3557
            background-color: $background-color-secondary;
3558
            color: #111;
3558
            color: #111;
3559
            line-height: 1.42857143;
3559
            line-height: 1.42857143;
3560
            margin-right: .4em;
3560
            margin-right: .4em;
3561
- 

Return to bug 30952