diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/hr_contract/static/src/scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/hr_contract/static/src/scss')
| -rw-r--r-- | addons/hr_contract/static/src/scss/calendar_mismatch.scss | 18 | ||||
| -rw-r--r-- | addons/hr_contract/static/src/scss/state_selection.scss | 9 |
2 files changed, 27 insertions, 0 deletions
diff --git a/addons/hr_contract/static/src/scss/calendar_mismatch.scss b/addons/hr_contract/static/src/scss/calendar_mismatch.scss new file mode 100644 index 00000000..51c995d8 --- /dev/null +++ b/addons/hr_contract/static/src/scss/calendar_mismatch.scss @@ -0,0 +1,18 @@ +.o_form_view { + .o_calendar_warning { + cursor: help; + } + + .o_calendar_warning_tooltip { + display: block; + height: 0; + opacity: 0; + } + + .o_calendar_warning:hover + .o_calendar_warning_tooltip { + display: inline; + height: auto; + opacity: 1; + transition: opacity 0.5s linear; + } +} diff --git a/addons/hr_contract/static/src/scss/state_selection.scss b/addons/hr_contract/static/src/scss/state_selection.scss new file mode 100644 index 00000000..329cfd28 --- /dev/null +++ b/addons/hr_contract/static/src/scss/state_selection.scss @@ -0,0 +1,9 @@ +.o_hr_contract_state { + .o_status { + vertical-align: unset !important; + } +} + +.o_hr_contract_job_id { + min-height: 1.5rem; +}
\ No newline at end of file |
