mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
3cd27a0881
Summary: Ref T8099. This changes makes flexible layouts easier, and aligns icons, buttons better vertically. Test Plan: Test various header locations, Phriction, Conpherence, Dashboards, Workboards etc. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D12961
39 lines
754 B
CSS
39 lines
754 B
CSS
/**
|
|
* @provides diffusion-icons-css
|
|
*/
|
|
|
|
.diffusion-path-icon {
|
|
display: block;
|
|
padding-left: 28px;
|
|
background-repeat: no-repeat;
|
|
background-position: 1px 1px;
|
|
height: 18px;
|
|
padding-top: 1px;
|
|
}
|
|
|
|
.diffusion-path-icon-ext {
|
|
background-image: url(/rsrc/image/icon/fatcow/folder_go.png);
|
|
}
|
|
|
|
.diffusion-path-icon-dir {
|
|
background-image: url(/rsrc/image/icon/fatcow/folder.png);
|
|
}
|
|
|
|
.diffusion-path-icon-file {
|
|
background-image: url(/rsrc/image/icon/fatcow/page_white_text.png);
|
|
}
|
|
|
|
.diffusion-path-icon-link {
|
|
background-image: url(/rsrc/image/icon/fatcow/page_white_link.png);
|
|
}
|
|
|
|
input.diffusion-clone-uri {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.diffusion-clone-extras {
|
|
font-size: 11px;
|
|
text-align: right;
|
|
color: {$lightgreytext};
|
|
}
|