2012-11-24 01:35:39 +01:00
|
|
|
/**
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
* @provides sprite-icons-css
|
2012-11-24 01:35:39 +01:00
|
|
|
* @generated
|
|
|
|
*/
|
|
|
|
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
.sprite-icons {
|
|
|
|
background-image: url(/rsrc/image/sprite-icons.png);
|
2012-11-24 01:35:39 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media
|
|
|
|
only screen and (min-device-pixel-ratio: 1.5),
|
|
|
|
only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
.sprite-icons {
|
|
|
|
background-image: url(/rsrc/image/sprite-icons-X2.png);
|
2013-10-15 16:34:48 +02:00
|
|
|
background-size: 225px 240px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Use application icons for "Eye" menu and Crumbs
Summary:
Issues here:
- Need an application-sized "eye", or a "home" icon for "Phabricator Home".
- Some of the "apps_lb_2x" sliced images are the "_dark_" versions, not the light versions.
- If you slice an application-sized "logout" (power off) icon and application-sized "help" (questionmark in circle) icon I can replace the current menu icons and nearly get rid of "autosprite".
- To replace the icons on /applications/, the non-retina size is "4x", so we'd need "8x" for retina. Alternatively I can reduce the icon sizes by 50%.
- The "Help", "Settings" and "Logout" items currently have a "glowing" hover state, which needs a variant (or we can drop it).
- The /applications/ icons have a white hover state (or we can drop it).
- The 1x application (14x14) icons aren't used anywhere right now, should they be? Maybe in the feed in the future, etc?
- The "apps-2x" and "apps-large" sheets are the same image, but getting them to actually use the same file is a bit tricky, so I just left them separate for now.
Test Plan:
{F26698}
{F26699}
Reviewers: chad
Reviewed By: chad
CC: aran
Maniphest Tasks: T1960
Differential Revision: https://secure.phabricator.com/D4108
2012-12-07 22:37:28 +01:00
|
|
|
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
.icons-action-menu {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: 0px 0px;
|
|
|
|
}
|
|
|
|
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
.icons-arrow_left {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -15px 0px;
|
|
|
|
}
|
|
|
|
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
.icons-arrow_right {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -30px 0px;
|
|
|
|
}
|
|
|
|
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
.icons-attach {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -45px 0px;
|
|
|
|
}
|
|
|
|
|
Add action icons to object list views
Summary:
We have a few interfaces where add "Edit", "Delete" or some other action to a list. Currently, this happens via icons, but these are cumbersome and weird, are inconsistent, can't be workflow'd, are hard to hit on desktops and virtually impossible to hit on mobile, and generally just feel iffy to me. Prominent examples are Projects and Flags. I'd like to try adding an "edit" action to Maniphest (to provide quick edit from list views, basically). It looks like some of Releeph would benefit here, as well.
Instead, provide first-class actions:
{F42978}
They produce targets which my meaty ham-fists can plausibly hit on mobile, too:
{F42979}
(We could do some kind of swipe-to-expose thing eventually, but I think putting them by default is OK?)
Test Plan: Added UIExamples. Checked desktop/mobile.
Reviewers: chad, btrahan, edward
Reviewed By: btrahan
CC: aran
Differential Revision: https://secure.phabricator.com/D5890
2013-05-10 21:57:01 +02:00
|
|
|
.icons-blame {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -60px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-calendar {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -75px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-check {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -90px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-comment {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -105px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-computer {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -120px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-create {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -135px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-data {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -150px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-delete {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -165px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-disable {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -180px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-dislike {
|
2012-11-24 01:35:39 +01:00
|
|
|
background-position: -195px 0px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-download-alt {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -210px 0px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-download {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-edit {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-enable {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-file {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-film {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-0 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-1 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-2 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-3 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-4 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-5 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-6 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-7 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-ghost {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -210px -15px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-folder-open {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -30px;
|
2013-06-06 03:59:23 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-fork {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-herald {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-highlight {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-history {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-home {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-image {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-like {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-link {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-info {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-ok {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-warning {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lock {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-love {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lower-priority {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -210px -30px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-merge {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-message {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-meta-mta {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-move {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-music {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-new {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -45px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-none {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-normal-priority {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-perflab {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-preview {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-project {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-raise-priority {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-refresh {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-remove {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-search {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -210px -45px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-start-sandcastle {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-tag {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-transcript {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-undo {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -60px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unlock {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unmerge {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unpublish {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-upload {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-user {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-warning {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-world {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-wrench {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-zip {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-action-menu-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-arrow_left-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -210px -60px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-arrow_right-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-attach-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-blame-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-calendar-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-check-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-comment-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-computer-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-create-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-data-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-delete-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-disable-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-dislike-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-download-alt-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-download-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -75px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-edit-grey {
|
|
|
|
background-position: -210px -75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-enable-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-file-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-film-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-0-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-1-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-2-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-3-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-4-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-5-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-6-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-7-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-ghost-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-folder-open-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -90px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-fork-grey {
|
|
|
|
background-position: -210px -90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-herald-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-highlight-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-history-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-home-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-image-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-like-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-link-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-info-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-ok-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-warning-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lock-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-love-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lower-priority-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-merge-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -105px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-message-grey {
|
|
|
|
background-position: -210px -105px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-meta-mta-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -120px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-move-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-music-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-new-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-none-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-normal-priority-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-perflab-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-preview-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-project-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-raise-priority-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-refresh-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-remove-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-search-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -120px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-start-sandcastle-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -120px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-tag-grey {
|
|
|
|
background-position: -210px -120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-transcript-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-undo-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unlock-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unmerge-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unpublish-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-upload-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-user-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-warning-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-world-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-wrench-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-zip-grey {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-action-menu-white, .device-desktop .phabricator-action-view:hover .icons-action-menu, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-action-menu {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-arrow_left-white, .device-desktop .phabricator-action-view:hover .icons-arrow_left, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-arrow_left {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-arrow_right-white, .device-desktop .phabricator-action-view:hover .icons-arrow_right, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-arrow_right {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -135px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-attach-white, .device-desktop .phabricator-action-view:hover .icons-attach, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-attach {
|
|
|
|
background-position: -210px -135px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-blame-white, .device-desktop .phabricator-action-view:hover .icons-blame, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-blame {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-calendar-white, .device-desktop .phabricator-action-view:hover .icons-calendar, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-calendar {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-check-white, .device-desktop .phabricator-action-view:hover .icons-check, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-check {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-comment-white, .device-desktop .phabricator-action-view:hover .icons-comment, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-comment {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-computer-white, .device-desktop .phabricator-action-view:hover .icons-computer, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-computer {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-create-white, .device-desktop .phabricator-action-view:hover .icons-create, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-create {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-data-white, .device-desktop .phabricator-action-view:hover .icons-data, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-data {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-delete-white, .device-desktop .phabricator-action-view:hover .icons-delete, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-delete {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -150px;
|
2012-12-16 03:50:06 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-disable-white, .device-desktop .phabricator-action-view:hover .icons-disable, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-disable {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-dislike-white, .device-desktop .phabricator-action-view:hover .icons-dislike, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-dislike {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-download-alt-white, .device-desktop .phabricator-action-view:hover .icons-download-alt, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-download-alt {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-download-white, .device-desktop .phabricator-action-view:hover .icons-download, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-download {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-edit-white, .device-desktop .phabricator-action-view:hover .icons-edit, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-edit {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-enable-white, .device-desktop .phabricator-action-view:hover .icons-enable, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-enable {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -150px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-file-white, .device-desktop .phabricator-action-view:hover .icons-file, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-file {
|
|
|
|
background-position: -210px -150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-film-white, .device-desktop .phabricator-action-view:hover .icons-film, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-film {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-0-white, .device-desktop .phabricator-action-view:hover .icons-flag-0, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-0 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-1-white, .device-desktop .phabricator-action-view:hover .icons-flag-1, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-1 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-2-white, .device-desktop .phabricator-action-view:hover .icons-flag-2, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-2 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-3-white, .device-desktop .phabricator-action-view:hover .icons-flag-3, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-3 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-4-white, .device-desktop .phabricator-action-view:hover .icons-flag-4, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-4 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-5-white, .device-desktop .phabricator-action-view:hover .icons-flag-5, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-5 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-6-white, .device-desktop .phabricator-action-view:hover .icons-flag-6, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-6 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -165px;
|
2012-12-16 03:50:06 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-7-white, .device-desktop .phabricator-action-view:hover .icons-flag-7, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-7 {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-ghost-white, .device-desktop .phabricator-action-view:hover .icons-flag-ghost, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag-ghost {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-flag-white, .device-desktop .phabricator-action-view:hover .icons-flag, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-flag {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-folder-open-white, .device-desktop .phabricator-action-view:hover .icons-folder-open, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-folder-open {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-fork-white, .device-desktop .phabricator-action-view:hover .icons-fork, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-fork {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -180px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-herald-white, .device-desktop .phabricator-action-view:hover .icons-herald, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-herald {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -165px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-highlight-white, .device-desktop .phabricator-action-view:hover .icons-highlight, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-highlight {
|
|
|
|
background-position: -210px -165px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-history-white, .device-desktop .phabricator-action-view:hover .icons-history, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-history {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: 0px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-home-white, .device-desktop .phabricator-action-view:hover .icons-home, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-home {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -15px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-image-white, .device-desktop .phabricator-action-view:hover .icons-image, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-image {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -30px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-like-white, .device-desktop .phabricator-action-view:hover .icons-like, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-like {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -45px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-link-white, .device-desktop .phabricator-action-view:hover .icons-link, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-link {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -60px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-info-white, .device-desktop .phabricator-action-view:hover .icons-lint-info, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-lint-info {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -75px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-ok-white, .device-desktop .phabricator-action-view:hover .icons-lint-ok, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-lint-ok {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -90px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lint-warning-white, .device-desktop .phabricator-action-view:hover .icons-lint-warning, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-lint-warning {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -105px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lock-white, .device-desktop .phabricator-action-view:hover .icons-lock, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-lock {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -120px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-love-white, .device-desktop .phabricator-action-view:hover .icons-love, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-love {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -135px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-lower-priority-white, .device-desktop .phabricator-action-view:hover .icons-lower-priority, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-lower-priority {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -150px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-merge-white, .device-desktop .phabricator-action-view:hover .icons-merge, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-merge {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -165px -180px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-message-white, .device-desktop .phabricator-action-view:hover .icons-message, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-message {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -180px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-meta-mta-white, .device-desktop .phabricator-action-view:hover .icons-meta-mta, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-meta-mta {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -195px -180px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-move-white, .device-desktop .phabricator-action-view:hover .icons-move, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-move {
|
|
|
|
background-position: -210px -180px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-music-white, .device-desktop .phabricator-action-view:hover .icons-music, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-music {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: 0px -195px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-new-white, .device-desktop .phabricator-action-view:hover .icons-new, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-new {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -15px -195px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-none-white, .device-desktop .phabricator-action-view:hover .icons-none, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-none {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -30px -195px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-normal-priority-white, .device-desktop .phabricator-action-view:hover .icons-normal-priority, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-normal-priority {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -45px -195px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-perflab-white, .device-desktop .phabricator-action-view:hover .icons-perflab, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-perflab {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -60px -195px;
|
2012-11-24 01:35:39 +01:00
|
|
|
}
|
2012-12-16 03:50:06 +01:00
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-preview-white, .device-desktop .phabricator-action-view:hover .icons-preview, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-preview {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -75px -195px;
|
2012-12-16 03:50:06 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-project-white, .device-desktop .phabricator-action-view:hover .icons-project, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-project {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -90px -195px;
|
2012-12-16 03:50:06 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-raise-priority-white, .device-desktop .phabricator-action-view:hover .icons-raise-priority, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-raise-priority {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -105px -195px;
|
2012-12-16 03:50:06 +01:00
|
|
|
}
|
2012-12-17 01:33:02 +01:00
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-refresh-white, .device-desktop .phabricator-action-view:hover .icons-refresh, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-refresh {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -120px -195px;
|
2012-12-17 01:33:02 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-remove-white, .device-desktop .phabricator-action-view:hover .icons-remove, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-remove {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -135px -195px;
|
2012-12-17 01:33:02 +01:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-search-white, .device-desktop .phabricator-action-view:hover .icons-search, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-search {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -150px -195px;
|
2012-12-17 01:33:02 +01:00
|
|
|
}
|
2013-04-09 21:42:03 +02:00
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-start-sandcastle-white, .device-desktop .phabricator-action-view:hover .icons-start-sandcastle, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-start-sandcastle {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -165px -195px;
|
2013-04-09 21:42:03 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-tag-white, .device-desktop .phabricator-action-view:hover .icons-tag, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-tag {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -180px -195px;
|
2013-04-09 21:42:03 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-transcript-white, .device-desktop .phabricator-action-view:hover .icons-transcript, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-transcript {
|
2013-06-07 00:06:08 +02:00
|
|
|
background-position: -195px -195px;
|
2013-04-09 21:42:03 +02:00
|
|
|
}
|
2013-04-20 04:08:59 +02:00
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-undo-white, .device-desktop .phabricator-action-view:hover .icons-undo, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-undo {
|
|
|
|
background-position: -210px -195px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons-unlock-white, .device-desktop .phabricator-action-view:hover .icons-unlock, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-unlock {
|
2013-08-30 00:59:15 +02:00
|
|
|
background-position: 0px -210px;
|
2013-04-20 04:08:59 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unmerge-white, .device-desktop .phabricator-action-view:hover .icons-unmerge, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-unmerge {
|
2013-08-30 00:59:15 +02:00
|
|
|
background-position: -15px -210px;
|
2013-04-20 04:08:59 +02:00
|
|
|
}
|
2013-06-06 03:59:23 +02:00
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-unpublish-white, .device-desktop .phabricator-action-view:hover .icons-unpublish, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-unpublish {
|
2013-08-30 00:59:15 +02:00
|
|
|
background-position: -30px -210px;
|
2013-06-06 03:59:23 +02:00
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-upload-white, .device-desktop .phabricator-action-view:hover .icons-upload, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-upload {
|
2013-08-30 00:59:15 +02:00
|
|
|
background-position: -45px -210px;
|
2013-06-06 03:59:23 +02:00
|
|
|
}
|
2013-09-24 21:37:39 +02:00
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-user-white, .device-desktop .phabricator-action-view:hover .icons-user, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-user {
|
2013-09-24 21:37:39 +02:00
|
|
|
background-position: -60px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-warning-white, .device-desktop .phabricator-action-view:hover .icons-warning, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-warning {
|
2013-09-24 21:37:39 +02:00
|
|
|
background-position: -75px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-world-white, .device-desktop .phabricator-action-view:hover .icons-world, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-world {
|
2013-09-24 21:37:39 +02:00
|
|
|
background-position: -90px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-wrench-white, .device-desktop .phabricator-action-view:hover .icons-wrench, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-wrench {
|
2013-09-24 21:37:39 +02:00
|
|
|
background-position: -105px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:34:48 +02:00
|
|
|
.icons-zip-white, .device-desktop .phabricator-action-view:hover .icons-zip, .device-desktop .phui-list-sidenav .phui-list-item-href:hover .icons-zip {
|
2013-09-24 21:37:39 +02:00
|
|
|
background-position: -120px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-23 19:16:09 +02:00
|
|
|
.remarkup-assist- {
|
2013-09-24 21:37:39 +02:00
|
|
|
background-position: -135px -210px;
|
|
|
|
}
|
2013-09-25 00:43:31 +02:00
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-b {
|
2013-09-25 00:43:31 +02:00
|
|
|
background-position: -150px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-code {
|
2013-09-25 00:43:31 +02:00
|
|
|
background-position: -165px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-fullscreen {
|
2013-09-25 00:43:31 +02:00
|
|
|
background-position: -180px -210px;
|
|
|
|
}
|
2013-09-30 02:53:37 +02:00
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-control-fullscreen-mode .remarkup-assist-fullscreen {
|
2013-09-30 02:53:37 +02:00
|
|
|
background-position: -195px -210px;
|
|
|
|
}
|
2013-10-15 16:34:48 +02:00
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-help {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -210px -210px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-i {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: 0px -225px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-image {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -15px -225px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-larger {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -30px -225px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-meme {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -45px -225px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-ol {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -60px -225px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-table {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -75px -225px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-tag {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -90px -225px;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:49:13 +02:00
|
|
|
.remarkup-assist-tt {
|
2013-10-15 16:34:48 +02:00
|
|
|
background-position: -105px -225px;
|
|
|
|
}
|
2013-10-18 00:49:13 +02:00
|
|
|
|
|
|
|
.remarkup-assist-ul {
|
|
|
|
background-position: -120px -225px;
|
|
|
|
}
|