forked from dmdorman/hero6e-foundryvtt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dmdorman#1621 from phBalance/phBalance/scss-guardi…
…ng-cleanup refactor(scss): start to make explicit what is hero override vs unique
- Loading branch information
Showing
3 changed files
with
33 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// These all override FoundryVTT basic styling | ||
.dice-roll { | ||
.dice-total { | ||
&.success { | ||
color: inherit; | ||
background: #c7d0c0; | ||
border: 1px solid #006c00; | ||
} | ||
|
||
&.failure { | ||
color: inherit; | ||
background: #fdd; | ||
border: 1px solid #6e0000; | ||
} | ||
|
||
&.critical { | ||
color: green; | ||
} | ||
|
||
&.fumble { | ||
color: red; | ||
} | ||
} | ||
|
||
.dice-rolls .roll { | ||
&.calculated { | ||
background-image: url("../icons/circle.svg"); | ||
} | ||
} | ||
} |
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