1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Fix bubbles on app launch buttons.

Summary: I missed a case where the blue bubble might exist alone without the grey.

Test Plan: Tested Flags.

Reviewers: epriestley, vrana

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5095
This commit is contained in:
Chad Little 2013-02-22 20:33:06 -08:00
parent bd95121b33
commit 11f6e73328
2 changed files with 7 additions and 4 deletions

View file

@ -2551,7 +2551,7 @@ celerity_register_resource_map(array(
),
'phabricator-application-launch-view-css' =>
array(
'uri' => '/res/db5f7ed5/rsrc/css/application/base/phabricator-application-launch-view.css',
'uri' => '/res/13c3d7f3/rsrc/css/application/base/phabricator-application-launch-view.css',
'type' => 'css',
'requires' =>
array(

View file

@ -140,14 +140,13 @@ a.phabricator-application-launch-container:hover {
border-radius: 10px;
color: white;
font-weight: bold;
padding: 1px 6px 2px 0;
padding: 1px 0 2px;
border: 2px solid #333;
font-size: 11px;
box-shadow: 0 0px 2px #000;
}
.phabricator-application-attention-count {
margin-right: -2px;
background-color: rgb(0, 122, 255);
border-radius: 10px;
color: white;
@ -158,7 +157,11 @@ a.phabricator-application-launch-container:hover {
}
.phabricator-application-warning-count {
padding-left: 5px;
padding: 6px;
}
.phabricator-application-attention-count + .phabricator-application-warning-count {
margin-left: -2px;
}
.phabricator-application-launch-attention {