123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /***********
- * infobar *
- ***********/
- GtkInfoBar {
- border-width: 0px;
- border-style: none;
- }
- .info {
- border: none;
- background-color: shade(@info_bg_color,0.9);
- background-image: none;
- color: @info_fg_color;
- }
- .error .button {
- border: none;
- color: @info_fg_color;
- background-image: none;
- background-color: @info_bg_color;
- }
- .error .button:hover {
- color: @info_fg_color;
- background-image: none;
- background-color: shade(@info_bg_color,1.1);
- }
- .error .button:active {
- color: @info_fg_color;
- background-image: none;
- background-color: shade(@info_bg_color,1.2);
- }
- .warning {
- background-color: shade(@warning_bg_color, 0.9);
- background-image: none;
- color: @warning_fg_color;
- }
- .warning .button {
- border: none;
- color: @warning_fg_color;
- background-image: none;
- background-color: @warning_bg_color;
- }
- .warning .button:hover {
- color: @question_fg_color;
- background-image: none;
- background-color: shade(@warning_bg_color,1.1);
- }
- .warning .button:active {
- color: @question_fg_color;
- background-image: none;
- background-color: shade(@warning_bg_color,1.2);
- }
- .question {
- background-color: shade(@question_bg_color, 0.9);
- background-image: none;
- color: @question_fg_color;
- }
- .question .button {
- border: none;
- color: @question_fg_color;
- background-image: none;
- background-color: @question_bg_color;
- }
- .question .button:hover {
- color: @question_fg_color;
- background-image: none;
- background-color: shade(@question_bg_color,1.1);
- }
- .question .button:active {
- color: @question_fg_color;
- background-image: none;
- background-color: shade(@question_bg_color,1.2);
- }
- .error {
- background-color: shade(@error_bg_color, 0.9);
- background-image: none;
- color: @error_fg_color;
- }
- .error .button {
- border: none;
- color: @error_fg_color;
- background-image: none;
- background-color: @error_bg_color;
- }
- .error .button:hover {
- color: @error_fg_color;
- background-image: none;
- background-color: shade(@error_bg_color,1.1);
- }
- .error .button:active {
- color: @error_fg_color;
- background-image: none;
- background-color: shade(@error_bg_color,1.2);
- }
|