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/account/static/src/scss/account_dashboard.scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account/static/src/scss/account_dashboard.scss')
| -rw-r--r-- | addons/account/static/src/scss/account_dashboard.scss | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/addons/account/static/src/scss/account_dashboard.scss b/addons/account/static/src/scss/account_dashboard.scss new file mode 100644 index 00000000..b93e2d35 --- /dev/null +++ b/addons/account/static/src/scss/account_dashboard.scss @@ -0,0 +1,61 @@ +.o_kanban_view.o_kanban_dashboard.o_account_kanban { + + &.o_kanban_ungrouped .o_account_dashboard_header { + margin: (0 - $o-kanban-record-margin) ($o-kanban-record-margin - $o-horizontal-padding) $o-kanban-record-margin; + } + + .o_account_dashboard_header { + flex: 1 0 100%; + flex-flow: column nowrap; + align-self: flex-start; + width: 100%; + height: auto; // cancel o_form_view height 100%, which hides the help tip message at the bottom of the screen + min-height: 0%; // cancel o_form_view min-height 100%, which hides the help tip message at the bottom of the screen + background-color: $o-view-background-color; + + .o_form_statusbar { + padding-right: $o-horizontal-padding; + } + + h4 { + font-size: $font-size-base; + font-weight: 500; + } + + .fa-gift { + color: #eeeeee; + &:hover { + color: #555555; + } + } + + .o_arrow_button.btn-secondary { + color: $text-muted; + text-transform: none; + font-weight: 500; + + .o_account_dashboard_index { + color: gray('900'); + } + + &.o_action_done { + color: gray('900'); + background-color: gray('200'); + + &:after { + border-left-color: gray('200'); + } + + .fa-check { + color: theme-color('success'); + } + } + + &:last-of-type { + margin-left: $o-horizontal-padding; + padding-left: $o-horizontal-padding*.5; + border-left: 1px solid gray('300'); + } + } + } +} |
