2013-01-25 02:23:05 +01:00
|
|
|
/**
|
|
|
|
* @provides conpherence-widget-pane-css
|
|
|
|
*/
|
|
|
|
|
2013-05-29 21:46:06 +02:00
|
|
|
.conpherence-widget-pane,
|
2013-05-31 20:31:19 +02:00
|
|
|
.loading .widgets-loading-mask {
|
2013-01-25 02:23:05 +01:00
|
|
|
position: fixed;
|
|
|
|
right: 0px;
|
2013-12-04 06:48:03 +01:00
|
|
|
top: 76px;
|
|
|
|
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
|
|
|
.device .conpherence-widget-pane,
|
2013-05-31 20:31:19 +02:00
|
|
|
.device .loading .widgets-loading-mask {
|
2013-03-25 15:38:27 +01:00
|
|
|
top: 44px;
|
|
|
|
width: 100%;
|
2013-01-25 02:23:05 +01:00
|
|
|
}
|
|
|
|
|
2013-05-29 21:46:06 +02:00
|
|
|
.conpherence-widget-pane .widgets-loading-mask {
|
2013-05-31 20:31:19 +02:00
|
|
|
opacity: .6;
|
|
|
|
background: #fff;
|
2013-05-29 21:46:06 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-05-31 20:31:19 +02:00
|
|
|
.loading .widgets-loading-mask {
|
2013-05-29 21:46:06 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2013-02-05 04:01:46 +01:00
|
|
|
.conpherence-widget-pane .widgets-header {
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2013-03-16 07:41:36 +01:00
|
|
|
}
|
|
|
|
|
2013-05-24 19:50:18 +02:00
|
|
|
.device .conpherence-widget-pane .widgets-header {
|
|
|
|
display: none;
|
2013-03-13 21:03:51 +01:00
|
|
|
}
|
|
|
|
|
2013-05-24 19:50:18 +02:00
|
|
|
.conpherence-widget-pane .widgets-header .caret {
|
|
|
|
float: none;
|
|
|
|
height: 0px;
|
|
|
|
width: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
border-top-color: #000;
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
2013-05-27 18:56:45 +02:00
|
|
|
|
2015-03-25 19:48:22 +01:00
|
|
|
.conpherence-widget-pane .widgets-header .phui-icon-view.disabled {
|
|
|
|
color: {$lightgreytext};
|
|
|
|
}
|
|
|
|
|
2013-05-24 19:50:18 +02:00
|
|
|
.device-desktop .conpherence-layout .device-widgets-selector {
|
|
|
|
display: none;
|
2013-03-16 07:41:36 +01:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
top: 76px;
|
2013-03-25 15:38:27 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-05-27 18:56:45 +02:00
|
|
|
#widgets-settings {
|
2014-12-30 11:48:53 +01:00
|
|
|
padding: 3px 6px;
|
2013-05-27 18:56:45 +02:00
|
|
|
}
|
|
|
|
|
2013-05-24 19:50:18 +02:00
|
|
|
.device-desktop .conpherence-widget-pane .widgets-body {
|
2013-12-04 06:48:03 +01:00
|
|
|
top: 108px;
|
2013-05-27 18:56:45 +02:00
|
|
|
width: 240px;
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
|
|
|
|
2013-03-16 07:41:36 +01:00
|
|
|
/* files widget */
|
|
|
|
|
2013-05-24 19:50:18 +02:00
|
|
|
.conpherence-widget-pane #widgets-files .no-files {
|
|
|
|
width: 200px;
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
color: {$greytext};
|
2013-05-24 19:50:18 +02:00
|
|
|
}
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
|
2013-05-29 21:46:06 +02:00
|
|
|
.device .conpherence-widget-pane #widgets-files .no-files {
|
|
|
|
width: 60px;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
margin: 0 auto 0 auto;
|
2013-05-29 21:46:06 +02:00
|
|
|
}
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
|
2013-03-16 07:41:36 +01:00
|
|
|
.conpherence-widget-pane #widgets-files .file-entry {
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
padding: 8px 0;
|
|
|
|
margin: 0 4px 0 8px;
|
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane #widgets-files .file-entry a {
|
|
|
|
color: {$darkbluetext};
|
|
|
|
font-weight: bold;
|
2013-03-16 07:41:36 +01:00
|
|
|
}
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
|
2013-03-16 07:41:36 +01:00
|
|
|
.conpherence-widget-pane #widgets-files .file-icon {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
float: left;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
font-size: 24px;
|
|
|
|
color: {$blue};
|
|
|
|
margin: 2px 0 2px 4px;
|
2013-03-16 07:41:36 +01:00
|
|
|
}
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
|
2013-03-16 07:41:36 +01:00
|
|
|
.conpherence-widget-pane #widgets-files .file-title {
|
2013-03-19 23:54:22 +01:00
|
|
|
display: block;
|
2013-03-16 07:41:36 +01:00
|
|
|
position: relative;
|
|
|
|
top: -4px;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
left: 0;
|
2013-03-19 00:31:38 +01:00
|
|
|
overflow-x: hidden;
|
2014-12-21 05:59:24 +01:00
|
|
|
width: 180px;
|
2013-03-16 07:41:36 +01:00
|
|
|
font-weight: bold;
|
2013-05-27 18:56:45 +02:00
|
|
|
text-overflow: ellipsis;
|
2014-12-21 05:59:24 +01:00
|
|
|
white-space: nowrap;
|
2013-03-16 07:41:36 +01:00
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-files .file-uploaded-by {
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
color: {$lightgreytext};
|
2013-03-16 07:41:36 +01:00
|
|
|
position: relative;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 180px;
|
2013-03-16 07:41:36 +01:00
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
2013-04-16 01:27:41 +02:00
|
|
|
.device .conpherence-widget-pane #widgets-files .file-title,
|
|
|
|
.device .conpherence-widget-pane #widgets-files .file-uploaded-by {
|
|
|
|
width: 82%;
|
|
|
|
}
|
|
|
|
.device .conpherence-widget-pane #widgets-files .divider {
|
|
|
|
width: 80%;
|
|
|
|
margin: 8px 0px 0px 10%;
|
|
|
|
}
|
|
|
|
|
2013-03-16 07:41:36 +01:00
|
|
|
/* calendar widget */
|
|
|
|
|
2013-04-04 02:30:20 +02:00
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view {
|
2013-05-24 19:50:18 +02:00
|
|
|
width: 240px;
|
2013-04-04 02:30:20 +02:00
|
|
|
}
|
2013-05-31 23:58:15 +02:00
|
|
|
.device-phone .conpherence-widget-pane #widgets-calendar
|
|
|
|
.aphront-multi-column-view {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.device-tablet .conpherence-widget-pane #widgets-calendar
|
|
|
|
.aphront-multi-column-view {
|
2013-04-16 01:27:41 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2013-04-04 02:30:20 +02:00
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column {
|
|
|
|
background: white;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
border-right: 1px solid {$thinblueborder};
|
2013-04-04 02:30:20 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2013-05-31 23:58:15 +02:00
|
|
|
.device-phone .conpherence-widget-pane #widgets-calendar
|
|
|
|
.aphront-multi-column-view .aphront-multi-column-column {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
2013-04-16 01:27:41 +02:00
|
|
|
.device-phone .conpherence-widget-pane #widgets-calendar
|
|
|
|
.aphront-multi-column-fluid .aphront-multi-column-5-up
|
|
|
|
.aphront-multi-column-column-outer {
|
|
|
|
width: 20%;
|
2013-05-23 01:05:47 +02:00
|
|
|
margin-bottom: 0px;
|
2013-05-24 19:50:18 +02:00
|
|
|
float: left;
|
|
|
|
clear: none;
|
2013-04-16 01:27:41 +02:00
|
|
|
}
|
2013-05-27 18:56:45 +02:00
|
|
|
|
|
|
|
.conpherence-widget-pane .no-events {
|
2013-09-02 17:12:18 +02:00
|
|
|
color: {$lightgreytext};
|
2013-05-27 18:56:45 +02:00
|
|
|
}
|
|
|
|
|
2013-04-04 02:30:20 +02:00
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column-last {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .day-column,
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .day-column-active {
|
|
|
|
color: #bfbfbf;
|
|
|
|
background-color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0px 0px 10px 0px;
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .day-column-active {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .present ,
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .sporadic ,
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .away {
|
|
|
|
height: 10px;
|
|
|
|
margin: 5px 0px 5px 0px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .present {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .sporadic {
|
|
|
|
background-color: rgb(222, 226, 232);
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
|
|
|
.aphront-multi-column-column .away {
|
|
|
|
background-color: rgb(102, 204, 255);
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
2013-05-29 01:52:53 +02:00
|
|
|
.day-name {
|
2013-04-04 02:30:20 +02:00
|
|
|
padding: 5px 0px 0px 0px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.conpherence-widget-pane #widgets-calendar .aphront-multi-column-view
|
2013-05-29 01:52:53 +02:00
|
|
|
.day-number {
|
2013-04-04 02:30:20 +02:00
|
|
|
font-size: 16px;
|
2013-05-29 01:52:53 +02:00
|
|
|
padding: 0 0 5px 0;
|
2013-04-04 02:30:20 +02:00
|
|
|
}
|
2013-05-29 01:52:53 +02:00
|
|
|
|
2013-04-04 02:30:20 +02:00
|
|
|
.conpherence-widget-pane #widgets-calendar .day-header {
|
2013-05-27 18:56:45 +02:00
|
|
|
overflow: hidden;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
border-top: 1px solid {$thinblueborder};
|
|
|
|
padding: 8px 8px 0px 8px;
|
2013-05-29 01:52:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane #widgets-calendar .day-header.today .day-name,
|
|
|
|
.conpherence-widget-pane #widgets-calendar .day-header.today .day-date {
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
color: {$sky};
|
2013-04-16 01:27:41 +02:00
|
|
|
}
|
2013-05-29 01:52:53 +02:00
|
|
|
|
2013-04-04 02:30:20 +02:00
|
|
|
.conpherence-widget-pane #widgets-calendar .day-header .day-name {
|
|
|
|
float: left;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
color: {$bluetext};
|
2013-05-27 18:56:45 +02:00
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 11px;
|
2013-04-04 02:30:20 +02:00
|
|
|
}
|
2013-05-29 01:52:53 +02:00
|
|
|
|
2013-04-04 02:30:20 +02:00
|
|
|
.conpherence-widget-pane #widgets-calendar .day-header .day-date {
|
|
|
|
float: right;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
color: {$lightbluetext};
|
2013-05-27 18:56:45 +02:00
|
|
|
font-size: 11px;
|
2013-04-04 02:30:20 +02:00
|
|
|
}
|
|
|
|
|
2013-05-31 23:58:15 +02:00
|
|
|
.conpherence-widget-pane #widgets-calendar .top-border {
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
border-top: 1px solid {$thinblueborder};
|
2013-04-16 01:27:41 +02:00
|
|
|
}
|
2013-05-31 23:58:15 +02:00
|
|
|
|
|
|
|
.conpherence-widget-pane #widgets-calendar .user-status {
|
|
|
|
padding: 10px 0px 10px 0px;
|
|
|
|
margin: 0px 0px 0px 10px;
|
2013-04-04 02:30:20 +02:00
|
|
|
}
|
|
|
|
|
2013-02-05 04:01:46 +01:00
|
|
|
.conpherence-widget-pane #widgets-calendar .user-status .icon {
|
2013-05-27 18:56:45 +02:00
|
|
|
border-radius: 8px;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
height: 8px;
|
|
|
|
width: 8px;
|
|
|
|
margin-top: 4px;
|
2013-05-27 18:56:45 +02:00
|
|
|
float: left;
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane #widgets-calendar .sporadic .icon {
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
background-color: {$orange};
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane #widgets-calendar .away .icon {
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
background-color: {$red};
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane #widgets-calendar .user-status .description {
|
2013-05-27 18:56:45 +02:00
|
|
|
width: 195px;
|
|
|
|
text-overflow: ellipsis;
|
Update Conpherence full for common colors / styles
Summary: Conpherence Full modernize pass, setting standard space and colors on all widget panels. Moved menu back to 240px as the narrow column wasn't really usefull. Removed 'subtitle' on menu, seems simpler but almost under-designed. Subtitle isn't particularly useful and I plan on adding audience icons next (single, group, project, public) so I think this is the right direction.
Test Plan:
Tested with and without number columns on the menu, test with files, calendar dates, removing participants.
{F337941}
{F337942}
{F337943}
Reviewers: epriestley, btrahan
Reviewed By: btrahan
Subscribers: Korvin, epriestley
Differential Revision: https://secure.phabricator.com/D12078
2015-03-17 22:01:45 +01:00
|
|
|
margin: 0 0 0 16px;
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane #widgets-calendar .user-status .participant {
|
|
|
|
font-size: 11px;
|
2013-09-02 17:12:18 +02:00
|
|
|
color: {$lightgreytext};
|
2013-05-27 18:56:45 +02:00
|
|
|
padding-top: 2px;
|
2013-02-05 04:01:46 +01:00
|
|
|
}
|
2013-03-08 19:40:06 +01:00
|
|
|
|
2013-04-16 01:27:41 +02:00
|
|
|
.device .conpherence-widget-pane #widgets-calendar .user-status .description,
|
|
|
|
.device .conpherence-widget-pane #widgets-calendar .user-status .participant {
|
|
|
|
/* we keep these short so no need to change the width */
|
|
|
|
}
|
|
|
|
|
2013-03-08 19:40:06 +01:00
|
|
|
.conpherence-widget-pane .widget-icon {
|
|
|
|
display: block;
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conpherence-widget-pane .phabricator-remarkup-embed-layout-link {
|
|
|
|
padding-bottom: 1px;
|
|
|
|
}
|
2013-03-26 21:30:35 +01:00
|
|
|
|
2013-04-02 18:32:40 +02:00
|
|
|
/* people widget */
|
|
|
|
.conpherence-widget-pane .people-widget-header .add-people-widget {
|
2013-05-27 18:56:45 +02:00
|
|
|
padding: 10px 0 5px 0;
|
|
|
|
overflow: hidden;
|
2013-05-24 19:50:18 +02:00
|
|
|
}
|
2013-05-27 18:56:45 +02:00
|
|
|
|
2013-04-02 18:32:40 +02:00
|
|
|
.conpherence-widget-pane .people-widget-header .add-people-widget
|
|
|
|
.aphront-form-control-tokenizer {
|
|
|
|
float: left;
|
2013-05-27 18:56:45 +02:00
|
|
|
width: 150px;
|
2013-04-02 18:32:40 +02:00
|
|
|
padding: 0px 0px 0px 10px
|
|
|
|
}
|
2013-05-27 18:56:45 +02:00
|
|
|
|
2013-04-16 01:27:41 +02:00
|
|
|
.device .conpherence-widget-pane .people-widget-header .add-people-widget
|
|
|
|
.aphront-form-control-tokenizer {
|
|
|
|
width: 70%;
|
2013-04-02 18:32:40 +02:00
|
|
|
}
|
2013-05-27 18:56:45 +02:00
|
|
|
|
2013-04-02 18:32:40 +02:00
|
|
|
.conpherence-widget-pane .people-widget-header .add-people-widget
|
|
|
|
.people-add-button {
|
|
|
|
float: right;
|
2013-05-24 19:50:18 +02:00
|
|
|
margin: 2px 8px 0px 0px;
|
2013-04-02 18:32:40 +02:00
|
|
|
padding: 3px 16px 4px 16px;
|
|
|
|
}
|
2013-05-27 18:56:45 +02:00
|
|
|
|
2015-04-02 00:49:25 +02:00
|
|
|
#widgets-people {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2013-04-02 18:32:40 +02:00
|
|
|
.conpherence-widget-pane .person-entry {
|
2015-04-02 00:49:25 +02:00
|
|
|
padding: 4px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
2013-03-26 21:30:35 +01:00
|
|
|
/* settings widget */
|
2013-05-24 19:50:18 +02:00
|
|
|
.conpherence-widget-pane .title-update,
|
2013-03-26 21:30:35 +01:00
|
|
|
.conpherence-widget-pane .notifications-update {
|
2013-05-27 18:56:45 +02:00
|
|
|
margin: 3px 0px 0px 4px;
|
2013-03-26 21:30:35 +01:00
|
|
|
}
|
2015-03-25 02:38:16 +01:00
|
|
|
|
|
|
|
.conpherence-widget-pane .no-settings {
|
|
|
|
width: 200px;
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
color: {$greytext};
|
|
|
|
}
|
|
|
|
|
|
|
|
.device .conpherence-widget-pane .no-settings {
|
|
|
|
width: 60px;
|
|
|
|
margin: 0 auto 0 auto;
|
|
|
|
}
|