mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
0548dc4c4c
Summary: This is a rough cut, but gets some of the basics at least. Here's what it looks like: {F11690} Some things that would be nice for future diffs: - Different colors for different event types (tasks? MEETINGS?!) - When events span across multiple days, keep them in the same row. - Switch which month you're looking at. - Show specific users instead of all. - etc etc etc Test Plan: See screenshot. Reviewers: btrahan, vrana Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D2514
25 lines
337 B
CSS
25 lines
337 B
CSS
/**
|
|
* @provides aphront-tooltip-css
|
|
*/
|
|
|
|
.jx-tooltip-container {
|
|
position: absolute;
|
|
z-index: 18;
|
|
}
|
|
|
|
.jx-tooltip {
|
|
background: #222222;
|
|
color: #e8e8e8;
|
|
font-size: 11px;
|
|
padding: 4px;
|
|
overflow: hidden;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.jx-tooltip-align-E {
|
|
padding-left: 3px;
|
|
}
|
|
|
|
.jx-tooltip-align-N {
|
|
padding-bottom: 3px;
|
|
}
|