51 lines
952 B
CSS
51 lines
952 B
CSS
.matrix-date-control {
|
|
position: relative;
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.matrix-date-control > .matrix-date-input {
|
|
min-width: 0;
|
|
flex: 1 1 auto;
|
|
padding-right: 38px !important;
|
|
}
|
|
|
|
.matrix-date-control__button {
|
|
position: absolute;
|
|
top: 1px;
|
|
right: 1px;
|
|
bottom: 1px;
|
|
display: grid;
|
|
width: 34px;
|
|
padding: 0;
|
|
place-items: center;
|
|
border: 0;
|
|
border-left: 1px solid #c4d0da;
|
|
border-radius: 0 3px 3px 0;
|
|
background: #edf3f7;
|
|
color: #285f8f;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.matrix-date-control__button:hover,
|
|
.matrix-date-control__button:focus-visible {
|
|
background: #dfeaf3;
|
|
outline: 0;
|
|
}
|
|
|
|
.matrix-date-control__picker {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.matrix-mis-filter .FormPanel .matrix-date-field {
|
|
width: 100%;
|
|
min-width: 0;
|
|
flex: 0 0 auto;
|
|
}
|