mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-27 07:50:57 +01:00
Customize scrollbar in workboards
Summary: Adds basic (webkit only) styling to the workboard scrollbar. Test Plan: Tested Chrome, Workboards Reviewers: epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7505
This commit is contained in:
parent
7414777856
commit
a119eb2303
2 changed files with 10 additions and 1 deletions
|
@ -3985,7 +3985,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'phui-workboard-view-css' =>
|
||||
array(
|
||||
'uri' => '/res/445c7c7e/rsrc/css/phui/phui-workboard-view.css',
|
||||
'uri' => '/res/44fcb197/rsrc/css/phui/phui-workboard-view.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -15,6 +15,15 @@
|
|||
box-shadow: inset 0 0 5px rgba(0,0,0,.5);
|
||||
}
|
||||
|
||||
.phui-workboard-view-shadow::-webkit-scrollbar {
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.phui-workboard-view-shadow::-webkit-scrollbar-thumb {
|
||||
background: {$lightbluetext};
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.phui-workboard-action-list {
|
||||
width: 60px;
|
||||
float: left;
|
||||
|
|
Loading…
Reference in a new issue