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/project/static/src/scss/project_dashboard.scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/project/static/src/scss/project_dashboard.scss')
| -rw-r--r-- | addons/project/static/src/scss/project_dashboard.scss | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/addons/project/static/src/scss/project_dashboard.scss b/addons/project/static/src/scss/project_dashboard.scss new file mode 100644 index 00000000..73539824 --- /dev/null +++ b/addons/project/static/src/scss/project_dashboard.scss @@ -0,0 +1,51 @@ +.o_kanban_view.o_kanban_dashboard.o_project_kanban { + .o_project_kanban_boxes { + display: flex; + flex-flow: row wrap; + justify-content: space-between; + + .o_project_kanban_box { + position: relative; + text-align: center; + padding: 0 0 0 0; + margin: 0 5px; + + .o_value { + font-weight: 800; + } + + > div { + font-weight: 500; + + button.o_needaction { + font-size: small; + font-weight: 400; + margin-left: 4px; + @include o-hover-opacity(0.5, 1); + + &:before { + content: "/ "; + } + + &:after { + content: "\f086"; + font: normal normal normal 14px/1 FontAwesome; + } + } + } + } + } +} + +.o_dow_widget { + th { + padding: 10px 10px 0 10px; + } + + .o_dow_days { + td { + text-align: center; + vertical-align: middle; + } + } +} |
