mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Fixing z-index on calendar date badges.
Summary: Fixes T4787, decreased z-index on calendar badges so that they don't sit on top of notification dropdowns when dropdowns are expanded. Not sure why the badges had z-index 10, but please let me know if there was a more substantial reason for this. Test Plan: If neither notification dropdowns have content, create enough messages to populate at least 5 rows, open calendar, expand messages dropdown, verify that underlying calendar date badges do not appear over the dropdown. Reviewers: chad, #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T4787 Differential Revision: https://secure.phabricator.com/D8770
This commit is contained in:
parent
2712091a71
commit
2509c6b0f5
3 changed files with 11 additions and 8 deletions
|
@ -7,7 +7,7 @@
|
|||
return array(
|
||||
'names' =>
|
||||
array(
|
||||
'core.pkg.css' => '232fd038',
|
||||
'core.pkg.css' => '030f12e5',
|
||||
'core.pkg.js' => '417722ff',
|
||||
'darkconsole.pkg.js' => 'ca8671ce',
|
||||
'differential.pkg.css' => '12c11318',
|
||||
|
@ -113,7 +113,7 @@ return array(
|
|||
'rsrc/css/core/core.css' => 'da26ddb2',
|
||||
'rsrc/css/core/remarkup.css' => '0923dbd6',
|
||||
'rsrc/css/core/syntax.css' => '3c18c1cb',
|
||||
'rsrc/css/core/z-index.css' => 'edd5911b',
|
||||
'rsrc/css/core/z-index.css' => '0d89d53c',
|
||||
'rsrc/css/diviner/diviner-shared.css' => '38813222',
|
||||
'rsrc/css/font/font-source-sans-pro.css' => '225851dd',
|
||||
'rsrc/css/layout/phabricator-action-header-view.css' => 'c14dfc57',
|
||||
|
@ -125,7 +125,7 @@ return array(
|
|||
'rsrc/css/layout/phabricator-source-code-view.css' => '62a99814',
|
||||
'rsrc/css/phui/calendar/phui-calendar-day.css' => 'de035c8a',
|
||||
'rsrc/css/phui/calendar/phui-calendar-list.css' => 'c1d0ca59',
|
||||
'rsrc/css/phui/calendar/phui-calendar-month.css' => '5e762971',
|
||||
'rsrc/css/phui/calendar/phui-calendar-month.css' => 'a92e47d2',
|
||||
'rsrc/css/phui/calendar/phui-calendar.css' => '5e1ad989',
|
||||
'rsrc/css/phui/phui-box.css' => 'a36cf3a5',
|
||||
'rsrc/css/phui/phui-button.css' => '653ac588',
|
||||
|
@ -729,7 +729,7 @@ return array(
|
|||
'phabricator-uiexample-reactor-select' => '189e4fe3',
|
||||
'phabricator-uiexample-reactor-sendclass' => 'bf97561d',
|
||||
'phabricator-uiexample-reactor-sendproperties' => '551add57',
|
||||
'phabricator-zindex-css' => 'edd5911b',
|
||||
'phabricator-zindex-css' => '0d89d53c',
|
||||
'phame-css' => '450826e1',
|
||||
'pholio-css' => '2fa97dbe',
|
||||
'pholio-edit-css' => 'b9e59b6d',
|
||||
|
@ -743,7 +743,7 @@ return array(
|
|||
'phui-calendar-css' => '5e1ad989',
|
||||
'phui-calendar-day-css' => 'de035c8a',
|
||||
'phui-calendar-list-css' => 'c1d0ca59',
|
||||
'phui-calendar-month-css' => '5e762971',
|
||||
'phui-calendar-month-css' => 'a92e47d2',
|
||||
'phui-document-view-css' => '3b078dc0',
|
||||
'phui-feed-story-css' => '3a59c2cf',
|
||||
'phui-fontkit-css' => 'de84aa4a',
|
||||
|
|
|
@ -38,6 +38,10 @@
|
|||
z-index: 3;
|
||||
}
|
||||
|
||||
.phabricator-crumbs-view {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.phabricator-nav-local {
|
||||
z-index: 4;
|
||||
}
|
||||
|
@ -67,8 +71,8 @@
|
|||
z-index: 5;
|
||||
}
|
||||
|
||||
.phabricator-crumbs-view {
|
||||
z-index: 3;
|
||||
.phui-calendar-date-number {
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.phabricator-main-menu {
|
||||
|
|
|
@ -51,7 +51,6 @@ table.phui-calendar-view td.phui-calendar-month-weekstart {
|
|||
text-align: center;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.phui-calendar-not-work-day {
|
||||
|
|
Loading…
Reference in a new issue