app-notifications.css 910 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*********************
  2. * app notifications *
  3. *********************/
  4. .app-notification {
  5. border-style: solid;
  6. border-color: shade(@header_bg_color, 0.9);
  7. border-width: 0 1px 1px 1px;
  8. border-bottom-right-radius: 5px;
  9. border-bottom-left-radius: 5px;
  10. padding: 8px;
  11. background-color: alpha(@header_bg_color,0.95);
  12. background-image: none;
  13. color: @header_fg_color;
  14. }
  15. .app-notification .button,
  16. .app-notification .button:hover {
  17. background-color: @cyan;
  18. color: @selected_fg_color;
  19. }
  20. .app-notification .button:active,
  21. .app-notification .button:hover:active {
  22. background-color: shade(@cyan,0.9);
  23. color: @selected_fg_color;
  24. }
  25. .app-notification .button.flat {
  26. background-color: transparent;
  27. color: @header_fg_color;
  28. }
  29. .app-notification .button.flat:hover,
  30. .app-notification .button.flat:hover:active {
  31. background-color: transparent;
  32. color: @red;
  33. }