1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-09 16:32:39 +01:00

Increase specificity in blue property boxes

Summary: Feels a little hairy, but should be fine overall. Ups the css specificity enough that it's always displayed the same. The main problem is headers and boxes get put everywhere, and sometimes override each other. Fixes T10757

Test Plan: review a countdown in a phame post and phriction document. Check diviner, phriction for regressions.

Reviewers: epriestley, #phacility

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T10757

Differential Revision: https://secure.phabricator.com/D15664
This commit is contained in:
Chad Little 2016-04-09 10:07:02 -07:00
parent c3afddec9c
commit db065e6758
3 changed files with 18 additions and 11 deletions

View file

@ -7,7 +7,7 @@
*/
return array(
'names' => array(
'core.pkg.css' => '9968bf8d',
'core.pkg.css' => '2bd78e9d',
'core.pkg.js' => '6972d365',
'darkconsole.pkg.js' => 'e7393ebb',
'differential.pkg.css' => '7ba78475',
@ -52,7 +52,7 @@ return array(
'rsrc/css/application/conpherence/update.css' => 'faf6be09',
'rsrc/css/application/conpherence/widget-pane.css' => '775eaaba',
'rsrc/css/application/contentsource/content-source-view.css' => '4b8b05d4',
'rsrc/css/application/countdown/timer.css' => '96696f21',
'rsrc/css/application/countdown/timer.css' => '16c52f5c',
'rsrc/css/application/daemon/bulk-job.css' => 'df9c1d4a',
'rsrc/css/application/dashboard/dashboard.css' => 'bc6f2127',
'rsrc/css/application/diff/inline-comment-summary.css' => '51efda3a',
@ -123,7 +123,7 @@ return array(
'rsrc/css/phui/phui-action-panel.css' => '91c7b835',
'rsrc/css/phui/phui-badge.css' => '3baef8db',
'rsrc/css/phui/phui-big-info-view.css' => 'bd903741',
'rsrc/css/phui/phui-box.css' => 'd909ea3d',
'rsrc/css/phui/phui-box.css' => '5c8387cf',
'rsrc/css/phui/phui-button.css' => 'a64a8de6',
'rsrc/css/phui/phui-chart.css' => '6bf6f78e',
'rsrc/css/phui/phui-crumbs-view.css' => '1a1265d4',
@ -758,7 +758,7 @@ return array(
'phabricator-chatlog-css' => 'd295b020',
'phabricator-content-source-view-css' => '4b8b05d4',
'phabricator-core-css' => 'd0801452',
'phabricator-countdown-css' => '96696f21',
'phabricator-countdown-css' => '16c52f5c',
'phabricator-dashboard-css' => 'bc6f2127',
'phabricator-drag-and-drop-file-upload' => '81f182b5',
'phabricator-draggable-list' => '5a13c79f',
@ -811,7 +811,7 @@ return array(
'phui-action-panel-css' => '91c7b835',
'phui-badge-view-css' => '3baef8db',
'phui-big-info-view-css' => 'bd903741',
'phui-box-css' => 'd909ea3d',
'phui-box-css' => '5c8387cf',
'phui-button-css' => 'a64a8de6',
'phui-calendar-css' => 'ccabe893',
'phui-calendar-day-css' => 'd1cf6f93',

View file

@ -7,8 +7,8 @@
}
.device .phabricator-timer {
margin-left: 8px;
margin-right: 8px;
margin-left: 12px;
margin-right: 12px;
}
.phabricator-remarkup .phabricator-timer-view {
@ -16,9 +16,15 @@
margin: 0 0 12px 0;
}
.phabricator-timer .countdown-description {
body .phabricator-timer .countdown-description.phabricator-remarkup {
border-bottom: 1px solid {$thinblueborder};
padding-bottom: 16px;
padding: 0 0 16px;
margin: 0;
}
.phabricator-timer .countdown-description.phabricator-remarkup
.phabricator-remarkup {
padding: 0;
}
.device-phone .phabricator-remarkup .phabricator-timer {

View file

@ -86,10 +86,11 @@
padding: 6px 16px;
}
.device .phui-box.phui-box-blue-property .phui-header-shell,
.device .phui-box-blue-property.phui-object-box.phui-object-box-collapsed
body.device .phui-box.phui-box-blue-property .phui-header-shell,
body.device .phui-box-blue-property.phui-object-box.phui-object-box-collapsed
.phui-header-shell {
padding: 6px 12px;
margin-top: 0;
}
.phui-box.phui-box-blue-property .phui-header-header {