-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] account: finetunes new journal wizard design
This commit improves the design of the new journal wizard. task-4492854
- Loading branch information
1 parent
a7ceff1
commit 0083cad
Showing
9 changed files
with
195 additions
and
16 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 25 additions & 2 deletions
27
...s/account/static/src/views/account_journal_quick_create/account_journal_quick_create.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,29 @@ | ||
.quick-create-card { | ||
cursor: pointer; | ||
.card-body { | ||
background: linear-gradient(to right, $card-bg, rgba($card-bg, .95)); | ||
} | ||
|
||
&:hover { | ||
background: linear-gradient(to right, rgba($o-brand-secondary, 0.1), rgba($o-brand-primary, 0.1)); | ||
background: $o-action; | ||
} | ||
|
||
.o_tile { | ||
background: url('/account/static/src/img/tile.svg') center no-repeat; | ||
background-size: contain; | ||
aspect-ratio: 1 / 1; | ||
inset: 0; | ||
|
||
img { | ||
inset: 0; | ||
transform: rotateY(45deg) rotateZ(-22deg) rotateX(-20deg) translate(7%, 8%); | ||
} | ||
} | ||
|
||
.o_tile_reversed { | ||
background-image: url('/account/static/src/img/tile-reversed.svg'); | ||
|
||
img { | ||
transform: rotateY(45deg) rotateZ(22deg) rotateX(20deg) translate(-7%, 8%); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters