mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
f801c8fed9
Summary: Changes the old dark embed to match the PinboardView. Retains ability to target individual files. Removes "carousel" of files (not super useful?) Test Plan: Tested embedding Mocks, with and without targeting specific files. Tested Pholio Pinboard, Macro Pinboard. {F166451} {F166452} {F166453} {F166454} Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9531
94 lines
1.7 KiB
CSS
94 lines
1.7 KiB
CSS
/**
|
|
* @provides phui-pinboard-view-css
|
|
*/
|
|
|
|
.phui-pinboard-view {
|
|
padding: 8px 0 16px 16px;
|
|
overflow: hidden;
|
|
margin: 12px 0;
|
|
}
|
|
|
|
.device-phone .phui-pinboard-view {
|
|
padding: 0;
|
|
}
|
|
|
|
.phui-pinboard-item-view {
|
|
margin: 0 12px 16px 0;
|
|
background: #ffffff;
|
|
border-radius: 3px;
|
|
border: 1px solid {$lightblueborder};
|
|
border-bottom: 1px solid {$blueborder};
|
|
text-align: left;
|
|
width: 288px;
|
|
}
|
|
|
|
.phui-pinboard-view .phui-pinboard-item-view {
|
|
float: left;
|
|
}
|
|
|
|
.device-desktop .phui-pinboard-item-view:hover {
|
|
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.30);
|
|
}
|
|
|
|
/* On phones, show a single column of items. */
|
|
.device-phone .phui-pinboard-item-view {
|
|
float: none;
|
|
margin: 0 auto 16px;
|
|
}
|
|
|
|
.phui-pinboard-item-header {
|
|
padding: 6px 8px;
|
|
display: block;
|
|
font-weight: bold;
|
|
border-top-left-radius: 3px;
|
|
border-top-right-radius: 3px;
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phui-pinboard-item-header a {
|
|
color: {$bluetext};
|
|
}
|
|
|
|
.phui-pinboard-item-image-link {
|
|
padding: 8px 4px;
|
|
display: block;
|
|
}
|
|
|
|
.phui-pinboard-item-content {
|
|
padding: 8px;
|
|
overflow: hidden;
|
|
color: {$bluetext};
|
|
font-size: 12px;
|
|
}
|
|
|
|
.phui-pinboard-item-content + .phui-pinboard-icons,
|
|
.phui-pinboard-item-image-link + .phui-pinboard-icons {
|
|
border-top: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.phui-pinboard-item-count {
|
|
float: left;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.phui-pinboard-icons {
|
|
padding: 4px 8px 4px 0;
|
|
color: {$darkbluetext};
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phui-pinboard-icon {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.phui-pinboard-item-disabled .phui-pinboard-item-image-link img {
|
|
opacity: 0.25;
|
|
}
|
|
|
|
.phui-pinboard-item-disabled .phui-pinboard-item-header a {
|
|
color: {$greytext};
|
|
text-decoration: line-through;
|
|
}
|
|
|