mirror of
https://github.com/quorafind/Obsidian-Float-Search.git
synced 2026-07-22 07:30:25 +00:00
55 lines
854 B
CSS
55 lines
854 B
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
.float-search-modal {
|
|
width: 600px;
|
|
}
|
|
|
|
.float-search-modal.float-search-width {
|
|
width: 1200px;
|
|
}
|
|
|
|
.float-search-modal-search-ctn, .float-search-modal-file-ctn {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.float-search-modal-file-ctn .view-header {
|
|
display: none;
|
|
}
|
|
|
|
.float-search-modal-content {
|
|
height: 800px;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.fs-content .workspace-split.mod-vertical {
|
|
height: 100%;
|
|
}
|
|
|
|
.fs-content {
|
|
height: 100%;
|
|
}
|
|
|
|
.fs-content .cm-scroller {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.fs-block {
|
|
height: 100% !important;
|
|
}
|
|
|
|
.fs-block .workspace-leaf-resize-handle {
|
|
display: none;
|
|
}
|
|
|
|
.modal-container.float-search-modal-container.mod-dim {
|
|
z-index: 30;
|
|
}
|