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/calendar/static/src/scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/calendar/static/src/scss')
| -rw-r--r-- | addons/calendar/static/src/scss/calendar.scss | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/addons/calendar/static/src/scss/calendar.scss b/addons/calendar/static/src/scss/calendar.scss new file mode 100644 index 00000000..7e98c95d --- /dev/null +++ b/addons/calendar/static/src/scss/calendar.scss @@ -0,0 +1,69 @@ +.o_calendar_invitation { + display: inline-block; + width: 10px; + height: 10px; + border-radius: 5px; + + &.accepted { + background-color: theme-color('success'); + } + + &.needsAction { + background-color: $o-brand-secondary; + } + + &.declined { + background-color: theme-color('danger'); + } +} + +.o_add_favorite_calendar { + margin-top: 10px; + position: relative; +} + +.o_calendar_invitation_page { + flex: 0 0 auto; + width: 50%; + margin: 30px auto 0; + @include o-webclient-padding($top: 10px, $bottom: 10px); + background-color: $o-view-background-color; + + .o_logo { + width: 15%; + } + .o_event_title { + margin-left: 20%; + + h2 { + margin-top: 0; + } + } + .o_event_table { + clear: both; + margin: 15px 0 0; + + th { + padding-right: 15px; + } + ul { + padding-left: 0; + } + } + + .o_accepted { + color: theme-color('success'); + } + .o_declined { + color: theme-color('danger'); + } +} +.o_meeting_filter { + @include o-text-overflow(); + width: 64%; + color: grey; + vertical-align: top; + &.o_meeting_bold { + font-weight: bold; + } +} |
