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_journal_dashboard.scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account/static/src/scss/account_journal_dashboard.scss')
| -rw-r--r-- | addons/account/static/src/scss/account_journal_dashboard.scss | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/addons/account/static/src/scss/account_journal_dashboard.scss b/addons/account/static/src/scss/account_journal_dashboard.scss new file mode 100644 index 00000000..6c36e61a --- /dev/null +++ b/addons/account/static/src/scss/account_journal_dashboard.scss @@ -0,0 +1,68 @@ +.o_kanban_view.o_kanban_dashboard.o_account_kanban { + .o_kanban_record { + + @include media-breakpoint-up(sm) { + .oe_kanban_action_button { + display: block; + margin-bottom: 5px; + } + } + + .o_kanban_card_settings { + padding-top: $o-horizontal-padding/2; + padding-bottom: $o-horizontal-padding/2; + + border-top: 1px solid; + border-color: $o-brand-lightsecondary; + } + .o_dashboard_star { + font-size: 12px; + + &.fa-star-o { + color: $o-main-color-muted; + &:hover { + color: gold; + } + } + &.fa-star { + color: gold; + } + } + + .o_dashboard_graph { + margin-bottom: -$o-horizontal-padding/2; + } + } + + &.o_kanban_ungrouped { + .o_kanban_record { + width: 450px; + } + } + + .o_kanban_group { + &:not(.o_column_folded) { + width: 450px + 2*$o-kanban-group-padding; + + @include media-breakpoint-down(sm) { + width: 100%; + } + } + } +} + +// Style for the widget "dashboard_graph" +.o_dashboard_graph { + position: relative; + margin: 16px -16px; + + canvas { + height: 75px; + } + +} + +.o_sample_data .o_dashboard_graph.o_graph_linechart > svg g.nv-linesWrap g.nv-group.nv-series-0 { + fill: gray !important; + opacity: 0.1; +} |
