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/purchase/static/src/scss | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/purchase/static/src/scss')
| -rw-r--r-- | addons/purchase/static/src/scss/purchase.scss | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/addons/purchase/static/src/scss/purchase.scss b/addons/purchase/static/src/scss/purchase.scss new file mode 100644 index 00000000..1c6644c4 --- /dev/null +++ b/addons/purchase/static/src/scss/purchase.scss @@ -0,0 +1,54 @@ +.o_purchase_dashboard { + flex: 1 0 100%; + padding: 10px 10px 18px 10px; + + background-color: $o-view-background-color; + position: relative; + max-width:100%; + + .row { + margin-right: 0; + margin-left: 0; + } + + .o_dashboard_action { + cursor: pointer; + } + + .table { + margin-bottom: 0; + table-layout: fixed; + border-spacing: 10px 0px; + border-collapse: separate; + font-size: 13px; + + > thead, tbody { + & > tr > td { + text-align: center; + width: 25%; + height: 33px; + vertical-align: middle; + border-top: 1px solid $o-view-background-color; + background-color: $o-brand-lightsecondary; + + &.o_text{ + background-color: $o-view-background-color; + } + + > a:hover { + text-decoration: none; + } + + &.o_main { + background-color: $o-brand-primary; + &:hover { + background-color: darken($o-brand-primary, 10%); + } + > a { + color: white; + } + } + } + } + } +} |
