datepicker: fix style when rendered inside table
This commit is contained in:
parent
e8094488f8
commit
ec2f65cd0e
1 changed files with 14 additions and 1 deletions
|
@ -6890,6 +6890,11 @@ output {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
datepicker resets some css it potentially inherits when its rendered inside a table
|
||||||
|
*/
|
||||||
|
|
||||||
.datepicker {
|
.datepicker {
|
||||||
background: hsl(234,10%,19%);
|
background: hsl(234,10%,19%);
|
||||||
color: white;
|
color: white;
|
||||||
|
@ -6909,6 +6914,14 @@ output {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
.next,
|
.next,
|
||||||
.prev {
|
.prev {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -6938,7 +6951,7 @@ output {
|
||||||
width: 27px;
|
width: 27px;
|
||||||
height: 26px;
|
height: 26px;
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
padding: 1px 0 0;
|
padding: 1px 0 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.month,
|
.month,
|
||||||
|
|
Loading…
Reference in a new issue