Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fc-pregmod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pregmodfan
fc-pregmod
Commits
e1fa3edf
Commit
e1fa3edf
authored
6 years ago
by
deimios666
Browse files
Options
Downloads
Patches
Plain Diff
Color theme fix for gradients
parent
2ee0c6fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2329
Flipped color theme fix for image gradients
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/js/colorModeJS.tw
+10
-15
10 additions, 15 deletions
src/js/colorModeJS.tw
with
10 additions
and
15 deletions
src/js/colorModeJS.tw
+
10
−
15
View file @
e1fa3edf
:: colorModeJS [script]
window.setColors = function(colorMap){
let props = ["color","backgroundColor","backgroundImage"];
let styleSheetArray = Array.from(document.styleSheets);
styleSheetArray.forEach( styleSheet => {
let cssRules = Array.from(styleSheet.cssRules);
cssRules.forEach( cssRule => {
if ( cssRule.type === 1 ){
let color = cssRule.style.color;
let bgcolor = cssRule.style.backgroundColor;
if (
color != "" &&
color != "inherit" ){
cssRule.style.color = colorMap[color] || color;
console.log('color: ',color);
}
if (
bgcolor != "" &&
bgcolor != "inherit" &&
bgcolor != "transparent" ){
cssRule.style.backgroundColor = colorMap[bgcolor] || bgcolor;
console.log('color: ',color);
}
props.forEach( propName => {
let currentValue = cssRule.style[propName];
if (
currentValue != "" &&
currentValue != "inherit" &&
currentValue != "transparent"){
cssRule.style[propName] = colorMap[currentValue] || currentValue;
}
})
}
});
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment