Instantly share code, notes, and snippets.
Last active
February 27, 2022 01:05
Dynalistのメニュー内の各項目を非表示にするCSSです。解説は https://bit.ly/3v8DCuq にあります。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
li.MenuItem--collapse{display:none !important} /* Collapse */ | |
li.MenuItem--collapseAll{display:none !important} /* Collapse all */ | |
li.MenuItem--expand{display:none !important} /* Expand */ | |
li.MenuItem--expandAll{display:none !important} /* Expand all */ | |
li.MenuItem--expandToLevelParent{display:none !important} /* Expand to level */ | |
li[data-level="1"]{display:none !important} /* Level 1 */ | |
li[data-level="2"]{display:none !important} /* Level 2 */ | |
li[data-level="3"]{display:none !important} /* Level 3 */ | |
li[data-level="4"]{display:none !important} /* Level 4 */ | |
li.MenuItem--collapseSiblings{display:none !important} /* Collapse all siblings */ | |
li.MenuItem--expandSiblings{display:none !important} /* Expand all siblings */ | |
li.MenuItem--zoomIn{display:none !important} /* Zoom In */ | |
li.MenuItem--addNote{display:none !important} /* Add note */ | |
li.MenuItem--deleteNode{display:none !important} /* Delete */ | |
li.MenuItem--deleteCheckedNodes{display:none !important} /* Delete checked items */ | |
li.MenuItem--bookmarkNode{display:none !important} /* Add to bookmarks */ | |
li.MenuItem--sortChildren{display:none !important} /* Sort */ | |
li.MenuItem--sortTitleAsc{display:none !important} /* Title (A to Z) */ | |
li.MenuItem--sortTitleDesc{display:none !important} /* Title (Z to A) */ | |
li.MenuItem--sortDateDesc{display:none !important} /* Date (new to old) */ | |
li.MenuItem--sortDateAsc{display:none !important} /* Date (old to new) */ | |
li.MenuItem--sortCheckedStatusAsc{display:none !important} /* Unchecked first */ | |
li.MenuItem--sortCheckedStatusDesc{display:none !important} /* Checked first */ | |
li.MenuItem--sortEditedTimeDesc{display:none !important} /* Edited (new to old) */ | |
li.MenuItem--sortEditedTimeAsc{display:none !important} /* Edited (old to new) */ | |
li.MenuItem--sortCreatedTimeDesc{display:none !important} /* Created (new to old) */ | |
li.MenuItem--sortCreatedTimeAsc{display:none !important} /* Created (old to new) */ | |
li.MenuItem--reverseCurrent{display:none !important} /* Reverse current */ | |
li.MenuItem--searchReplace{display:none !important} /* Search and replace... */ | |
li.MenuItem--indent{display:none !important} /* Indent */ | |
li.MenuItem--unindent{display:none !important} /* Unindent */ | |
li.MenuItem--moveNode{display:none !important} /* Move to... */ | |
li.MenuItem--insertTemplate{display:none !important} /* Insert template... */ | |
li.MenuItem--showCheckbox{display:none !important} /* Add checkbox */ | |
li.MenuItem--addCheckboxToChildren{display:none !important} /* Add checkbox to children */ | |
li.MenuItem--hideCheckbox{display:none !important} /* Remove checkbox */ | |
li.MenuItem--removeCheckboxFromChildren{display:none !important} /* Remove checkbox to children */ | |
li.MenuItem--check{display:none !important} /* Check off */ | |
li.MenuItem--uncheck{display:none !important} /* Uncheck */ | |
li.MenuItem--makeNumberedList{display:none !important} /* Number children */ | |
li.MenuItem--unmakeNumberedList{display:none !important} /* Stop numbering children */ | |
li.MenuItem--shareRootNode{display:none !important} /* Manage sharing... */ | |
li.MenuItem--getLink{display:none !important} /* Get link */ | |
li.MenuItem--showReferences{display:none !important} /* Show all references */ | |
li.MenuItem--exportNode{display:none !important} /* Export... */ | |
li.MenuItem--setAsInbox{display:none !important} /* Set as inbox */ | |
ul.set-color-label-menu{display:none !important} /* Color label */ | |
ul.set-heading-level-menu{display:none !important} /* 見出し化ボタン */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment