date-picker.scss 1.8 KB
Newer Older
1
.ivu-date-picker-transfer {
2
    padding: 0;
3 4
    .ivu-date-picker-cells-cell-selected:hover em,
    .ivu-date-picker-cells-cell-selected em {
5 6
        background: var(--ey-color-blue-green);
        color: var(--ey-color-white);
7 8 9
    }

    .ivu-date-picker-cells-cell-selected em {
10
        box-shadow: inset 0 0 0 1px var(--ey-color-blue-green)
11 12 13
    }

    .ivu-date-picker-cells-cell-today em::after {
14
        background-color: var(--ey-color-blue-green);
15 16 17
    }

    .ivu-date-picker-cells-focused em {
18 19
        border-color: var(--ey-color-blue-green);
        box-shadow: inset 0 0 0 1px var(--ey-color-blue-green)
20 21 22
    }

    .ivu-time-picker-cells-cell-selected {
23
        color: var(--ey-color-blue-green);
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
    }

    .ivu-picker-panel-body-wrapper {
        .ivu-picker-panel-body {
            .ivu-picker-confirm {
                .ivu-btn {
                    height: 24px;
                    padding: 0 7px;
                    font-size: 14px;
                    border-radius: 3px;
                    outline: 0;
                    line-height: 1.5;
                    display: inline-block;
                    margin-bottom: 0;
                    font-weight: 400;
                    text-align: center;
                    vertical-align: middle;
                    touch-action: manipulation;
                    cursor: pointer;
                    background-image: none;
                    border: 1px solid transparent;
                    white-space: nowrap;
                }
47 48 49
                .ivu-btn-default{
                    border: 1px solid rgb(220,222,226);
                }
50 51 52 53 54 55 56 57 58 59 60 61 62
            }
        }
    }
}

.ivu-date-picker {
    .ivu-date-picker-editor {
        .ivu-input-suffix {
            .ivu-icon {
                color: #2E2E38;
            }
        }
    }
63 64 65 66
}

.ivu-date-picker-focused input{
  box-shadow: none;
67
}