Page where problem found?
Originally on
https://github.com/Techtonica/techtonica.org/blob/develop/templates/base.html
- A block of code identified in comments as Flipcause Integration Code
- CSS in two internal stylesheets
Moving CSS to
https://github.com/Techtonica/techtonica.org/blob/develop/static/sass/style.scss
Type of problem
As part of #689 I'm moving CSS code from base.html to an SCSS partial file. However, these styles all seem to be related to FlipCause code which was partially removed in #848. From a quick search for those styles, they seem to be used only in the Flipcause Integration Code block. If this is the case, that block, and all the styles related to them, could be deleted.
Suggested Solution
Investigation is needed to confirm whether these styles are being used anywhere else. If they are, we should rename these styles and classes that use them. If not, we should remove them.
The block of Flipcause code that remains in base.html (along with corresponding JS code) can be removed if Flipcause is indeed no longer being used, which would then mean the CSS moved to the scss partial file can also be deleted.
Acceptance Criteria
- The Flipcause Integration code block is deleted if it is no longer being used
- Styles that were moved to the bottom of style.scss (identified with a comment that precedes them) are either:
a. renamed, along with the corresponding HTML classes
Ex. renaming away from Flipcause and fc- prefixed names to something like modal or donation-button
OR
b. removed (along with Flipcause code)
Page where problem found?
Originally on
https://github.com/Techtonica/techtonica.org/blob/develop/templates/base.html
Moving CSS to
https://github.com/Techtonica/techtonica.org/blob/develop/static/sass/style.scss
Type of problem
As part of #689 I'm moving CSS code from base.html to an SCSS partial file. However, these styles all seem to be related to FlipCause code which was partially removed in #848. From a quick search for those styles, they seem to be used only in the Flipcause Integration Code block. If this is the case, that block, and all the styles related to them, could be deleted.
Suggested Solution
Investigation is needed to confirm whether these styles are being used anywhere else. If they are, we should rename these styles and classes that use them. If not, we should remove them.
The block of Flipcause code that remains in base.html (along with corresponding JS code) can be removed if Flipcause is indeed no longer being used, which would then mean the CSS moved to the scss partial file can also be deleted.
Acceptance Criteria
a. renamed, along with the corresponding HTML classes
Ex. renaming away from Flipcause and
fc-prefixed names to something likemodalordonation-buttonOR
b. removed (along with Flipcause code)