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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (-17 / +104 lines)
Lines 111-116 a { Link Here
111
    &.document {
111
    &.document {
112
        background-position: left middle;
112
        background-position: left middle;
113
        background-repeat: no-repeat;
113
        background-repeat: no-repeat;
114
        display: inline-block;
115
        min-height: 20px;
114
        padding-left: 20px;
116
        padding-left: 20px;
115
    }
117
    }
116
118
Lines 936-942 fieldset { Link Here
936
            font-weight: bold;
938
            font-weight: bold;
937
            margin-right: 1em;
939
            margin-right: 1em;
938
            text-align: right;
940
            text-align: right;
939
            width: 6em;
941
            width: 9em;
940
942
941
            .error {
943
            .error {
942
                float: none;
944
                float: none;
Lines 1070-1075 fieldset { Link Here
1070
    }
1072
    }
1071
}
1073
}
1072
1074
1075
#multi_receiving {
1076
    fieldset {
1077
        &.rows {
1078
            label {
1079
                width: 50%;
1080
            }
1081
        }
1082
    }
1083
}
1084
1073
.yui-u {
1085
.yui-u {
1074
    div {
1086
    div {
1075
        .hint {
1087
        .hint {
Lines 1120-1125 legend { Link Here
1120
    width: auto;
1132
    width: auto;
1121
}
1133
}
1122
1134
1135
details {
1136
    > summary {
1137
        cursor: pointer;
1138
1139
        &::before {
1140
            content: "\f0da";
1141
            display: inline-block;
1142
            font-family: FontAwesome;
1143
            width: 1em;
1144
        }
1145
1146
        &.checkouts-by-itemtype {
1147
            li {
1148
                display: inline-block;
1149
            }
1150
        }
1151
    }
1152
}
1153
1154
details[open] {
1155
    > summary {
1156
        &::before {
1157
            content: "\f0d7";
1158
        }
1159
    }
1160
}
1161
1162
1123
#floating-save {
1163
#floating-save {
1124
    background-color: rgba(185, 216, 217, .6);
1164
    background-color: rgba(185, 216, 217, .6);
1125
    bottom: 3%;
1165
    bottom: 3%;
Lines 1659-1674 dd { Link Here
1659
                }
1699
                }
1660
            }
1700
            }
1661
1701
1662
            label {
1663
                width: 9em;
1664
            }
1665
1666
            span {
1667
                &.label {
1668
                    width: 9em;
1669
                }
1670
            }
1671
1672
            td {
1702
            td {
1673
                label {
1703
                label {
1674
                    width: auto;
1704
                    width: auto;
Lines 1740-1750 dd { Link Here
1740
    overflow-y: auto;
1770
    overflow-y: auto;
1741
}
1771
}
1742
1772
1743
#z3950_search_targets_auth {
1744
    height:     348px;
1745
    overflow-y: auto;
1746
}
1747
1748
.z3950checks {
1773
.z3950checks {
1749
    padding-left: 1em;
1774
    padding-left: 1em;
1750
}
1775
}
Lines 3332-3340 label { Link Here
3332
}
3357
}
3333
3358
3334
.modal-body {
3359
.modal-body {
3360
    background-color: #FFF;
3335
    overflow-y: auto;
3361
    overflow-y: auto;
3336
}
3362
}
3337
3363
3364
.modal-content {
3365
    background-color : #EDF4F6;
3366
}
3367
3338
.btn-group {
3368
.btn-group {
3339
    label,
3369
    label,
3340
    select {
3370
    select {
Lines 3527-3532 span { Link Here
3527
    }
3557
    }
3528
}
3558
}
3529
3559
3560
3561
.result-biblio-itemtype {
3562
    float: right;
3563
    padding: .5em;
3564
    margin: .5em;
3565
    font-size: 85%;
3566
    text-align: center;
3567
3568
    img {
3569
        display: block;
3570
        margin: auto;
3571
        margin-bottom: 2px;
3572
    }
3573
}
3574
3530
.browse-label,
3575
.browse-label,
3531
.browse-prev-next {
3576
.browse-prev-next {
3532
    border: 1px solid #B9D8D9;
3577
    border: 1px solid #B9D8D9;
Lines 3899-3904 span { Link Here
3899
    }
3944
    }
3900
}
3945
}
3901
3946
3947
/* ==== MODULE LINKS - Start ==== */
3948
3949
ul {
3950
    &.buttons-list {
3951
        /* List containing the module links */
3952
        padding: 0;
3953
        margin-bottom: 30px;
3954
3955
        li {
3956
            /* Standard attributes for the list elements */
3957
            list-style-type:none;
3958
3959
            a {
3960
                &.circ-button {
3961
                    /* Class used for each module link */
3962
                    background-color: #F4F8F9;
3963
                    background-position: 5px 3px;
3964
                    background-repeat: no-repeat;
3965
                    border: solid 2px #b9d8d9;
3966
                    border-radius: 6px;
3967
                    box-sizing: content-box;
3968
                    color: #000000;
3969
                    display: block;
3970
                    font-size: 110%;
3971
                    font-weight: bold;
3972
                    max-width: 260px;
3973
                    margin: .5em 0;
3974
                    padding: 8px;
3975
                    text-decoration: none;
3976
3977
                    &:hover {
3978
                        /* Class used for each module link hover state */
3979
                        border-color: #538200;
3980
                        color: #538200;
3981
                    }
3982
                }
3983
            }
3984
        }
3985
    }
3986
}
3987
3988
/* ==== MODULE LINKS - End ==== */
3989
3902
@media (min-width: 200px) {
3990
@media (min-width: 200px) {
3903
    .navbar-nav > li {
3991
    .navbar-nav > li {
3904
        float: left;
3992
        float: left;
3905
- 

Return to bug 19474