-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Style-sheet-vars #490
base: main
Are you sure you want to change the base?
Style-sheet-vars #490
Changes from 15 commits
38f377d
fae8f51
37dfe92
60ddafe
3e40f67
e64133e
960c22a
0a2eafe
f5158bc
9cb87c1
74a4434
d2dfed5
90e7877
96ccfed
8d5671b
4d3de18
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,12 +25,12 @@ | |
<progress-controls :foeCompendium="foeCompendium" /> | ||
</div> | ||
|
||
<div class="item-row nogrow progress-completed" style="margin-top: 1rem"> | ||
<div class="item-row nogrow progress-completed"> | ||
<!-- TODO: refactor this as a component in PR for collapsible/progressive disclosure element --> | ||
<h3> | ||
<btn-faicon | ||
:disabled="completedItems.length === 0" | ||
class="text collapse-control" | ||
class="click-text collapse-control" | ||
:class="completedClass" | ||
:icon="completedCaret" | ||
@click="data.expandCompleted = !data.expandCompleted" | ||
|
@@ -71,6 +71,7 @@ | |
|
||
<style lang="less"> | ||
.progress-completed { | ||
margin-top: 1rem; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
.collapse-control { | ||
text-transform: uppercase; | ||
height: inherit; | ||
|
@@ -79,25 +80,21 @@ | |
} | ||
h3 { | ||
display: flex; | ||
} | ||
.highlighted { | ||
background-color: lightyellow; | ||
border-bottom: none; | ||
} | ||
} | ||
</style> | ||
|
||
<style lang="less" scoped> | ||
.progress-completed { | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Need this or no? We've also got a |
||
h3 { | ||
margin: 5px 0; | ||
transition: background-color 0.2s ease; | ||
i { | ||
width: 15px; | ||
text-align: center; | ||
} | ||
|
||
&.highlighted { | ||
background-color: lightyellow; | ||
} | ||
} | ||
</style> | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems like a typo.