Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
do not let incompatible unreviewed apps be installed (bug 751128)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvan committed May 3, 2012
1 parent 086880d commit 4eafe53
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
23 changes: 14 additions & 9 deletions media/css/impala/buttons.less
Expand Up @@ -42,14 +42,14 @@ button.bad, .button.bad, .button.developer, .button.scary { // Red
padding-left: 24px;
.sprite-pos(3, 64, 3px);
}
&.disabled, &.concealed {
&.warning, &.caution {
span {
.sprite-pos(4, 64, 3px);
.sprite-pos(5, 64, 3px);
}
}
&.warning, &.caution {
&.disabled, &.concealed, &.caution.concealed {
span {
.sprite-pos(5, 64, 3px);
.sprite-pos(4, 64, 3px);
}
}
}
Expand All @@ -64,7 +64,8 @@ button.bad, .button.bad, .button.developer, .button.scary { // Red
}
}
&.disabled,
&.concealed {
&.concealed,
&.caution.concealed {
top: 0;
span {
.sprite-pos(1, 64, 3px);
Expand Down Expand Up @@ -127,7 +128,7 @@ button.bad, .button.bad, .button.developer, .button.scary { // Red
padding: 0 24px 0 0;
.sprite-pos-right(3, 64, 3px);
}
&.disabled, &.concealed {
&.disabled, &.concealed, &.caution.concealed {
span {
.sprite-pos-right(4, 64, 3px);
}
Expand All @@ -145,7 +146,8 @@ button.bad, .button.bad, .button.developer, .button.scary { // Red
}
}
&.disabled,
&.concealed {
&.concealed,
&.caution.concealed {
span {
.sprite-pos-right(1, 64, 3px);
}
Expand Down Expand Up @@ -287,13 +289,16 @@ button.bad, .button.bad, .button.developer, .button.scary { // Red

button[disabled],
.button.disabled,
.button.concealed {
.button.concealed,
.button.caution.concealed {
background: #c1c5ca;
.gradient-two-color(#d1d4d7, #c1c5ca);
color: #919497;
.box-shadow(0 3px rgba(0, 0, 0, 0.05), 0 -4px rgba(0, 0, 0, 0.05) inset);
text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
button[disabled] {
button[disabled],
.button.disabled,
.button.caution.concealed {
pointer-events: none;
}
3 changes: 3 additions & 0 deletions media/css/impala/popups.less
Expand Up @@ -238,4 +238,7 @@
background-color: @note-gray;
text-decoration: none;
}
p, li {
line-height: 1.3;
}
}

0 comments on commit 4eafe53

Please sign in to comment.