bwfang1235

Streamjar Transparency Testing

Sep 24th, 2016
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. None of these seem to do anything, but are included for covering all of the backgrounds in the tree:
  2. .overlay { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  3. .overlay .canvas { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  4. .overlay .canvas .element[data-type='banner'] { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  5. .overlay .canvas .element[data-type='banner']>div { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  6. .overlay .canvas .element[data-type='banner'] .active { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  7. .overlay .canvas .element[data-type='banner']>div .active { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  8. .overlay .canvas .element[data-type='banner'] .active[data-data="latestdonations"] { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  9. .overlay .canvas .element[data-type='banner']>div .active[data-data="latestdonations"] { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  10.  
  11. This attempts to change class Title to white, does nothing:
  12. .overlay .canvas .element[data-type='banner'] .active .title { background-color: rgba(255, 255, 255, 1.0); color: #fff; }
  13.  
  14. This changes the class Inner box:
  15. .overlay .canvas .element[data-type='banner'] .active .inner { background-color: rgba(0, 0, 0, 1.0); color: #fff; }
  16.  
  17. This shows that the color is inherited along the way. It should be transparent black, but it shows the color behind instead:
  18. .overlay .canvas .element[data-type='banner'] .active .inner { background-color: rgba(0, 0, 0, 0.5); color: #fff; }
Add Comment
Please, Sign In to add comment