mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
8f94aa8a06
Summary: This updates (all?) of Diffusion/Audit to new UI, included edit and other extra form pages. It's fairly complete but I don't know all the nooks and crannies so to speak to fully verify I didn't mess anything up. Test Plan: Tested creating new repositories, browsing, searching, auditing. Need more eyes. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15487
36 lines
601 B
CSS
36 lines
601 B
CSS
/**
|
|
* @provides phui-head-thing-view-css
|
|
*/
|
|
|
|
.phui-head-thing-view {
|
|
height: 24px;
|
|
line-height: 22px;
|
|
color: {$greytext};
|
|
}
|
|
|
|
.phui-head-thing-view.phui-head-has-image {
|
|
position: relative;
|
|
padding-left: 32px;
|
|
}
|
|
|
|
.device-phone .phui-two-column-subheader .phui-head-thing-view {
|
|
min-height: 24px;
|
|
height: auto;
|
|
line-height: inherit;
|
|
}
|
|
|
|
.phui-head-thing-view a {
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.phui-head-thing-image {
|
|
height: 24px;
|
|
width: 24px;
|
|
background-size: 100%;
|
|
margin-right: 8px;
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|