2013-01-25 02:23:05 +01:00
|
|
|
/**
|
|
|
|
* @provides conpherence-widget-pane-css
|
|
|
|
*/
|
|
|
|
|
2016-09-15 03:34:11 +02:00
|
|
|
.conpherence-widget-pane {
|
2013-01-25 02:23:05 +01:00
|
|
|
position: fixed;
|
|
|
|
right: 0px;
|
2016-09-15 03:34:11 +02:00
|
|
|
top: 103px;
|
2013-12-04 06:48:03 +01:00
|
|
|
bottom: 0;
|
2013-05-24 19:50:18 +02:00
|
|
|
width: 240px;
|
2013-01-25 02:23:05 +01:00
|
|
|
border-width: 0 0 0 1px;
|
2013-11-28 16:34:03 +01:00
|
|
|
border-color: {$lightblueborder};
|
2013-01-25 02:23:05 +01:00
|
|
|
border-style: solid;
|
2013-02-05 04:01:46 +01:00
|
|
|
overflow-y: auto;
|
2013-03-25 15:38:27 +01:00
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
2013-05-29 21:46:06 +02:00
|
|
|
|
2016-09-15 03:34:11 +02:00
|
|
|
.device .conpherence-widget-pane {
|
|
|
|
background-color: {$page.background};
|
2013-05-29 21:46:06 +02:00
|
|
|
}
|
|
|
|
|
2013-01-25 02:23:05 +01:00
|
|
|
.conpherence-widget-pane .aphront-form-input {
|
|
|
|
margin: 0;
|
2013-05-27 18:56:45 +02:00
|
|
|
width: 100%;
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
2013-02-05 04:01:46 +01:00
|
|
|
|
2013-03-26 21:30:35 +01:00
|
|
|
.conpherence-widget-pane .aphront-form-inset {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2015-05-22 17:22:25 +02:00
|
|
|
.conpherence-widget-pane .widgets-header .phui-header-shell {
|
[Redesign] Move basefont to Lato, remove Source Sans Pro
Summary: Working towards a more unified look and feel. This brings in Lato as a complete base font over Helvetica Neue, as well as removing Source Sans Pro from DocumentView and Conpherence. Design-wise Lato provides the nice readability at larger font sizes that Source Sans Pro did, with the ability to scale down to tables and UI widgets with ease. This gives us one font instead of two, and now Object descriptions and Timeline posts all can benefit from a consistent, readable font.
Test Plan:
Test main UI, smaller elements like tables, menus, DocumentViews, Previews, Conpherence.
{F498135}
{F498136}
Reviewers: btrahan, epriestley
Reviewed By: epriestley
Subscribers: epriestley, Korvin
Differential Revision: https://secure.phabricator.com/D13276
2015-06-13 21:32:45 +02:00
|
|
|
padding: 6px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane .widgets-header .phui-header-header {
|
2015-06-26 18:33:03 +02:00
|
|
|
font-size: {$biggerfontsize};
|
2013-03-16 07:41:36 +01:00
|
|
|
}
|
|
|
|
|
2015-03-25 19:48:22 +01:00
|
|
|
.conpherence-widget-pane .widgets-header .phui-icon-view.disabled {
|
|
|
|
color: {$lightgreytext};
|
|
|
|
}
|
|
|
|
|
2013-02-05 04:01:46 +01:00
|
|
|
.conpherence-widget-pane .widgets-body {
|
2013-12-04 06:48:03 +01:00
|
|
|
position: fixed;
|
2013-02-05 04:01:46 +01:00
|
|
|
overflow-y: auto;
|
2013-12-04 06:48:03 +01:00
|
|
|
bottom: 0;
|
2016-09-15 03:34:11 +02:00
|
|
|
top: 144px;
|
2013-05-27 18:56:45 +02:00
|
|
|
width: 240px;
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
|
|
|
|
2013-04-02 18:32:40 +02:00
|
|
|
.conpherence-widget-pane .person-entry {
|
2016-09-15 03:34:11 +02:00
|
|
|
padding: 4px 4px 4px 8px;
|
2015-04-02 00:49:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane .person-entry:hover {
|
|
|
|
background-color: {$lightgreybackground};
|
2013-04-16 01:27:41 +02:00
|
|
|
}
|
|
|
|
|
2013-04-02 18:32:40 +02:00
|
|
|
.conpherence-widget-pane .person-entry a {
|
|
|
|
float: left;
|
|
|
|
font-weight: bold;
|
2015-04-02 00:49:25 +02:00
|
|
|
line-height: 22px;
|
|
|
|
color: {$darkbluetext};
|
2013-05-27 18:56:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane .person-entry a img {
|
2015-04-02 00:49:25 +02:00
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
border-radius: 3px;
|
2013-04-02 18:32:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane .person-entry .pic {
|
|
|
|
float: left;
|
2015-04-02 00:49:25 +02:00
|
|
|
width: 30px;
|
2013-04-02 18:32:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane .person-entry .remove {
|
|
|
|
float: right;
|
2013-05-27 18:56:45 +02:00
|
|
|
width: 20px;
|
2015-04-02 00:49:25 +02:00
|
|
|
height: 20px;
|
2013-05-30 17:30:56 +02:00
|
|
|
font-size: 18px;
|
2015-04-02 00:49:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.person-entry .remove:hover .phui-icon-view {
|
|
|
|
color: {$red};
|
2013-04-02 18:32:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane .person-entry .remove:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:30:56 +02:00
|
|
|
.conpherence-widget-pane .person-entry .remove .close-icon {
|
2013-04-02 18:32:40 +02:00
|
|
|
color: #bfbfbf;
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:30:56 +02:00
|
|
|
.conpherence-widget-pane .person-entry .remove:hover .close-icon {
|
|
|
|
color: #000;
|
2013-04-02 18:32:40 +02:00
|
|
|
}
|
|
|
|
|
2016-09-13 01:20:21 +02:00
|
|
|
/****** Hide Widgets **********************************************************/
|
|
|
|
|
2016-09-15 03:34:11 +02:00
|
|
|
.hide-widgets .conpherence-widget-pane {
|
2016-09-13 01:20:21 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-09-15 03:34:11 +02:00
|
|
|
.hide-widgets .conpherence-message-pane,
|
|
|
|
.hide-widgets .loading .messages-loading-mask,
|
|
|
|
.hide-widgets .loading .messages-loading-icon,
|
|
|
|
.hide-widgets .conpherence-no-threads,
|
|
|
|
.hide-widgets .conpherence-message-pane .conpherence-messages,
|
|
|
|
.hide-widgets .conpherence-message-pane .phui-form-view {
|
2016-09-13 01:20:21 +02:00
|
|
|
right: 0;
|
|
|
|
}
|