{"tiddlers":{"$:/themes/linonetwo/itonnote/base":{"title":"$:/themes/linonetwo/itonnote/base","tags":"$:/tags/Stylesheet","text":"\\rules except horizrule dash\n\n/**\n * 由于 Tiddlywiki 会把 base.tid 里的 -- 识别为分隔符，变为 - ，所以如果需要用变量，就用 \\rules except horizrule dash\n */\n/*\n** Start with the vanilla theme and normalize CSS reset, and then belay some of its effects\n*/\n\n{{$:/themes/tiddlywiki/vanilla/base}}\n\n<$importvariables filter=\"[[$:/themes/tiddlywiki/vanilla/base]]\">\n\n/** fix native tw table overflow, should not affect other table widget wrapped within div */\n.tc-tiddler-body > table {\n  display: block;\n  overflow: auto;\n}\n.tc-tiddler-body > table tbody {\n  display: table;\n  width: 100%;\n}\n\n/**\n  代码样式\n*/\n\np > code, li > code, code[data-slate-leaf=true] {\n  box-decoration-break: clone;\n  padding: .1rem .3rem .2rem;\n  border-radius: .2rem;\n  background: <<colour code-background>>;\n}\n\n.hljs {\n  background-color: <<colour page-background>>;\n  border: none;\n  box-shadow: <<colour sidebar-foreground-shadow>>;\n}\n\npre {\n  word-break: break-all;\n}\n\ndiv.cm-code-block-line, div.latex {\n  background: <<colour button-background>>;\n}\ndiv.cm-code-block-line:hover, div.latex:hover {\n  background: <<colour button-background-hover>>;\n}\n\n/**\n  卡片、编辑器和背景样式\n*/\n\n/** 给卡片加上阴影 */\n.tc-tiddler-frame {\n  box-shadow: <<colour sidebar-foreground-shadow>>;\n}\n\n/** 优化标题区域在长条目里的显示，磁吸顶部不隐藏，查看模式和编辑模式可分别开启。 */\ndiv.tc-tiddler-title {\n  background: <<colour tiddler-title-background>>;\n}\n<% if [[$:/themes/tiddlywiki/vanilla/options/stickytitles]get[text]match[yes]] %>\ndiv.tc-tiddler-title {\n  backdrop-filter: blur(10px);\n  z-index: 900;\n  position: sticky;\n}\n/** fix menubar with sticky title https://github.com/Jermolene/TiddlyWiki5/issues/4471#issuecomment-594456486*/\ndiv.tc-tiddler-title {\n  top: calc(var(--menubar-height, 0px) - 1px);\n}\n<% endif %>\n<% if [[$:/themes/linonetwo/itonnote/configs/sticky-edit-title]get[text]match[yes]] %>\ndiv.tc-tiddler-edit-title {\n  backdrop-filter: blur(10px);\n  z-index: 900;\n  position: sticky;\n}\ndiv.tc-tiddler-edit-title {\n  top: calc(var(--menubar-height, 0px) - 1px);\n}\n<% endif %>\n\ndiv.tc-tiddler-title {\n  background: <<colour tiddler-title-background>>;\n}\n/** 编辑器工具栏 */\n<% if [[$:/themes/linonetwo/itonnote/configs/sticky-edit-toolbar]get[text]match[yes]] %>\n.tc-editor-toolbar {\n  background: <<colour tiddler-editor-background>>;\n  backdrop-filter: blur(10px);\n  position: sticky;\n  z-index: 890;\n}\n  <% if [[$:/themes/linonetwo/itonnote/configs/sticky-edit-title]get[text]match[yes]] %>\n    /** 当编辑标题吸顶时，编辑器工具栏下移标题一般会有的高度 */\n    .tc-editor-toolbar {\n      top: calc(var(--menubar-height, 0px) + 50px);\n    }\n  <% else %>\n    .tc-editor-toolbar {\n      top: calc(var(--menubar-height, 0px) - 1px);\n    }\n  <% endif %>\n  /** 父级元素不能有任何overflow:visible以外的overflow设置，否则没有粘滞效果 */\n  div.tc-tiddler-preview.tc-tiddler-editor {\n    overflow: unset;\n  }\n<% endif %>\n\n.tc-block-dropdown {\n  z-index: 1001;\n}\n\n/** 去掉编辑模式下的很多边框 */\n/** 去掉预览的边框，除了左边框 */\n.tc-tiddler-preview-preview {\n  border: none;\n  padding-left: 10px;\n  border-left: 1px solid <<colour tiddler-editor-border>>;\n}\n/** 去掉代码编辑器的边框和底色，为所见即所得编辑做准备 */\n.CodeMirror {\n  border: none !important;\n  background-color: unset !important;\n}\n/** 去掉所有其它文本编辑框的边框 */\n.tc-tiddler-frame input.tc-edit-texteditor {\n  border: none;\n  background: unset;\n}\n/** 去掉标题下面的 tag 栏的边框 */\n.tc-edit-tags {\n  border: none;\n  border-bottom: 1px solid <<colour tiddler-editor-border>>;\n  padding: 4px 8px 4px 8px;\n}\n\n/** 让预览状态下的属性编辑框不那么夺目 */\n.tc-tiddler-view-frame .tc-edit-field {\n  background-color: unset !important;\n}\n\n/**\n  自定义字体\n*/\n* {\n  font-variant-ligatures: contextual;\n  font-display: swap;\n}\n\n/* Only use fira code in code block */\ncode { font-family: 'Fira Code VF', monospace; }\n\n/**\n  按钮样式\n*/\n\n/** 除了工具栏上的按钮以外，其它按钮, 允许用 .no-itonnote-button-overwrite 取消覆盖\n  .tlui-button 是 tldraw 白板的\n */\nbutton {\n  color: <<colour button-foreground>>;\n  padding: 5px 10px;\n  margin: 2px;\n  border-radius: 5px;\n  border: <<colour button-border>>;\n  cursor: pointer;\n  /** hover动画 */\n  transition: background-color 0.2s;\n}\nbutton:hover {\n  background-color: <<colour button-background-hover>>;\n}\n\nbutton svg {\n  fill: <<colour tab-foreground>>;\n}\nbutton:disabled {\n  cursor: not-allowed;\n  opacity: 0.3;\n}\n\n/** 收合栏，修复由于 button:not(.tc-tab-selected) 带来的样式。没法在那边 not ，因为 not 列表太长会导致优先级过高 */\nbutton.tc-fold-banner {\n  position: absolute;\n  padding: 0;\n  margin: 0;\n  background: none;\n  border: none;\n  width: 23px;\n  text-align: center;\n  margin-left: -35px;\n  top: 6px;\n  bottom: 6px;\n}\nbutton.tc-unfold-banner {\n  position: unset;\n  padding: 0;\n  margin: 0;\n  background: none;\n  border: none;\n  width: 100%;\n  width: calc(100% + 2px);\n  text-align: center;\n  border-top: 2px solid #f8f8f8;\n  margin-top: 4px;\n}\n\n\n/** Tab 上的按钮 */\n.tc-tab-buttons > button {\n  border-radius: 0px;\n}\n.tc-tab-buttons button:not(.tc-tab-selected) {\n  fill: none;\n  background-color: <<colour tab-background>>;\n  color: <<colour tab-foreground>>;\n  border: none;\n  border-radius: 0px;\n}\n.tc-tab-buttons button:not(.tc-tab-selected):hover {\n  background-color: <<colour button-background-hover>>;\n}\n.tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected {\n  border: none;\n  border-bottom: 2px solid silver;\n  border-radius: 0px;\n}\n.tc-tab-buttons button.tc-tab-selected {\n  border: none;\n  border-bottom: 2px solid silver;\n  background-color: #f4f4f4;\n  border-radius: 0px;\n}\n\n/** 标签 */\nbutton.tc-tag-label, span.tc-tag-label {\n  border-radius: 3px;\n  background-color: <<colour tag-background>>;\n  color: <<colour foreground>>;\n  /** hover动画 */\n  transition: background-color 0.2s;\n  /** 适配长标题作为标签的情况 */\n  white-space: normal;\n  margin-top: 0.1em;\n  margin-bottom: 0.1em;\n}\nbutton.tc-tag-label, span.tc-tag-label:hover {\n  background-color: <<colour tag-background-hover>>;\n}\n\n/**\n  链接样式\n*/\n\na.tc-tiddlylink, a.tc-tiddlylink:hover {\n  padding: 2px;\n  padding-bottom: 0;\n  white-space: normal;\n  word-break: break-all;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  font-weight: bold;\n  line-height: 1.3;\n  color: <<colour tiddler-link-foreground>>;\n  border-bottom: <<colour tiddler-link-underline>>;\n  text-decoration: none;\n  /** hover动画 */\n  transition: background 120ms ease-in 0s;\n}\na.tc-tiddlylink:hover {\n  background-color: <<colour page-background>>;\n  color: <<colour tiddler-link-foreground>>;\n}\n\na.tc-tiddlylink-external, a.tc-tiddlylink-external:visited {\n  padding: 2px;\n  padding-bottom: 0px;\n  border-bottom: <<colour external-link-underline>>;\n  text-decoration: none;\n  box-decoration-break: clone;\n  font-weight: bold;\n  color: <<external-link-foreground>>;\n}\n\na.tc-tiddlylink-external:hover {\n  background-color: <<colour external-link-background-hover>>;\n  background-image: <<colour external-link-background-clip-image>>;\n  background-clip: border-box;\n  -webkit-background-clip: text;\n  -webkit-text-fill-color: transparent;\n}\n\n/** 预览状态标签下拉列表里的链接 */\n.tc-drop-down a.tc-tiddlylink:hover {\n  background-color: <<colour page-background>>;\n  color: <<colour tiddler-link-foreground>>;\n}\n/** 编辑器标签下拉列表当前鼠标悬浮状态的颜色 */\n.tc-block-dropdown a {\n  transition: background-color 0.2s;\n}\n.tc-block-dropdown a:hover {\n  background-color: <<colour dropdown-background>>;\n}\n\n/** 带链接的 Kookma badge，为了适应彩色背景，需要把链接默认蓝色背景色去掉，变成白色，与主题无关 */\n.dbadge a,.dbadge a:hover {\n  color: white !important;\n  border: unset;\n  -webkit-text-fill-color: unset !important;\n  font-weight: unset;\n  text-decoration: none;\n}\n\na.tc-tiddlylink.tc-tiddlylink-resolves.tc-plugin-info.tc-popup-handle.tc-popup-absolute:hover {\n  background-color: <<colour modal-border>>;\n}\n\n/**\n  侧边栏\n*/\n\n.tc-page-controls {\n  display: flex;\n  flex-wrap: wrap;\n}\n\n.tc-site-title {\n  font-size: 1.75em;\n}\n\n.tc-sidebar-scrollable {\n  overscroll-behavior: contain;\n  overflow: -moz-scrollbars-none;\n}\n.tc-sidebar-scrollable::-webkit-scrollbar {\n  width: 0 !important\n}\n\n/** 顶栏 */\n.tc-topbar {\n  z-index: 1001;\n}\n\n@media (min-width: <<sidebarbreakpoint>>) {\n  .tc-sidebar-scrollable {\n    padding: 40px 10px 0px 15px;\n  }\n}\n\n@media (max-width: <<sidebarbreakpoint>>) {\n  .tc-sidebar-header {\n    margin-top: 20px;\n    /** fix mobile left side still have width after close */\n    padding-left: 0;\n    padding-right: 0;\n  }\n  .tc-sidebar-header > .tc-reveal {\n    padding-left: 10px;\n    padding-right: 10px;\n  }\n  /** solve collision with tc-sidebar-scrollable in mobile */\n  .tc-topbar {\n    z-index: 1002;\n  }\n}\n\n\n/** 标题 */\n\n.tc-site-subtitle {\n  margin-top: 5px;\n}\n\n/**\n  卡片流展示优化\n*/\n@media (max-width: <<sidebarbreakpoint>>) {\n  .tc-story-river {\n    padding-top: 42px;\n  }\n}\n\n/**\n  宽屏时隐藏顶部 MenuBar\n*/\n\n@media (min-width: <<sidebarbreakpoint>>) {\n  nav.tc-menubar {\n  display: none !important;\n  }\n}\n\n/**\n  去除按钮、搜索框选中时的蓝框\n*/\nbutton:focus, button:active {\n  outline: none !important;\n  box-shadow: none;\n}\n\n[placeholder]{\n  text-overflow:ellipsis;\n}\n::placeholder{\n  text-overflow:ellipsis;\n}\ninput[type=search] {\n  appearance: none;\n  -webkit-appearance: none;\n}\n\n* {\n  outline: none;\n  outline-color: none;\n  -webkit-font-smoothing: antialiased;\n}\n*:focus {\n  outline: none;\n}\n/** 去除输入框默认的边框 */\ntextarea, input[type=text], input[type=search], input[type=\"\"], input:not([type]) {\n  border: 2px solid <<colour tiddler-editor-border>>;\n  background: <<colour page-background>>;\n}\n\n/*\n** TW-Locator and Bi-Link list\n*/\n.tc-table-of-contents {\n  max-width: 100%;\n  max-height: 200vh;\n  overflow: auto;\n}\n.tc-table-of-contents::-webkit-scrollbar {\n  display: none;\n}\n\n/**\n* Code Mirror\n*/\n.cm-code-block-line {\n  background-color: transparent;\n}\n\n/**\n* Hide toolbar buttons if not hover\n* Disable this effect on mobile, otherwise it will be hard to find the button\n* From tb_demo_onhover-toolbar-styles\n*/\n@media (min-width: <<sidebarbreakpoint>>) {\n  .tc-tiddler-frame .tc-titlebar button {\n    opacity: 0;\n    transition: opacity .5s ease-in-out;\n  }\n  .tc-tiddler-frame:hover .tc-titlebar button {\n    zoom: 1;\n    filter: alpha(opacity=100);\n    opacity: 1;\n  }\n}\n\n/** fix https://github.com/Jermolene/TiddlyWiki5/discussions/5821 */\nvideo::-webkit-media-controls-timeline {\n  width: 200px;\n}\n\n@media (min-width: <<sidebarbreakpoint>>) {\n  div.tc-page-container .tc-sidebar-scrollable {\n    width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth}};\n    padding-left: 2em;\n  }\n}\n<$reveal type=\"match\" state=\"$:/state/sidebar\" text=\"no\">\n  div.tc-page-container .tc-sidebar-scrollable {\n    /**\n      * Compage-control-below-pagepletely hide sidebar dom node when sidebar is not opened.\n      * To fix sometimes it is still 20px width after close. \n      */\n    display: none;\n  }\n</$reveal>\n/** Sidebar on mobile, make it sidebar instead of top bar */\n@media (max-width: <<sidebarbreakpoint>>) {\n  /** Limit this to story view, so it won't affect sidebar on calendar layout. */\n  [class^=\"tc-page-view-\"] .tc-sidebar-scrollable,\n  [class*=\" tc-page-view-\"] .tc-sidebar-scrollable {\n    height: 100vh;\n    z-index: 1001;\n    position: fixed;\n    overflow: auto;\n    overflow: overlay;\n    top: 0;\n    background: <<colour page-background>>;\n  }\n  /** make close sidebar button bigger */\n  .tc-topbar.tc-topbar-right > button.tc-hide-sidebar-btn,button.tc-show-sidebar-btn {\n    width: 2em;\n    height: 2em;\n    box-sizing: content-box;\n    border-bottom-right-radius: 50%;\n  }\n  /** move sidebar close button to top right */\n  span.tc-topbar.tc-topbar-right {\n    top: 0px;\n    right: 0px;\n    position: absolute;\n  }\n  span.tc-topbar.tc-topbar-right > button.tc-hide-sidebar-btn {\n    top: 0px;\n    right: 0px;\n    position: fixed;\n    background: rgba(255,255,255,0.3);\n    backdrop-filter: blur(3px);\n    /** make close side bar button a long vertical bar */\n    border-radius: 0px;\n    height: 100vh;\n  }\n  span.tc-topbar.tc-topbar-right > button.tc-show-sidebar-btn {\n    position: fixed;\n    left: 0;\n    top: 0;\n    background: rgba(255,255,255,0.3);\n    backdrop-filter: blur(3px);\n    <$reveal type=\"match\" state=\"$:/info/tidgi-mobile\" text=\"yes\">\n      /** fix android status bar cover the tc-show-sidebar-btn */\n      height: 4em;\n    </$reveal>\n  }\n  span.tc-topbar.tc-topbar-right > button.tc-show-sidebar-btn > svg.tc-image-chevron-left.tc-image-button, span.tc-topbar.tc-topbar-right > button.tc-hide-sidebar-btn > svg.tc-image-chevron-right.tc-image-button {\n    transform: rotate(180deg);\n  }\n  /** make opened-tiddlers-bar move right to not be cover by show-sidebar-btn */\n  section.story-backdrop .opened-tiddlers-bar-container div.opened-tiddlers-bar.tc-tab-buttons {\n    margin-left: calc(8px * 2 + 32px);\n    <$reveal type=\"match\" state=\"$:/info/tidgi-mobile\" text=\"yes\">\n      /** fix android status bar cover the opened-tiddlers-bar */\n      margin-top: 30px;\n    </$reveal>\n  }\n}\n/** fix z-index */\n.tc-modal-wrapper {\n  z-index: 1400;\n}\n\n/** fix long badge on mobile */\n.dbadge > span {\n  white-space: initial;\n}\n\n</$importvariables>\n"},"$:/themes/linonetwo/itonnote/config":{"title":"$:/themes/linonetwo/itonnote/config","tags":"$:/tags/ControlPanel/SettingsTab","caption":"<<lingo Name $:/themes/linonetwo/itonnote/language/>>","text":"\\procedure lingo-base() $:/themes/linonetwo/itonnote/language/\n\n<<lingo Config/Description>>\n\n---\n\n!! <<lingo PluginConfigs>>\n\n;<<lingo Configs/SideBarSegments/Caption>>\n:<$checkbox tiddler=\"$:/core/ui/SideBarSegments/search\" tag=\"$:/tags/SideBarSegment\"> <<lingo Configs/SideBarSegments/Description>></$checkbox>\n;<<lingo Configs/SidebarSearch/Caption>>\n:<$checkbox tiddler=\"$:/themes/linonetwo/itonnote/configs/sidebar-search\" field=\"text\" checked=\"show\" unchecked=\"hide\" default=\"hide\"> <<lingo Configs/SidebarSearch/Description>></$checkbox>\n;<<lingo Configs/SeparateTitleAndButton/Caption>>\n:<$checkbox tiddler=\"$:/themes/linonetwo/itonnote/configs/separate-title-and-button\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> <<lingo Configs/SeparateTitleAndButton/Description>></$checkbox>\n;<<lingo Configs/StickyEditToolbar/Caption>>\n:<$checkbox tiddler=\"$:/themes/linonetwo/itonnote/configs/sticky-edit-toolbar\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> <<lingo Configs/StickyEditToolbar/Description>></$checkbox>\n;{{$:/language/ThemeTweaks/Options/StickyTitles}}\n:<$checkbox tiddler=\"$:/themes/tiddlywiki/vanilla/options/stickytitles\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> {{$:/language/ThemeTweaks/Options/StickyTitles/Hint}}</$checkbox>\n<% if [[$:/themes/tiddlywiki/vanilla/options/stickytitles]get[text]!match[yes]] %>\n\n;<<lingo Configs/StickyEditTitle/Caption>>\n:<$checkbox tiddler=\"$:/themes/linonetwo/itonnote/configs/sticky-edit-title\" field=\"text\" checked=\"yes\" unchecked=\"no\" default=\"no\"> <<lingo Configs/StickyEditTitle/Description>></$checkbox>\n\n<% endif %>"},"$:/themes/linonetwo/itonnote/configs/separate-title-and-button":{"title":"$:/themes/linonetwo/itonnote/configs/separate-title-and-button","text":"no"},"$:/themes/linonetwo/itonnote/configs/sidebar-search":{"title":"$:/themes/linonetwo/itonnote/configs/sidebar-search","text":"show"},"$:/themes/linonetwo/itonnote/configs/sticky-edit-title":{"title":"$:/themes/linonetwo/itonnote/configs/sticky-edit-title","text":"yes"},"$:/themes/linonetwo/itonnote/configs/sticky-edit-toolbar":{"title":"$:/themes/linonetwo/itonnote/configs/sticky-edit-toolbar","text":"yes"},"$:/themes/tiddlywiki/vanilla/options/sidebarlayout":{"title":"$:/themes/tiddlywiki/vanilla/options/sidebarlayout","text":"fluid-fixed"},"$:/themes/linonetwo/itonnote/language/en-GB/Readme":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Readme","text":"\\procedure lingo-base() $:/themes/linonetwo/itonnote/language/\n\n! <<lingo Name>>\n\n<<lingo Description>>\n\n!! Recommended Installation\n\n* $:/plugins/linonetwo/fira-code-font plugin provides local Fira Code font, which is beneficial for displaying programming symbols.\n"},"$:/themes/linonetwo/itonnote/language/en-GB/Name":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Name","text":"TidGi Preconfig theme"},"$:/themes/linonetwo/itonnote/language/en-GB/Description":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Description","text":"Notion and VSCode inspired theme."},"$:/themes/linonetwo/itonnote/language/en-GB/PluginConfigs":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/PluginConfigs","text":"Plugin Configs"},"$:/themes/linonetwo/itonnote/language/en-GB/ConfigDescription":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/ConfigDescription","text":"These settings let you customise the behaviour of TidGi Preconfig theme plugin."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SideBarSegments/Caption":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SideBarSegments/Caption","text":"Sidebar search box, turned on by default, hidden if unchecked. Hiding will hide the content below with it."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SideBarSegments/Description":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SideBarSegments/Description","text":"With the Command Menu plugin for searching, you don't need the Tiddlywiki native search box, uncheck to hide the native search box."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SidebarSearch/Caption":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SidebarSearch/Caption","text":"Button to display the search box in the sidebar."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SidebarSearch/Description":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SidebarSearch/Description","text":"In the case of displaying a sidebar search box, feel the need to display additional buttons for the sidebar search box. You can hide it if you think it duplicates the advanced search button on the page control bar."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SeparateTitleAndButton/Caption":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SeparateTitleAndButton/Caption","text":"Staggered with the button when the title is too long, to optimize the display."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SeparateTitleAndButton/Description":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/SeparateTitleAndButton/Description","text":"Adjusting title display via CSS."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditToolbar/Caption":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditToolbar/Caption","text":"Fixed toolbar at the top when editing"},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditToolbar/Description":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditToolbar/Description","text":"In edit mode, the toolbar is fixed at the top of the screen for easier use when the tiddler content is long."},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditTitle/Caption":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditTitle/Caption","text":"Fixed title at the top when editing"},"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditTitle/Description":{"title":"$:/themes/linonetwo/itonnote/language/en-GB/Configs/StickyEditTitle/Description","text":"If you have turned off the sticky title in view mode, you can still turn it on in edit mode, the title is fixed at the top of the screen for easier saving or cancelling when the tiddler content is long."},"$:/themes/linonetwo/itonnote/language/zh-Hans/Readme":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Readme","text":"\\procedure lingo-base() $:/themes/linonetwo/itonnote/language/\n\n! <<lingo Name>>\n\n<<lingo Description>>\n\n!! 推荐安装\n\n* $:/plugins/linonetwo/fira-code-font 插件提供了本地 Fira Code 字体，有利于展示编程用到的符号。\n"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Name":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Name","text":"太记预置主题"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Description":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Description","text":"灵感来自 Notion 和 VSCode 的主题"},"$:/themes/linonetwo/itonnote/language/zh-Hans/PluginConfigs":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/PluginConfigs","text":"插件设置"},"$:/themes/linonetwo/itonnote/language/zh-Hans/ConfigDescription":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/ConfigDescription","text":"通过这些设置，您可以自定义「太记预置主题」插件的行为。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SideBarSegments/Caption":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SideBarSegments/Caption","text":"显示侧边栏搜索框。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SideBarSegments/Description":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SideBarSegments/Description","text":"有命令菜单插件用于搜索，就不需要太微原生的搜索框了，取消勾选可以隐藏原生搜索框。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SidebarSearch/Caption":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SidebarSearch/Caption","text":"显示侧边栏搜索框的按钮。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SidebarSearch/Description":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SidebarSearch/Description","text":"在显示侧边栏搜索框的情况下，是否需要显示侧边栏搜索框旁边的高级搜索按钮。如果你觉得它与页面控制栏上的高级搜索按钮重复了可以隐藏它。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SeparateTitleAndButton/Caption":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SeparateTitleAndButton/Caption","text":"标题过长时与按钮错开以优化显示。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SeparateTitleAndButton/Description":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/SeparateTitleAndButton/Description","text":"通过CSS调整标题显示。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditToolbar/Caption":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditToolbar/Caption","text":"编辑时工具栏固定在顶部"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditToolbar/Description":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditToolbar/Description","text":"在编辑模式时，工具栏固定在屏幕顶部，以便在条目内容较长时更方便使用工具栏。"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditTitle/Caption":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditTitle/Caption","text":"编辑时标题固定在顶部"},"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditTitle/Description":{"title":"$:/themes/linonetwo/itonnote/language/zh-Hans/Configs/StickyEditTitle/Description","text":"关闭了查看模式时标题吸顶时，勾选可以依然开启在编辑模式时，标题固定在屏幕顶部，以便在条目内容较长时更方便保存或取消。"},"$:/palettes/Notion":{"title":"$:/palettes/Notion","tags":"$:/tags/Palette $:/themes/linonetwo/itonnote/readme","type":"application/x-tiddler-dictionary","name":"Notion","description":"Notion inspired light and modern colors","color-scheme":"light","text":"alert-background: #ffe476\nalert-border: #b99e2f\nalert-highlight: #881122\nalert-muted-foreground: #b99e2f\nbackground: #ffffff\nblockquote-bar: <<colour muted-foreground>>\nbutton-background: rgba(0, 0, 0, 0.03)\nbutton-background-hover: rgba(0, 0, 0, 0.05)\nbutton-foreground: #333\nbutton-border: none\ncode-background: linear-gradient(19deg,#DDD,#EEE)\ncode-border: none\ncode-foreground: #333\ndiff-delete-background: #ffc9c9\ndiff-delete-foreground: <<colour foreground>>\ndiff-equal-background: \ndiff-equal-foreground: <<colour foreground>>\ndiff-insert-background: #aaefad\ndiff-insert-foreground: <<colour foreground>>\ndiff-invisible-background: \ndiff-invisible-foreground: <<colour muted-foreground>>\ndirty-indicator: #ff0000\ndownload-background: #34c734\ndownload-foreground: <<colour background>>\ndragger-background: <<colour foreground>>\ndragger-foreground: <<colour background>>\ndropdown-background: #fff\ndropdown-border: <<colour muted-foreground>>\ndropdown-tab-background-selected: rgba(55, 53, 47, 0.08)\ndropdown-tab-background: #ececec\ndropzone-background: rgba(0,200,0,0.7)\nexternal-link-background-hover: #333\nexternal-link-background-clip-image: linear-gradient(19deg, #333 0%, #CCC 100%)\nexternal-link-background-visited: inherit\nexternal-link-background: inherit\nexternal-link-foreground-hover: inherit\nexternal-link-foreground-visited: #666\nexternal-link-foreground: #666\nexternal-link-underline: 1px solid #8357d7\nforeground: #333333\nmessage-background: #ecf2ff\nmessage-border: #cfd6e6\nmessage-foreground: #547599\nmodal-backdrop: <<colour foreground>>\nmodal-background: <<colour background>>\nmodal-border: #999999\nmodal-footer-background: #f5f5f5\nmodal-footer-border: #dddddd\nmodal-header-border: #eeeeee\nmuted-foreground: #bbb\nnotification-background: #ffffdd\nnotification-border: #999999\npage-background: #fafafa\npre-background: #f5f5f5\npre-border: #cccccc\nprimary: rgb(46, 170, 220)\nselection-background:\nselection-foreground:\nselect-tag-background:\nselect-tag-foreground:\nsidebar-button-foreground: <<colour foreground>>\nsidebar-controls-foreground-hover: #000000\nsidebar-controls-foreground: #aaaaaa\nsidebar-foreground-shadow: rgba(15, 15, 15, 0.1) 0px 0px 5px 1px, rgba(15, 15, 15, 0.1) 0px 2px 10px\nsidebar-foreground: #acacac\nsidebar-muted-foreground-hover: #444444\nsidebar-muted-foreground: #c0c0c0\nsidebar-tab-background-selected: #f4f4f4\nsidebar-tab-background: #e0e0e0\nsidebar-tab-border-selected: <<colour tab-border-selected>>\nsidebar-tab-border: <<colour tab-border>>\nsidebar-tab-divider: #e4e4e4\nsidebar-tab-foreground-selected:\nsidebar-tab-foreground: <<colour tab-foreground>>\nsidebar-tiddler-link-foreground-hover: #444444\nsidebar-tiddler-link-foreground: #999999\nsite-title-foreground: <<colour tiddler-title-foreground>>\nstatic-alert-foreground: #aaaaaa\ntab-background-selected: rgba(255, 255, 255, 0.3)\ntab-background: transparent\ntab-border-selected: #d8d8d8\ntab-border: #cccccc\ntab-divider: #d8d8d8\ntab-foreground-selected: <<colour tab-foreground>>\ntab-foreground: #666666\ntable-border: #dddddd\ntable-footer-background: #a8a8a8\ntable-header-background: #f0f0f0\ntag-background: rgba(92, 112, 128, 0.9)\ntag-background-hover: rgba(92, 112, 128, 1)\ntag-foreground: <<colour foreground>>\ntiddler-background: <<colour background>>\ntiddler-border: <<colour background>>\ntiddler-controls-foreground-hover: #888888\ntiddler-controls-foreground-selected: #444444\ntiddler-controls-foreground: #cccccc\ntiddler-editor-background: rgba(255, 255, 255, 0.5)\ntiddler-editor-border-image: #ffffff\ntiddler-editor-border: rgba(242, 241, 238, 0.6)\ntiddler-editor-fields-even: #eee\ntiddler-editor-fields-odd: #fff\ntiddler-info-background: #f8f8f8\ntiddler-info-border: #dddddd\ntiddler-info-tab-background: #f8f8f8\ntiddler-link-background: <<colour background>>\ntiddler-link-foreground: <<colour button-foreground>>\ntiddler-link-underline: 1px solid rgba(55, 53, 47, 0.16)\ntiddler-subtitle-foreground: #c0c0c0\ntiddler-title-foreground: #182955\ntiddler-title-background: rgba(255, 255, 255, 0.5)\ntoolbar-new-button:\ntoolbar-options-button:\ntoolbar-save-button:\ntoolbar-info-button:\ntoolbar-edit-button:\ntoolbar-close-button:\ntoolbar-delete-button:\ntoolbar-cancel-button:\ntoolbar-done-button:\nuntagged-background: #999999\nvery-muted-foreground: #888888\nwikilist-background: #e5e5e5\nwikilist-item: #fff\nwikilist-info: #000\nwikilist-title: #666\nwikilist-title-svg: <<colour wikilist-title>>\nwikilist-url: #aaa\nwikilist-button-open: #4fb82b\nwikilist-button-open-hover: green\nwikilist-button-reveal: #5778d8\nwikilist-button-reveal-hover: blue\nwikilist-button-remove: #d85778\nwikilist-button-remove-hover: red\nwikilist-toolbar-background: #d3d3d3\nwikilist-toolbar-foreground: #888\nwikilist-droplink-dragover: rgba(255,192,192,0.5)\nwikilist-button-background: #acacac\nwikilist-button-foreground: #000"},"$:/themes/linonetwo/itonnote/plugin-modification":{"title":"$:/themes/linonetwo/itonnote/plugin-modification","tags":"$:/tags/Stylesheet","type":"text/vnd.tiddlywiki","text":"/*\n** Change some style of plugins\n*/\n\n/**\n* opened tiddlers bar\n*/\nsection.story-backdrop > p, section.story-backdrop > p > div.tc-tab-buttons {\n  background-color: #fafafa33 !important;\n}\n"},"$:/themes/linonetwo/itonnote/readme":{"title":"$:/themes/linonetwo/itonnote/readme","text":"\\procedure lingo-base() $:/themes/linonetwo/itonnote/language/\n\n<<lingo Readme>>\n"},"$:/themes/linonetwo/itonnote/separate-title-and-button":{"title":"$:/themes/linonetwo/itonnote/separate-title-and-button","tags":"$:/tags/Stylesheet","text":"<% if [[$:/themes/linonetwo/itonnote/configs/separate-title-and-button]get[text]match[yes]] %>\n/**\n\t让标题与按钮分隔开。\n*/\n.tc-titlebar h2 {\n\tdisplay: table-header-group;\n\tword-wrap:break-word;\n\tword-break:break-all;\n}\n<% endif %>\n"},"$:/themes/linonetwo/itonnote/sidebar-search":{"title":"$:/themes/linonetwo/itonnote/sidebar-search","tags":"$:/tags/Stylesheet","text":"<$reveal state=\"$:/themes/linonetwo/itonnote/configs/sidebar-search\" type=\"match\" text=\"hide\">\n\n/** 隐藏没用的侧边栏的搜索栏按钮 */\n.tc-sidebar-search > p > div > span > button {\n\tdisplay: none;\n}\n\n</$reveal>"},"$:/themes/linonetwo/itonnote/sidebarWidth.css":{"title":"$:/themes/linonetwo/itonnote/sidebarWidth.css","text":"div.tc-page-container{--scrollbar-width:calc(100vw - 100%)}.tc-sidebar-scrollable{max-width:calc(100vw - (8px * 2 + 2em + var(--scrollbar-width)))}","tags":"$:/tags/Stylesheet","type":"text/css"},"$:/core/templates/static.template.css":{"title":"$:/core/templates/static.template.css","text":"<!-- from the tiddlywiki repo, core/templates/static.template.css.tid -->\n\n{{$:/boot/boot.css||$:/core/templates/wikified-tiddler}}\n\n{{$:/core/ui/PageStylesheet||$:/core/templates/wikified-tiddler}}\n\n<!-- override the core tiddler to add this -->\n\n{{$:/themes/linonetwo/itonnote/staticTemplateStyle.css||$:/core/templates/wikified-tiddler}}"},"$:/themes/linonetwo/itonnote/staticTemplateStyle.css":{"title":"$:/themes/linonetwo/itonnote/staticTemplateStyle.css","type":"text/vnd.tiddlywiki","text":"<!-- shouldn't add tags: $:/tags/Stylesheet otherwise it will affect non static mode -->\n<$importvariables filter=\"[[$:/themes/tiddlywiki/vanilla/base]]\">\n/* Hide sidebar in static template on mobile\n  Normally the sidebar will hide using js in itonnote plugin. But in static template there is no js in static template\n*/\n@media (max-width: <<sidebarbreakpoint>>) {\n  .tc-body {\n    display: flex;\n    flex-direction: column;\n    justify-content: flex-start;\n    align-items: stretch;\n  }\n  .tc-sidebar-scrollable {\n    height: auto;\n    position: unset;\n    width: 100%;\n    padding-left: 20px;\n  }\n}\n<!-- fix width related css variable not set in static mode -->\n@media (min-width: <<sidebarbreakpoint>>) {\n  .tc-sidebar-scrollable {\n    width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth}};\n    max-width: {{$:/themes/tiddlywiki/vanilla/metrics/sidebarwidth}};\n  }\n}\n</$importvariables>\n"},"$:/themes/linonetwo/itonnote/tree":{"title":"$:/themes/linonetwo/itonnote/tree","type":"text/vnd.tiddlywiki","text":"<<tree prefix:\"$:/themes/linonetwo/itonnote/\">>"}}}