mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
Carrots are awesome with vegetables
Summary: Use an angle-down icon instead of hard edged caret for search bar. I tested replacing this globally, but it didn't hold up as well. Test Plan: hover states, desktop, tablet, mobile. {F379596} Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12521
This commit is contained in:
parent
4d2210a9f0
commit
72e1a25507
2 changed files with 12 additions and 11 deletions
|
@ -7,7 +7,7 @@
|
||||||
*/
|
*/
|
||||||
return array(
|
return array(
|
||||||
'names' => array(
|
'names' => array(
|
||||||
'core.pkg.css' => '7382134c',
|
'core.pkg.css' => 'c424594f',
|
||||||
'core.pkg.js' => 'd3f3a35c',
|
'core.pkg.js' => 'd3f3a35c',
|
||||||
'darkconsole.pkg.js' => '8ab24e01',
|
'darkconsole.pkg.js' => '8ab24e01',
|
||||||
'differential.pkg.css' => '3500921f',
|
'differential.pkg.css' => '3500921f',
|
||||||
|
@ -34,7 +34,7 @@ return array(
|
||||||
'rsrc/css/aphront/typeahead.css' => '0e403212',
|
'rsrc/css/aphront/typeahead.css' => '0e403212',
|
||||||
'rsrc/css/application/almanac/almanac.css' => 'dbb9b3af',
|
'rsrc/css/application/almanac/almanac.css' => 'dbb9b3af',
|
||||||
'rsrc/css/application/auth/auth.css' => '1e655982',
|
'rsrc/css/application/auth/auth.css' => '1e655982',
|
||||||
'rsrc/css/application/base/main-menu-view.css' => '0657ac93',
|
'rsrc/css/application/base/main-menu-view.css' => 'c75df9ed',
|
||||||
'rsrc/css/application/base/notification-menu.css' => '3c9d8aa1',
|
'rsrc/css/application/base/notification-menu.css' => '3c9d8aa1',
|
||||||
'rsrc/css/application/base/phabricator-application-launch-view.css' => '16ca323f',
|
'rsrc/css/application/base/phabricator-application-launch-view.css' => '16ca323f',
|
||||||
'rsrc/css/application/base/standard-page-view.css' => 'd3e1abe9',
|
'rsrc/css/application/base/standard-page-view.css' => 'd3e1abe9',
|
||||||
|
@ -737,7 +737,7 @@ return array(
|
||||||
'phabricator-hovercard-view-css' => '44394670',
|
'phabricator-hovercard-view-css' => '44394670',
|
||||||
'phabricator-keyboard-shortcut' => '1ae869f2',
|
'phabricator-keyboard-shortcut' => '1ae869f2',
|
||||||
'phabricator-keyboard-shortcut-manager' => 'c1700f6f',
|
'phabricator-keyboard-shortcut-manager' => 'c1700f6f',
|
||||||
'phabricator-main-menu-view' => '0657ac93',
|
'phabricator-main-menu-view' => 'c75df9ed',
|
||||||
'phabricator-nav-view-css' => '7aeaf435',
|
'phabricator-nav-view-css' => '7aeaf435',
|
||||||
'phabricator-notification' => '0c6946e7',
|
'phabricator-notification' => '0c6946e7',
|
||||||
'phabricator-notification-css' => '9c279160',
|
'phabricator-notification-css' => '9c279160',
|
||||||
|
|
|
@ -233,7 +233,12 @@
|
||||||
|
|
||||||
.device .phabricator-main-menu-search
|
.device .phabricator-main-menu-search
|
||||||
button.phabricator-main-menu-search-dropdown .caret {
|
button.phabricator-main-menu-search-dropdown .caret {
|
||||||
margin-top: 9px;
|
margin-top: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.phabricator-main-menu-search-dropdown .caret:before {
|
||||||
|
content: "\f107";
|
||||||
|
font-family: FontAwesome;
|
||||||
}
|
}
|
||||||
|
|
||||||
.phabricator-main-menu-search button.phabricator-main-menu-search-dropdown
|
.phabricator-main-menu-search button.phabricator-main-menu-search-dropdown
|
||||||
|
@ -243,16 +248,12 @@
|
||||||
|
|
||||||
.phabricator-main-menu-search-dropdown .caret {
|
.phabricator-main-menu-search-dropdown .caret {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 4px;
|
right: 13px;
|
||||||
top: 3px;
|
top: 3px;
|
||||||
border-top-color: rgba(255,255,255,.8);
|
border: none;
|
||||||
|
margin-top: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.device-desktop .phabricator-main-menu-search-dropdown:hover .caret {
|
|
||||||
border-top-color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.phabricator-main-menu-search button:hover {
|
.phabricator-main-menu-search button:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue