mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7aeefc0cca
Summary: Mostly this is an exercise to clean up our CSS and Celerity processor by making sure all important color decisions are generatable. It's somewhat resonable to use if you don't review code. Posting it up here mostly so I don't lose the work. Test Plan: Visit lots and lots of pages with dark mode on and off. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18227
176 lines
3.9 KiB
CSS
176 lines
3.9 KiB
CSS
/**
|
|
* @provides project-card-view-css
|
|
*/
|
|
|
|
.project-card-view {
|
|
margin: 0 12px 16px 0;
|
|
text-align: left;
|
|
background: {$page.content};
|
|
border: 1px solid {$lightblueborder};
|
|
border-radius: 3px;
|
|
box-shadow: {$dropshadow};
|
|
width: 420px;
|
|
position: relative;
|
|
}
|
|
|
|
.project-card-view .phui-header-shell {
|
|
margin: 0;
|
|
padding: 12px 12px 4px 12px;
|
|
border: none;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.project-card-view .phui-header-shell .phui-header-image {
|
|
border: 3px solid {$page.content};
|
|
border-radius: 3px;
|
|
background-color: {$page.content};
|
|
}
|
|
|
|
.project-card-view .phui-header-shell .phui-header-header {
|
|
font-size: 18px;
|
|
width: 290px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
}
|
|
|
|
.project-card-view .project-card-image {
|
|
height: 140px;
|
|
width: 140px;
|
|
margin: 6px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.project-card-view .project-card-image-href {
|
|
display: inline-block;
|
|
}
|
|
|
|
.project-card-view .project-card-item div {
|
|
display: inline;
|
|
}
|
|
|
|
.project-card-view .project-card-item {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.project-card-view .project-card-item-text {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.project-card-view .project-card-item-icon {
|
|
width: 20px;
|
|
}
|
|
|
|
.project-card-view .project-card-header {
|
|
position: absolute;
|
|
top: 12px;
|
|
left: 158px;
|
|
}
|
|
|
|
.project-card-header .project-card-name {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: {$blacktext};
|
|
margin-bottom: 2px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 250px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-card-header .project-card-username {
|
|
font-size: 14px;
|
|
color: {$bluetext};
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.project-card-view .phui-header-shell .phui-header-col1 {
|
|
vertical-align: top;
|
|
width: 64px;
|
|
}
|
|
|
|
.project-card-view .phui-header-subheader {
|
|
font-size: {$normalfontsize};
|
|
margin-top: 12px;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
.project-card-view .phui-header-header .phui-tag-view {
|
|
display: block;
|
|
font-weight: normal;
|
|
color: {$bluetext};
|
|
font-size: {$normalfontsize};
|
|
font-family: {$fontfamily};
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.people-card-view .phui-header-subheader .phui-tag-core {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 232px;
|
|
overflow: hidden;
|
|
display: inline-block;
|
|
}
|
|
|
|
.project-card-view .phui-header-header .phui-tag-view .phui-tag-core {
|
|
padding: 0;
|
|
}
|
|
|
|
.project-card-view .phui-header-header .phui-tag-view .phui-icon-view {
|
|
margin-left: 0;
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.project-card-view .project-card-body {
|
|
padding: 0 12px 12px 12px;
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
/* Colors */
|
|
|
|
.project-card-view.project-card-red .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-redbackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-orange .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-orangebackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-yellow .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-yellowbackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-green .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-greenbackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-blue .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-bluebackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-indigo .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-indigobackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-violet .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-violetbackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-pink .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-pinkbackground} 42px, {$page.content} 42px);
|
|
}
|
|
|
|
.project-card-view.project-card-grey .phui-header-shell,
|
|
.project-card-view.project-card-checkered .phui-header-shell {
|
|
background: linear-gradient(to bottom,
|
|
{$sh-greybackground} 42px, {$page.content} 42px);
|
|
}
|