mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
c1c5fbce21
Summary: Minor rebuild / redesign of Conpherence. Most of this is new UX and tossing out things like widgets, device fallbacks. I expect some of the UI to get more polished after next pass, but most everything here is in place. - Removed "Widgets", now just a single Participants pane - Added "Topic" - New header - Settings, Edit are action icons - Removed a lot of JS - Simplified CSS as much as I could Test Plan: Desktop, Tablet, Mobile. Adding and removing people. Setting new topics, new rooms. {F1828662} {F1828669} Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16550
48 lines
868 B
CSS
48 lines
868 B
CSS
/**
|
|
* @provides conpherence-transaction-css
|
|
*/
|
|
|
|
.conpherence-transaction-view {
|
|
position: relative;
|
|
}
|
|
|
|
.conpherence-transaction-content {
|
|
overflow: auto;
|
|
}
|
|
|
|
.conpherence-transaction-header .phui-link-person {
|
|
font-weight: bold;
|
|
font-size: {$biggerfontsize};
|
|
color: #000;
|
|
}
|
|
|
|
.conpherence-transaction-view.date-marker {
|
|
border-top: 1px solid {$sh-violetborder};
|
|
}
|
|
|
|
.conpherence-transaction-view.date-marker .date {
|
|
position: relative;
|
|
top: -11px;
|
|
background-color: #fff;
|
|
color: {$sh-violettext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.conpherence-fulltext-results {
|
|
margin: 0 8px 8px;
|
|
background: {$lightgreybackground};
|
|
border: 1px solid {$lightgreyborder};
|
|
}
|
|
|
|
.conpherence-fulltext-result {
|
|
margin: 0 0 1px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.conpherence-fulltext-match {
|
|
background: {$lightyellow};
|
|
}
|
|
|
|
.conpherence-fulltext-results .epoch-link {
|
|
float: right;
|
|
}
|