Add TODO's
This commit is contained in:
parent
a8d455b988
commit
d5ee9017e6
3 changed files with 22 additions and 4 deletions
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
&--success, &--confirm {
|
&--success, &--confirm {
|
||||||
color: $white !important;
|
color: $white !important;
|
||||||
background-color: $green;
|
background-color: $green; // TODO add dark variant
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($green, +5%);
|
background-color: lighten($green, +5%);
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
&--error, &--cancel {
|
&--error, &--cancel {
|
||||||
color: $white !important;
|
color: $white !important;
|
||||||
background-color: $red;
|
background-color: $red; // TODO add dark variant
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($red, +5%);
|
background-color: lighten($red, +5%);
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
&--primary {
|
&--primary {
|
||||||
color: $white !important;
|
color: $white !important;
|
||||||
background-color: $blue;
|
background-color: $blue; // TODO add dark variant
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($blue, 5%);
|
background-color: lighten($blue, 5%);
|
||||||
|
|
@ -62,6 +62,6 @@
|
||||||
|
|
||||||
&--disabled {
|
&--disabled {
|
||||||
color: $font-color !important;
|
color: $font-color !important;
|
||||||
background-color: $gray !important;
|
background-color: $gray !important; // TODO add dark variant
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@
|
||||||
@extend .button;
|
@extend .button;
|
||||||
|
|
||||||
color: var(--font-color);
|
color: var(--font-color);
|
||||||
|
|
||||||
|
// TODO add dark colored confirm green #007965
|
||||||
background-color: $green;
|
background-color: $green;
|
||||||
|
|
||||||
// TODO add mixin for default font awesome padding
|
// TODO add mixin for default font awesome padding
|
||||||
|
|
|
||||||
16
todo.txt
Normal file
16
todo.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
# font awesome refactor
|
||||||
|
|
||||||
|
To be refactored:
|
||||||
|
- src/newsreader/js/pages/categories/components/CategoryCard.js:14: favicon = <i className="gg-image" />;
|
||||||
|
- src/newsreader/js/pages/homepage/components/postlist/PostList.js:58: <i className="gg-arrow-left" />
|
||||||
|
- src/newsreader/js/components/Messages.js:20: {message.text} <i className="gg-close" onClick={() => this.close(index)} />
|
||||||
|
- src/newsreader/templates/base.html:31: <i class="theme-switcher gg-dark-mode"></i>
|
||||||
|
- src/newsreader/news/core/templates/news/core/widgets/rule.html:10: <i class="gg-image"></i>
|
||||||
|
- src/newsreader/news/collection/templates/news/collection/views/rules.html:61: <i class="gg-danger"></i>
|
||||||
|
- src/newsreader/news/collection/templates/news/collection/views/rules.html:63: <i class="gg-check"></i>
|
||||||
|
- src/newsreader/news/collection/templates/news/collection/views/rules.html:68: <i class="gg-check"></i>
|
||||||
|
- src/newsreader/news/collection/templates/news/collection/views/rules.html:70: <i class="gg-play-pause"></i>
|
||||||
|
- src/newsreader/scss/components/messages/_messages.scss:32: & .gg-close {
|
||||||
|
- src/newsreader/scss/components/rules/_rules.scss:30: & .gg-image {
|
||||||
|
|
||||||
|
- New dark colors for buttons
|
||||||
Loading…
Add table
Add a link
Reference in a new issue