mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 19:52:44 +01:00
(stable) Add more color/CSS to phui-icon-selector
Summary: Fixes T12205. These got over-ridden at a global scale (correctly) and need to adjust local scopes better. Also make it more bluer. Test Plan: Go to Edit Dashboard, and pick a new icon for a Dashboard. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12205 Differential Revision: https://secure.phabricator.com/D17312
This commit is contained in:
parent
027de23970
commit
eabb4072d0
2 changed files with 19 additions and 6 deletions
|
@ -151,7 +151,7 @@ return array(
|
||||||
'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f',
|
'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f',
|
||||||
'rsrc/css/phui/phui-header-view.css' => '92935c02',
|
'rsrc/css/phui/phui-header-view.css' => '92935c02',
|
||||||
'rsrc/css/phui/phui-hovercard.css' => 'e904f5dc',
|
'rsrc/css/phui/phui-hovercard.css' => 'e904f5dc',
|
||||||
'rsrc/css/phui/phui-icon-set-selector.css' => '1ab67aad',
|
'rsrc/css/phui/phui-icon-set-selector.css' => '87db8fee',
|
||||||
'rsrc/css/phui/phui-icon.css' => '09f46dd9',
|
'rsrc/css/phui/phui-icon.css' => '09f46dd9',
|
||||||
'rsrc/css/phui/phui-image-mask.css' => 'a8498f9c',
|
'rsrc/css/phui/phui-image-mask.css' => 'a8498f9c',
|
||||||
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
|
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
|
||||||
|
@ -864,7 +864,7 @@ return array(
|
||||||
'phui-header-view-css' => '92935c02',
|
'phui-header-view-css' => '92935c02',
|
||||||
'phui-hovercard' => '1bd28176',
|
'phui-hovercard' => '1bd28176',
|
||||||
'phui-hovercard-view-css' => 'e904f5dc',
|
'phui-hovercard-view-css' => 'e904f5dc',
|
||||||
'phui-icon-set-selector-css' => '1ab67aad',
|
'phui-icon-set-selector-css' => '87db8fee',
|
||||||
'phui-icon-view-css' => '09f46dd9',
|
'phui-icon-view-css' => '09f46dd9',
|
||||||
'phui-image-mask-css' => 'a8498f9c',
|
'phui-image-mask-css' => 'a8498f9c',
|
||||||
'phui-info-panel-css' => '27ea50a1',
|
'phui-info-panel-css' => '27ea50a1',
|
||||||
|
|
|
@ -3,8 +3,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
button.icon-button {
|
button.icon-button {
|
||||||
background: #f7f7f7;
|
background-color: #F7F7F9;
|
||||||
border: 1px solid {$lightblueborder};
|
background-image: linear-gradient(to bottom, #ffffff, #f1f0f1);
|
||||||
|
border: 1px solid rgba({$alphablue},.2);
|
||||||
|
color: {$darkgreytext};
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
|
@ -15,6 +17,14 @@ button.icon-button {
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.icon-button:hover {
|
||||||
|
border: 1px solid rgba({$alphablue},.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.icon-button .phui-icon-view {
|
||||||
|
color: {$darkbluetext};
|
||||||
|
}
|
||||||
|
|
||||||
.icon-grid {
|
.icon-grid {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -24,6 +34,9 @@ button.icon-button {
|
||||||
}
|
}
|
||||||
|
|
||||||
button.icon-button.selected {
|
button.icon-button.selected {
|
||||||
background: {$bluebackground};
|
border: 1px solid {$sky};
|
||||||
border: 1px solid {$blueborder};
|
}
|
||||||
|
|
||||||
|
button.icon-button.selected .phui-icon-view {
|
||||||
|
color: {$sky};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue