infobar.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /***********
  2. * infobar *
  3. ***********/
  4. GtkInfoBar {
  5. border-width: 0px;
  6. border-style: none;
  7. }
  8. .info {
  9. border: none;
  10. background-color: shade(@info_bg_color,0.9);
  11. background-image: none;
  12. color: @info_fg_color;
  13. }
  14. .error .button {
  15. border: none;
  16. color: @info_fg_color;
  17. background-image: none;
  18. background-color: @info_bg_color;
  19. }
  20. .error .button:hover {
  21. color: @info_fg_color;
  22. background-image: none;
  23. background-color: shade(@info_bg_color,1.1);
  24. }
  25. .error .button:active {
  26. color: @info_fg_color;
  27. background-image: none;
  28. background-color: shade(@info_bg_color,1.2);
  29. }
  30. .warning {
  31. background-color: shade(@warning_bg_color, 0.9);
  32. background-image: none;
  33. color: @warning_fg_color;
  34. }
  35. .warning .button {
  36. border: none;
  37. color: @warning_fg_color;
  38. background-image: none;
  39. background-color: @warning_bg_color;
  40. }
  41. .warning .button:hover {
  42. color: @question_fg_color;
  43. background-image: none;
  44. background-color: shade(@warning_bg_color,1.1);
  45. }
  46. .warning .button:active {
  47. color: @question_fg_color;
  48. background-image: none;
  49. background-color: shade(@warning_bg_color,1.2);
  50. }
  51. .question {
  52. background-color: shade(@question_bg_color, 0.9);
  53. background-image: none;
  54. color: @question_fg_color;
  55. }
  56. .question .button {
  57. border: none;
  58. color: @question_fg_color;
  59. background-image: none;
  60. background-color: @question_bg_color;
  61. }
  62. .question .button:hover {
  63. color: @question_fg_color;
  64. background-image: none;
  65. background-color: shade(@question_bg_color,1.1);
  66. }
  67. .question .button:active {
  68. color: @question_fg_color;
  69. background-image: none;
  70. background-color: shade(@question_bg_color,1.2);
  71. }
  72. .error {
  73. background-color: shade(@error_bg_color, 0.9);
  74. background-image: none;
  75. color: @error_fg_color;
  76. }
  77. .error .button {
  78. border: none;
  79. color: @error_fg_color;
  80. background-image: none;
  81. background-color: @error_bg_color;
  82. }
  83. .error .button:hover {
  84. color: @error_fg_color;
  85. background-image: none;
  86. background-color: shade(@error_bg_color,1.1);
  87. }
  88. .error .button:active {
  89. color: @error_fg_color;
  90. background-image: none;
  91. background-color: shade(@error_bg_color,1.2);
  92. }