mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
PHUIList changes for responsive design
Summary: Fixes some issues with lists and tablet/mobile layouts. Test Plan: shrink my screen Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D6148
This commit is contained in:
parent
9e591f488b
commit
d3aed20752
2 changed files with 10 additions and 6 deletions
|
@ -3718,7 +3718,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'phui-list-view-css' =>
|
||||
array(
|
||||
'uri' => '/res/77c3509f/rsrc/css/phui/phui-list.css',
|
||||
'uri' => '/res/bdc66aff/rsrc/css/phui/phui-list.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -2,10 +2,6 @@
|
|||
* @provides phui-list-view-css
|
||||
*/
|
||||
|
||||
.phui-list-item {
|
||||
line-height: 16px;
|
||||
}
|
||||
|
||||
.phui-list-item-header,
|
||||
.phui-list-item-header a {
|
||||
color: #9ca5b5;
|
||||
|
@ -56,6 +52,10 @@
|
|||
position: relative;
|
||||
}
|
||||
|
||||
.phui-list-sidenav .phui-list-item-view {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.phui-list-sidenav .phui-list-item-href {
|
||||
display: block;
|
||||
padding: 2px 16px;
|
||||
|
@ -69,7 +69,7 @@
|
|||
padding: 2px 10px;
|
||||
}
|
||||
|
||||
.phui-list-sidenav .phui-list-item-href:hover {
|
||||
.device-desktop .phui-list-sidenav .phui-list-item-href:hover {
|
||||
background: #005588;
|
||||
background-image: linear-gradient(to bottom, #3b86c4, #2b628f);
|
||||
background-image: -webkit-linear-gradient(top, #3b86c4, #2b628f);
|
||||
|
@ -123,3 +123,7 @@
|
|||
width: 14px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.device-phone .phui-list-view.phui-list-navbar > li {
|
||||
float: none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue