custom_overlay.css 1008 B

12345678910111213141516171819202122232425262728
  1. /*
  2. ===============================================================================
  3. This file may contain extra CSS rules loaded on all apps page (*if* the app
  4. nginx's conf does include the appropriate snippet) for the small YunoHost
  5. button in bottom-right corner + portal overlay.
  6. The yunohost button corresponds to : #ynh-overlay-switch
  7. The yunohost portal overlay / iframe corresponds to : #ynh-overlay
  8. BE CAREFUL that you should *not* add too-general rules that apply to
  9. non-yunohost elements (for instance all 'a' or 'p' elements...) as it will
  10. likely break app's rendering
  11. ===============================================================================
  12. */
  13. #ynh-overlay-switch {
  14. /* FIXME : idk if this is an issue or not to have /yunohost/sso hard-coded here */
  15. background-image: url("logo_tera_simple.png");
  16. border-color: #dbdbdb;
  17. background-color: #dbdbdb;
  18. opacity: 0.9;
  19. border-radius: 20px;
  20. }
  21. #ynh-overlay-switch:hover {
  22. border-color: #bababa;
  23. background-color: #bababa;
  24. }