mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-18 10:41:08 +01:00
8aeb7aa525
Summary: Basic work in progress, but should show timeline comments for files when in lightbox mode. Looks reasonable. Test Plan: click on images, see comments from timeline. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T3612 Differential Revision: https://secure.phabricator.com/D16896
60 lines
1.3 KiB
CSS
60 lines
1.3 KiB
CSS
/**
|
|
* @provides phui-comment-panel-css
|
|
* @requires phui-timeline-view-css
|
|
*/
|
|
|
|
.phui-comment-panel .phui-timeline-view {
|
|
background: none;
|
|
}
|
|
|
|
.phui-comment-panel .phui-comment-panel-empty {
|
|
margin: 16px;
|
|
padding: 12px;
|
|
border: 1px solid {$thinblueborder};
|
|
background: {$lightbluebackground};
|
|
text-align: center;
|
|
color: {$lightbluetext};
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-view .phui-timeline-event-view {
|
|
margin: 0;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-view .phui-timeline-image {
|
|
display: none;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-view .phui-timeline-wedge {
|
|
display: none;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-major-event .phui-timeline-group {
|
|
border: none;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-major-event .phui-timeline-title {
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-major-event .phui-timeline-title a {
|
|
visibility: visible;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-icon-fill,
|
|
.phui-comment-panel .phui-timeline-menu {
|
|
display: none;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-major-event .phui-timeline-content {
|
|
border: none;
|
|
}
|
|
|
|
.phui-comment-panel .phui-timeline-major-event .phui-timeline-content
|
|
.phui-timeline-core-content {
|
|
border: none;
|
|
padding: 4px 0;
|
|
background: transparent;
|
|
}
|