Merge pull request #1869 from wairbut-m2c/iagirre-display-datepicker-arrows

Iagirre display datepicker arrows
This commit is contained in:
BertoCQ
2017-09-19 18:55:10 +02:00
committed by GitHub

View File

@@ -32,22 +32,30 @@
padding: 0; padding: 0;
z-index: 4 !important; z-index: 4 !important;
.ui-datepicker-prev {
left: 12px;
}
.ui-datepicker-next {
right: 12px;
}
.ui-datepicker-prev, .ui-datepicker-prev,
.ui-datepicker-next { .ui-datepicker-next {
color: #fff; color: #fff;
cursor: pointer; cursor: pointer;
font-family: "icons" !important;
font-size: rem-calc(24);
font-weight: normal; font-weight: normal;
font-size: $small-font-size; height: rem-calc(30);
line-height: $line-height; line-height: $line-height;
top: 0; position: absolute;
top: 4px;
width: rem-calc(30);
&:hover {
text-decoration: none;
}
}
.ui-datepicker-prev::after {
content: '\62';
}
.ui-datepicker-next::after {
content: '\63';
} }
table { table {