Commit 30496eaa authored by Dão Gottwald's avatar Dão Gottwald
Browse files

Bug 417079 - pressed state for location bar identity box and search bar engine button. r=ventnor

parent 445af6a0
Loading
Loading
Loading
Loading
+11 −2
Original line number Diff line number Diff line
@@ -880,6 +880,15 @@ toolbar[iconsize="small"] #paste-button[disabled="true"] {
  outline: 1px dotted -moz-DialogText;
}

#identity-box:hover > hbox {
  background-color: rgba(255, 255, 255, .2);
}

#identity-box:hover:active > hbox,
#identity-box[open="true"] > hbox {
  background-color: rgba(0, 0, 0, .1);
}

#identity-icon-label {
  padding: 0 2px;
  margin: 0;
@@ -889,12 +898,12 @@ toolbar[iconsize="small"] #paste-button[disabled="true"] {
  display: none;
}

#identity-box.verifiedDomain > hbox {
#identity-box.verifiedDomain {
  background-color: rgba(30, 80, 170, 0.7);
  color: white;
}

#identity-box.verifiedIdentity > hbox {
#identity-box.verifiedIdentity {
  background-color: rgba(50, 150, 50, 0.8);
  color: white;
}
+9 −0
Original line number Diff line number Diff line
@@ -42,6 +42,15 @@
  border: 0;
}

.searchbar-engine-button:hover > .button-box {
  background-color: rgba(255, 255, 255, .2);
}

.searchbar-engine-button:hover:active > .button-box,
.searchbar-engine-button[open="true"] > .button-box {
  background-color: rgba(0, 0, 0, .1);
}

.searchbar-engine-button[addengines="true"] {
  -moz-box-shadow: 0 0 5px Highlight inset, 0 0 20px Highlight inset;
}