Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/css/layout/phabricator-action-list-view.css
| Show First 20 Lines • Show All 64 Lines • ▼ Show 20 Lines | |||||
| .phabricator-action-view-icon { | .phabricator-action-view-icon { | ||||
| width: 14px; | width: 14px; | ||||
| height: 14px; | height: 14px; | ||||
| position: absolute; | position: absolute; | ||||
| top: 5px; | top: 5px; | ||||
| left: 9px; | left: 9px; | ||||
| } | } | ||||
| .phabricator-action-list-group-header { | |||||
| background-color: #f7f7f7; | |||||
btrahan: no color constant for this and a few others?
While I'm being a jerk on CSS color constants, I… | |||||
| } | |||||
| .phabricator-action-list-subitem .phabricator-action-view-icon { | |||||
| left: 17px; | |||||
| } | |||||
| .device-desktop .phabricator-action-view:hover .phabricator-action-view-item { | .device-desktop .phabricator-action-view:hover .phabricator-action-view-item { | ||||
| text-decoration: none; | text-decoration: none; | ||||
| background-color: {$blue}; | background-color: {$blue}; | ||||
| color: #ffffff; | color: #ffffff; | ||||
| } | } | ||||
| .phabricator-action-view-disabled .phabricator-action-view-item, | .phabricator-action-view-disabled .phabricator-action-view-item, | ||||
| .phabricator-action-view-disabled button.phabricator-action-view-item { | .phabricator-action-view-disabled button.phabricator-action-view-item { | ||||
| Show All 10 Lines | |||||
| .device-desktop .phabricator-action-view-disabled:hover | .device-desktop .phabricator-action-view-disabled:hover | ||||
| .phabricator-action-view-item, | .phabricator-action-view-item, | ||||
| .device-desktop .phabricator-action-view-disabled:hover | .device-desktop .phabricator-action-view-disabled:hover | ||||
| button.phabricator-action-view-item { | button.phabricator-action-view-item { | ||||
| background-color: #dfdfdf; | background-color: #dfdfdf; | ||||
| color: {$lightgreytext}; | color: {$lightgreytext}; | ||||
| } | } | ||||
| .phabricator-action-list-group-header .action-view-caret { | |||||
| display: inline-block; | |||||
| width: 0; | |||||
| height: 0; | |||||
| vertical-align: top; | |||||
| margin: 7px 0 0 3px; | |||||
| border-top: 5px solid {$darkgreytext}; | |||||
| border-right: 4px solid transparent; | |||||
| border-left: 4px solid transparent; | |||||
| border-bottom: none; | |||||
| content: ""; | |||||
| } | |||||
| .action-view-caret { | |||||
| display: inline-block; | |||||
| width: 0; | |||||
| height: 0; | |||||
| vertical-align: middle; | |||||
| border-left: 6px solid {$darkgreytext}; | |||||
| border-top: 4px solid transparent; | |||||
| border-bottom: 4px solid transparent; | |||||
| content: ""; | |||||
| margin: 0 0 2px 3px; | |||||
| } | |||||
| .device-desktop .phabricator-action-view:hover .action-view-caret { | |||||
| border-left-color: #fff; | |||||
| } | |||||
| .device-desktop | |||||
| .phabricator-action-view:hover.phabricator-action-list-group-header | |||||
| .action-view-caret { | |||||
| border-left-color: transparent; | |||||
| border-top-color: #fff; | |||||
| } | |||||
no color constant for this and a few others?
While I'm being a jerk on CSS color constants, I noticed in another diff a bit ago we don't have the hyperlink color as a constant.