mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
ac05fe9c3b
Summary: Replaces the action icons in action headers with FontAwesome Test Plan: - grep SPRITE_ACTIONS - grep sprite-actions - Replace on UIExamples - Replace on Workboards - Replace on Dashboards - Replace on FeedStories {F157840} {F157841} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9230
79 lines
1.8 KiB
CSS
79 lines
1.8 KiB
CSS
/**
|
|
* @provides phabricator-action-header-view-css
|
|
*/
|
|
|
|
.phabricator-action-header {
|
|
padding: 0 5px 0 8px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phabricator-action-header-title {
|
|
color: {$darkgreytext};
|
|
float: left;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
line-height: 15px;
|
|
padding: 8px 0;
|
|
white-space: nowrap;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.gradient-lightblue-header .phabricator-action-header-title {
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.phabricator-action-header-icon-list {
|
|
float: right;
|
|
padding-top: 4px;
|
|
}
|
|
|
|
.phabricator-action-header-icon-item {
|
|
float: right;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.phabricator-action-header-icon-item .phui-icon-view {
|
|
display: inline-block;
|
|
font-size: 18px;
|
|
margin: 4px 0;
|
|
height: 18px;
|
|
width: 18px;
|
|
}
|
|
|
|
.phabricator-action-header-icon-item .phui-tag-view {
|
|
margin: 4px 2px 0;
|
|
}
|
|
|
|
.phabricator-action-header-link {
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.gradient-green-header .phabricator-action-header-title,
|
|
.gradient-red-header .phabricator-action-header-title,
|
|
.gradient-blue-header .phabricator-action-header-title,
|
|
.gradient-yellow-header .phabricator-action-header-title,
|
|
.gradient-green-header .phabricator-action-header-link,
|
|
.gradient-red-header .phabricator-action-header-link,
|
|
.gradient-blue-header .phabricator-action-header-link,
|
|
.gradient-yellow-header .phabricator-action-header-link {
|
|
color: #fff;
|
|
}
|
|
|
|
.phabricator-action-header-icon-list .phui-tag-view {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.phabricator-action-header-title span {
|
|
float: left;
|
|
height: 16px;
|
|
width: 16px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
/* - Dashboards ------------------------------------------------------------ */
|
|
|
|
.dashboard-panel .phabricator-action-header.gradient-grey-header,
|
|
.dashboard-panel .phabricator-action-header.gradient-lightblue-header {
|
|
border: 1px solid {$lightblueborder};
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
}
|