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 2792-2798 td.bundle { Link Here
2792
    }
2792
    }
2793
    .ui-tabs-nav {
2793
    .ui-tabs-nav {
2794
        li {
2794
        li {
2795
            background: #71B443;
2795
            background: $background-color-secondary;
2796
            border: 0;
2796
            border: 0;
2797
            margin-right: .4em;
2797
            margin-right: .4em;
2798
            border-radius: 4px 4px 0 0;
2798
            border-radius: 4px 4px 0 0;
Lines 2938-2944 td.bundle { Link Here
2938
            position: relative;
2938
            position: relative;
2939
            top: 1px;
2939
            top: 1px;
2940
            white-space: nowrap;
2940
            white-space: nowrap;
2941
            background: #71B443;
2941
            background: $background-color-secondary;
2942
2942
2943
            &.active, &:hover {
2943
            &.active, &:hover {
2944
                font-weight: normal;
2944
                font-weight: normal;
Lines 3552-3558 code { Link Here
3552
.nav-tabs {
3552
.nav-tabs {
3553
    > li {
3553
    > li {
3554
        > a {
3554
        > a {
3555
            background-color: #71B443;
3555
            background-color: $background-color-secondary;
3556
            color: #111;
3556
            color: #111;
3557
            line-height: 1.42857143;
3557
            line-height: 1.42857143;
3558
            margin-right: .4em;
3558
            margin-right: .4em;
3559
- 

Return to bug 30952