mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
0e5cd478c4
Summary: Should make it simpler here to have more `rgba` rules in CSS for things like hovers, selected states. Maybe only use `rgb` colors? Color pallette probably needs an overhaul. Test Plan: Bounce around random pages, buttons, menus. Everything appears normal. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15273
23 lines
430 B
CSS
23 lines
430 B
CSS
/**
|
|
* @provides phui-image-mask-css
|
|
*/
|
|
|
|
|
|
.phui-image-mask {
|
|
background: url('/rsrc/image/checker_lighter.png');
|
|
display: inline-block;
|
|
border: 1px solid {$lightblueborder};
|
|
padding: 4px;
|
|
}
|
|
|
|
.phui-image-mask-image {
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phui-image-mask-mask {
|
|
border: 300px solid rgba({$alphablack}, 0.5);
|
|
background-clip: content-box;
|
|
position: absolute;
|
|
}
|