mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7c61ace086
Summary: Adds the ability to set a pager onto an object box directly and pick up appropriate styles. Test Plan: grep for renderTablePagerBox, test layouts with and without a pager. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12604 Differential Revision: https://secure.phabricator.com/D17754
160 lines
3.3 KiB
CSS
160 lines
3.3 KiB
CSS
/**
|
|
* @provides phui-object-box-css
|
|
*/
|
|
|
|
.phui-object-box {
|
|
position: relative;
|
|
padding: 12px 12px 4px 12px;
|
|
}
|
|
|
|
.phui-object-box.phui-object-box-collapsed {
|
|
padding: 12px 0 0 0;
|
|
}
|
|
|
|
.device-phone .phui-object-box.phui-object-box-collapsed {
|
|
padding: 8px 0 0 0;
|
|
}
|
|
|
|
.phui-object-box.phui-object-box-collapsed .phui-header-shell {
|
|
padding: 0 8px 12px 16px;
|
|
}
|
|
|
|
.device-phone .phui-object-box.phui-object-box-collapsed .phui-header-shell {
|
|
padding: 0 8px 8px;
|
|
}
|
|
|
|
div.phui-object-box.phui-object-box-flush {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.phui-object-box .phui-header-shell + .phui-info-view {
|
|
margin: 12px 0 0 0;
|
|
}
|
|
|
|
.phui-object-box.phui-object-box-collapsed
|
|
.phui-header-shell + .phui-info-view {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
border: 0;
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.device-phone .phui-object-box {
|
|
margin: 8px;
|
|
padding: 8px 8px 4px 8px;
|
|
}
|
|
|
|
.device-phone .phui-object-box .phui-header-shell {
|
|
padding: 4px 0 12px 4px;
|
|
}
|
|
|
|
.device-tablet .phui-object-box {
|
|
margin: 8px 8px 0 8px;
|
|
}
|
|
|
|
.phui-object-box .phui-header-header .phui-tag-view {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.phui-object-box .phui-header-header .phui-tag-core {
|
|
border-color: transparent;
|
|
padding: 1px 6px;
|
|
font-size: {$normalfontsize};
|
|
}
|
|
|
|
/* - Object Box Colors ------------------------------------------------------ */
|
|
|
|
.phui-box-border.phui-object-box-green {
|
|
border: 1px solid {$green};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-green .phui-header-view {
|
|
color: {$green};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-green .phui-header-shell {
|
|
border-bottom-color: {$lightgreen};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-blue {
|
|
border: 1px solid {$blue};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-blue .phui-header-view {
|
|
color: {$blue};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-blue .phui-header-shell {
|
|
border-bottom-color: {$lightblue};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-red {
|
|
border: 1px solid {$red};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-red .phui-header-view {
|
|
color: {$red};
|
|
}
|
|
|
|
.phui-box-border.phui-object-box-red .phui-header-shell {
|
|
border-bottom-color: {$lightred};
|
|
}
|
|
|
|
.phui-object-box-hidden-content {
|
|
background: {$lightgreybackground};
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.phui-object-box.phui-object-box-collapsed .phui-object-box-hidden-content {
|
|
margin: 0;
|
|
}
|
|
|
|
/* - Double Object Box Override --------------------------------------------- */
|
|
|
|
.phui-object-box .phui-object-box {
|
|
padding: 0;
|
|
}
|
|
|
|
/* eh oh el */
|
|
.phui-object-box .phui-object-box + .phui-object-box {
|
|
border-top: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.phui-object-box .phui-object-box .phui-header-shell .phui-header-header {
|
|
font-family: {$fontfamily};
|
|
}
|
|
|
|
.phui-object-box .phui-box-border {
|
|
border-width: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.phui-object-box .phui-box-border.phui-box-blue-property {
|
|
border-width: 1px;
|
|
}
|
|
|
|
.phui-object-box .phui-object-box .phui-header-shell .phui-header-header {
|
|
font-size: {$normalfontsize};
|
|
margin: 0;
|
|
color: {$darkbluetext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phui-object-box .phui-object-box .phui-header-shell {
|
|
margin: 0;
|
|
padding: 4px 8px;
|
|
background-color: {$lightgreybackground};
|
|
}
|
|
|
|
/* - Pager at the bottom ---------------------------------------------------- */
|
|
|
|
.phui-object-box-pager {
|
|
background-color: {$bluebackground};
|
|
border-top: 1px solid {$lightblueborder};
|
|
}
|
|
|
|
.phui-object-box-pager a.button {
|
|
margin-top: 8px;
|
|
margin-bottom: 8px;
|
|
}
|