mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
0e5cd478c4
Summary: Should make it simpler here to have more `rgba` rules in CSS for things like hovers, selected states. Maybe only use `rgb` colors? Color pallette probably needs an overhaul. Test Plan: Bounce around random pages, buttons, menus. Everything appears normal. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15273
54 lines
1,007 B
CSS
54 lines
1,007 B
CSS
/**
|
|
* @provides phui-document-summary-view-css
|
|
*/
|
|
|
|
.phui-document-summary-view {
|
|
margin-top: 8px;
|
|
border-bottom: 1px solid rgba({$alphagrey},.1);
|
|
}
|
|
|
|
.phui-document-summary-view.is-draft {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
body .phui-document-view .phui-document-summary-view h2.remarkup-header {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.phui-document-summary-view h2.remarkup-header a {
|
|
color: #000;
|
|
}
|
|
|
|
.phui-document-summary-view h2.remarkup-header a:hover {
|
|
color: {$violet};
|
|
text-decoration: none;
|
|
}
|
|
|
|
.phui-document-view .phui-document-summary-body div.phabricator-remarkup {
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
a.phui-document-read-more {
|
|
color: {$lightgreytext};
|
|
font-size: {$smallerfontsize};
|
|
display: block;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
a.phui-document-read-more:hover {
|
|
color: {$violet};
|
|
}
|
|
|
|
.phui-document-summary-subtitle {
|
|
color: {$lightgreytext};
|
|
font-size: {$normalfontsize};
|
|
}
|
|
|
|
.phui-document-summary-subtitle a {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.phui-document-summary-subtitle a:hover {
|
|
color: {$violet};
|
|
}
|