mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
9a6c912ef6
Summary: Fixes a weird string in the flag dialog Migrated to ObjectItemView (Cards) Removed filters from side nav (unnecessary) Go away, go away, panel. Nobody will miss you. Adding sorting/ordering to Flag (separation like in Maniphest ordering still remaining) Hacking our way in DifferentialRevisionListController thanks to panels (who added `->setFlush()` btw? It's awesome!) Test Plan: I would not dare to stand here if it did not work. Reviewers: epriestley, chad, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5449
57 lines
1.2 KiB
CSS
57 lines
1.2 KiB
CSS
/**
|
|
* @provides phabricator-flag-css
|
|
*/
|
|
|
|
.phabricator-flag-icon {
|
|
padding: 8px;
|
|
background: transparent 0 0 no-repeat;
|
|
}
|
|
|
|
.phabricator-object-item .phabricator-flag-icon {
|
|
float: left;
|
|
margin: 2px;
|
|
margin-right: 8px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.phabricator-flag-radio {
|
|
padding-left: 18px;
|
|
margin: 1px;
|
|
background: transparent 0 0 no-repeat;
|
|
}
|
|
|
|
.phabricator-flag-color-0 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_red.png);
|
|
}
|
|
|
|
.phabricator-flag-color-1 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_orange.png);
|
|
}
|
|
|
|
.phabricator-flag-color-2 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_yellow.png);
|
|
}
|
|
|
|
.phabricator-flag-color-3 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_green.png);
|
|
}
|
|
|
|
.phabricator-flag-color-4 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_blue.png);
|
|
}
|
|
|
|
.phabricator-flag-color-5 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_pink.png);
|
|
}
|
|
|
|
.phabricator-flag-color-6 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_purple.png);
|
|
}
|
|
|
|
.phabricator-flag-color-7 {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_finish.png);
|
|
}
|
|
|
|
.phabricator-flag-ghost {
|
|
background-image: url(/rsrc/image/icon/fatcow/flag_ghost.png);
|
|
}
|