アウトライン編集
行の入れ替えと移動ができるScrapboxの機能
文章の構造を後から考えられる
入れ替えと移動
行単位
ブロック単位
選択部分
/help-jp/アウトライン編集
モバイルデバイスではポップアップメニューで邪魔される
一枚上のレイヤーで出ればいい?あんも.icon
意図通りにいかない?
code:css
.expandable-menu {
align-items: center;
position: absolute;
top: 0;
right: 0;
z-index: 1001;
height: 40px;
max-width: calc(100% - 50px);
border-radius: 4px 0 0 4px;
background-color: var(--expandable-menu-bg, var(--navbar-bg, rgba(53, 59, 72, 0.6)));
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px)
}
code:css
.popup-menu {
position: absolute;
left: 0;
width: 100vw;
z-index: 1002;
transform: translateY(calc(-100% - 14px));
-webkit-user-select: none;
user-select: none;
font-family: "Open Sans",Helvetica,Arial,"Hiragino Sans",sans-serif;
pointer-events: none
}