mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Clean up list styles in Remarkup
Summary: Fixes T8643, makes lists with and without checkboxes align and display better. Test Plan: Lists with and without checkboxes. {F1111426} Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T8643 Differential Revision: https://secure.phabricator.com/D15272
This commit is contained in:
parent
71ee97d74f
commit
14ce10c0c2
2 changed files with 8 additions and 6 deletions
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
return array(
|
||||
'names' => array(
|
||||
'core.pkg.css' => '394a6788',
|
||||
'core.pkg.css' => '1972333f',
|
||||
'core.pkg.js' => 'd7daa6d8',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => '2de124c9',
|
||||
|
@ -104,7 +104,7 @@ return array(
|
|||
'rsrc/css/application/tokens/tokens.css' => '3d0f239e',
|
||||
'rsrc/css/application/uiexample/example.css' => '528b19de',
|
||||
'rsrc/css/core/core.css' => '5b3563c8',
|
||||
'rsrc/css/core/remarkup.css' => 'e1c8b32f',
|
||||
'rsrc/css/core/remarkup.css' => '2c913a06',
|
||||
'rsrc/css/core/syntax.css' => '9fd11da8',
|
||||
'rsrc/css/core/z-index.css' => '5b6fcf3f',
|
||||
'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa',
|
||||
|
@ -768,7 +768,7 @@ return array(
|
|||
'phabricator-object-selector-css' => '85ee8ce6',
|
||||
'phabricator-phtize' => 'd254d646',
|
||||
'phabricator-prefab' => 'e67df814',
|
||||
'phabricator-remarkup-css' => 'e1c8b32f',
|
||||
'phabricator-remarkup-css' => '2c913a06',
|
||||
'phabricator-search-results-css' => '7dea472c',
|
||||
'phabricator-shaped-request' => '7cbe244b',
|
||||
'phabricator-side-menu-view-css' => '3a3d9f41',
|
||||
|
|
|
@ -97,17 +97,19 @@
|
|||
list-style: lower-roman;
|
||||
}
|
||||
|
||||
.phabricator-remarkup ul.remarkup-list-with-checkmarks {
|
||||
.phabricator-remarkup .remarkup-list-with-checkmarks .remarkup-checked-item,
|
||||
.phabricator-remarkup .remarkup-list-with-checkmarks .remarkup-unchecked-item {
|
||||
list-style: none;
|
||||
margin-left: 18px;
|
||||
margin-left: -18px;
|
||||
}
|
||||
|
||||
.phabricator-remarkup .remarkup-list-with-checkmarks input {
|
||||
margin-right: 2px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.phabricator-remarkup .remarkup-list-with-checkmarks .remarkup-checked-item {
|
||||
color: {$greytext};
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.phabricator-remarkup ul.remarkup-list ol.remarkup-list,
|
||||
|
|
Loading…
Reference in a new issue