theme: Add a new style for .summary-source-button:focus

We don't need .summary-source-button:selected because we are moving the
focus to the summary item when it is clicked and therefore it is always
focused.

https://bugzilla.gnome.org/show_bug.cgi?id=681519
This commit is contained in:
Debarshi Ray 2012-08-14 20:55:41 +02:00 committed by Jasper St. Pierre
parent c668d16a00
commit e937fd07e5

View File

@ -1400,17 +1400,16 @@ StButton.popup-menu-item:insensitive {
} }
.summary-source-button { .summary-source-button {
border-radius: 4px;
transition-duration: 100; transition-duration: 100;
} }
.summary-source-button:hover { .summary-source-button:hover {
background-color: rgba(255,255,255,0.1); background-color: rgba(255,255,255,0.1);
border-radius: 4px;
} }
.summary-source-button:selected { .summary-source-button:focus {
background-image: url("running-indicator.svg"); background-color: rgba(255,255,255,0.33);
background-size: contain;
} }
.summary-source { .summary-source {