egroupware/api/js/etemplate/Et2Date/DateStyles.ts

35 lines
755 B
TypeScript
Raw Normal View History

2022-01-04 23:38:10 +01:00
/**
* Sharable date styles constant
*/
import {css} from "@lion/core";
2022-02-15 19:47:42 +01:00
import {colorsDefStyles} from "../Styles/colorsDefStyles";
import {cssImage} from "../Et2Widget/Et2Widget";
2022-02-15 19:47:42 +01:00
export const dateStyles = [
colorsDefStyles,
css`
:host {
display: block;
white-space: nowrap;
min-width: fit-content;
}
.overdue {
color: red; // var(--whatever the theme color)
}
2022-02-23 18:43:39 +01:00
input.flatpickr {
2022-02-15 19:47:42 +01:00
border: 1px solid;
border-color: var(--input-border-color);
color: var(--input-text-color);
padding-top: 4px;
padding-bottom: 4px;
2022-02-23 18:43:39 +01:00
flex: 1 1 auto;
2022-02-15 19:47:42 +01:00
}
2022-02-23 18:43:39 +01:00
input.flatpickr:hover {
2022-02-15 19:47:42 +01:00
background-image: ${cssImage("datepopup")};
background-repeat: no-repeat;
background-position-x: right;
background-position-y: 1px;
background-size: 18px;
}
`];