mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6d20a57ce0
Summary: No workflow dialog when subscribing or unsubscribing from a Differential Revision Test Plan: Repeatedly subscribe and unsubscribe to a revision. Enter refractory period due to speed of page gen. Reviewed By: epriestley Reviewers: epriestley CC: epriestley Differential Revision: 128
60 lines
1.5 KiB
CSS
60 lines
1.5 KiB
CSS
/**
|
|
* @provides aphront-headsup-action-list-view-css
|
|
*/
|
|
|
|
|
|
.aphront-headsup-action-list {
|
|
float: right;
|
|
width: 250px;
|
|
background: #cfcfbf;
|
|
border: 1px solid #666622;
|
|
border-width: 0px 0px 1px 1px;
|
|
margin: -15px -20px 1em 0;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.aphront-headsup-action-list a,
|
|
.aphront-headsup-action-list span,
|
|
.aphront-headsup-action-list button {
|
|
background-position: 8px center;
|
|
background-repeat: no-repeat;
|
|
display: block;
|
|
padding: 4px 4px 4px 32px;
|
|
line-height: normal;
|
|
}
|
|
|
|
.aphront-headsup-action-list span.unavailable {
|
|
color: #666666;
|
|
font-style: italic;
|
|
}
|
|
|
|
.aphront-headsup-action-list .subscribe-rem {
|
|
background-image: url(/rsrc/image/icon/unsubscribe.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .subscribe-add {
|
|
background-image: url(/rsrc/image/icon/subscribe.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-edit,
|
|
.aphront-headsup-action-list .revision-edit {
|
|
background-image: url(/rsrc/image/icon/tango/edit.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-attach,
|
|
.aphront-headsup-action-list .attach-maniphest {
|
|
background-image: url(/rsrc/image/icon/tango/attachment.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .action-upload {
|
|
background-image: url(/rsrc/image/icon/tango/upload.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .transcripts-metamta {
|
|
background-image: url(/rsrc/image/icon/tango/log.png);
|
|
}
|
|
|
|
.aphront-headsup-action-list .transcripts-herald {
|
|
background-image: url(/rsrc/image/icon/tango/log.png);
|
|
}
|
|
|