mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
d06788c1e5
Summary: This is just renaming to PHUI (I like shorter text :) Test Plan: reload workboard examples page, seems to not fatal and looks very appealing Reviewers: epriestley Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6904
44 lines
954 B
CSS
44 lines
954 B
CSS
/**
|
|
* @provides phui-workpanel-view-css
|
|
*/
|
|
|
|
.phui-workpanel-view .phabricator-action-header {
|
|
border: 1px solid #b3b5b6;
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
.phui-workpanel-view .phui-workpanel-header-action {
|
|
float: right;
|
|
width: 24px;
|
|
border-left: 1px solid #b3b5b6;
|
|
}
|
|
|
|
.phui-workpanel-view .phui-workpanel-body {
|
|
background: #c4cde0;
|
|
padding: 5px 5px 1px 5px;
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
box-shadow: inset 0 0px 5px rgba(0,0,0,.4);
|
|
}
|
|
|
|
.phui-workpanel-view .phui-workpanel-footer-action a {
|
|
color: #333;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.device-desktop .phui-workpanel-view .phui-workpanel-footer-action:hover {
|
|
background-color: rgba(100,100,100,.1);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.phui-workpanel-view .phui-list-item-icon {
|
|
height: 12px;
|
|
width: 12px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.phui-workpanel-view .phui-list-item-name {
|
|
padding-left: 5px;
|
|
display: inline-block;
|
|
}
|