2012-08-01 21:31:33 +02:00
|
|
|
/**
|
|
|
|
* @provides phabricator-nav-view-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.jx-drag-col {
|
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-nav-col {
|
|
|
|
position: fixed;
|
|
|
|
top: 44px;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
|
|
white-space: nowrap;
|
2012-08-22 15:53:01 +02:00
|
|
|
z-index: 3;
|
2012-08-01 21:31:33 +02:00
|
|
|
}
|
|
|
|
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
.phabricator-nav-app {
|
|
|
|
width: 149px;
|
2012-08-21 01:02:36 +02:00
|
|
|
background: #262b2e;
|
2012-08-20 23:13:15 +02:00
|
|
|
border-right: 1px solid #222222;
|
|
|
|
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
|
|
|
|
}
|
|
|
|
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
.phabricator-nav-local {
|
|
|
|
width: 179px;
|
|
|
|
background: #ececec;
|
2012-08-20 23:13:15 +02:00
|
|
|
|
|
|
|
border-right: 1px solid #999c9e;
|
|
|
|
box-shadow: inset -3px 0 4px rgba(0, 0, 0, 0.05);
|
|
|
|
background-image: url(/rsrc/image/menu_texture.png);
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-local,
|
|
|
|
.device-phone .phabricator-nav-local {
|
|
|
|
width: 299px;
|
|
|
|
}
|
|
|
|
|
2012-08-01 21:31:33 +02:00
|
|
|
.phabricator-nav-drag {
|
|
|
|
position: fixed;
|
2012-08-31 03:58:51 +02:00
|
|
|
top: 0;
|
2012-08-31 03:58:59 +02:00
|
|
|
left: 217px;
|
2012-08-01 21:31:33 +02:00
|
|
|
width: 7px;
|
|
|
|
bottom: 0;
|
2012-08-22 15:53:01 +02:00
|
|
|
z-index: 4;
|
2012-08-01 21:31:33 +02:00
|
|
|
|
|
|
|
cursor: col-resize;
|
|
|
|
background: #f5f5f5;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 1px 0 1px;
|
|
|
|
border-color: #fff #999c9e #fff #999c9e;
|
|
|
|
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
box-shadow: inset -1px 0px 1px rgba(0, 0, 0, 0.15);
|
2012-08-01 21:31:33 +02:00
|
|
|
|
|
|
|
background-image: url(/rsrc/image/divot.png);
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-drag,
|
|
|
|
.device-phone .phabricator-nav-drag {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-nav-col a,
|
|
|
|
.phabricator-nav-col span {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
.phabricator-nav-local {
|
|
|
|
left: 150px;
|
|
|
|
}
|
|
|
|
|
2012-08-31 03:58:59 +02:00
|
|
|
.device-desktop .phabricator-nav-local {
|
2012-08-20 23:13:15 +02:00
|
|
|
left: 38px;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
}
|
|
|
|
|
2012-08-01 21:31:33 +02:00
|
|
|
.phabricator-nav-content {
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
margin-left: 150px;
|
2012-08-01 21:31:33 +02:00
|
|
|
}
|
|
|
|
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
.has-local-nav .phabricator-nav-content {
|
|
|
|
margin-left: 330px;
|
|
|
|
}
|
|
|
|
|
2012-08-31 03:58:59 +02:00
|
|
|
.device-desktop .phabricator-nav-content {
|
|
|
|
margin-left: 38px;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
}
|
|
|
|
|
2012-08-31 03:58:59 +02:00
|
|
|
.device-desktop .has-local-nav .phabricator-nav-content {
|
2012-08-20 23:13:15 +02:00
|
|
|
margin-left: 216px;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
}
|
2012-08-01 21:31:33 +02:00
|
|
|
|
|
|
|
.phabricator-nav-col span {
|
|
|
|
display: block;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 6px 6px 6px 12px;
|
|
|
|
color: #222222;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-nav-col a {
|
|
|
|
display: block;
|
|
|
|
padding: 3px 6px 3px 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-nav-col a.aphront-side-nav-selected {
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
background-color: #a1bbe5;
|
2012-08-01 21:31:33 +02:00
|
|
|
}
|
|
|
|
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
a.phabricator-nav-app-item {
|
2012-08-20 23:13:15 +02:00
|
|
|
color: #e9e9e9;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
font-weight: normal;
|
|
|
|
padding: 4px;
|
2012-08-14 23:23:55 +02:00
|
|
|
padding-left: 40px;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
vertical-align: middle;
|
2012-08-14 23:23:55 +02:00
|
|
|
line-height: 30px;
|
|
|
|
height: 30px;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
|
2012-08-14 23:23:55 +02:00
|
|
|
position: relative;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
}
|
|
|
|
|
2012-08-31 03:59:08 +02:00
|
|
|
/**
|
|
|
|
* On the desktop, constrain the size of the <a /> so that the tooltip is
|
|
|
|
* positioned correctly. Without this rule, it ends up too far to the right.
|
|
|
|
*/
|
|
|
|
.device-desktop a.phabricator-nav-app-item {
|
|
|
|
padding-left: 38px;
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
|
|
|
|
2012-08-14 23:23:55 +02:00
|
|
|
span.phabricator-nav-app-item-icon {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
left: 5px;
|
|
|
|
top: 6px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
|
2012-08-31 03:58:59 +02:00
|
|
|
.device-desktop .phabricator-nav-app {
|
2012-08-20 23:13:15 +02:00
|
|
|
width: 37px;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phabricator-nav-head {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-col,
|
|
|
|
.device-phone .phabricator-nav-col {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-app,
|
|
|
|
.device-phone .phabricator-nav-app {
|
|
|
|
left: -450px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-local,
|
|
|
|
.device-phone .phabricator-nav-local {
|
|
|
|
left: -300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .phabricator-nav-head-tablet {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-head-phone {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav,
|
|
|
|
.device-phone .phabricator-nav {
|
|
|
|
overflow-x: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-content,
|
|
|
|
.device-phone .phabricator-nav-content {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tablet .phabricator-nav-content,
|
|
|
|
.device-phone .phabricator-nav-content {
|
|
|
|
margin-left: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-nav-head {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
height: 43px;
|
2012-08-20 23:13:15 +02:00
|
|
|
background: #fafafa;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
overflow: hidden;
|
2012-08-20 23:13:15 +02:00
|
|
|
border-bottom: 1px solid #5d5d5d;
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
text-align: center;
|
2012-08-20 23:13:15 +02:00
|
|
|
box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.10),
|
Add basic support for new navigation menu
Summary:
Add a new left-side application menu. This menu shows which application you're in and provides a quick way to get to other applications.
On desktops, menus are always shown but the app menu can be collapsed to be very small.
On tablets, navigation buttons allow you to choose between the menus and the content.
On phones, navigation buttons allow you to choose between the app menu, the local menu, and the content.
This needs some code and UI cleanup, but has no effect yet so I think it's okay to land as-is, I'll clean it up a bit as I start integrating it. I want to play around with it a bit and see if it's good/useful or horrible anyway.
Test Plan: Will include screenshots.
Reviewers: vrana, btrahan, chad
Reviewed By: btrahan
CC: aran, alanh
Maniphest Tasks: T1569
Differential Revision: https://secure.phabricator.com/D3223
2012-08-11 16:06:12 +02:00
|
|
|
0px 1px 2px rgba(0, 0, 0, 0.10);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button {
|
|
|
|
background-color: #f3f3f3;
|
|
|
|
height: 32px;
|
|
|
|
width: 40px;
|
|
|
|
margin: 5px 0px;
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid #999999;
|
|
|
|
box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.10);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button-selected {
|
|
|
|
background-color: #c9c9c9;
|
|
|
|
box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.20);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button + .nav-button {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button-w {
|
|
|
|
border-radius: 6px 0 0 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button-e {
|
|
|
|
border-radius: 0 6px 6px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button-apps {
|
|
|
|
background-image: url(/rsrc/image/button_apps.png);
|
|
|
|
background-size: 24px auto;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button-menu {
|
|
|
|
background-image: url(/rsrc/image/button_menu.png);
|
|
|
|
background-size: 24px auto;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button-content {
|
|
|
|
background-image: url(/rsrc/image/button_content.png);
|
|
|
|
background-size: 24px auto;
|
|
|
|
background-position: center;
|
|
|
|
}
|