57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
/*
 | 
						|
    Smart Second Brain 
 | 
						|
    This plugin is early and there are no CSS classes really being used so this is extremely hacky, but improves the UX a bit.
 | 
						|
    The plugin isn't quite practical enough for me just yet, so I'll revisit this another time in the future.
 | 
						|
    https://github.com/replete/obsidian-minimal-theme-css-snippets
 | 
						|
*/
 | 
						|
 | 
						|
.workspace-leaf {
 | 
						|
 | 
						|
    [data-type=chat-view] .view-content:has(.chat-window) {
 | 
						|
        /* selectors aren't great in this plugin right now */
 | 
						|
        padding:0;
 | 
						|
 | 
						|
        output {
 | 
						|
            font-size:13px;
 | 
						|
        }
 | 
						|
 | 
						|
        [aria-label="Open quick settings"] {
 | 
						|
            transform:translate(0, 7px) !important;
 | 
						|
            opacity: 0.7;
 | 
						|
        }
 | 
						|
 | 
						|
        textarea {
 | 
						|
            margin-left: 16px;
 | 
						|
            margin-right: 12px;
 | 
						|
 | 
						|
            + button {
 | 
						|
                padding-left:8px;
 | 
						|
                padding-right:8px;
 | 
						|
                margin-right:12px;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        :is(.min-h-\[33\%\]) {
 | 
						|
            padding:10px;
 | 
						|
            min-height: 20% !important;
 | 
						|
            height:auto;
 | 
						|
            font-size:13px;
 | 
						|
        }
 | 
						|
 | 
						|
        .chat-window {
 | 
						|
            border-radius:0;
 | 
						|
            border:0;
 | 
						|
            
 | 
						|
            .group {
 | 
						|
                margin:4px;
 | 
						|
                margin-left:12px;
 | 
						|
                padding-left:12px;
 | 
						|
                font-size:13px;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        > div:first-child {
 | 
						|
            padding-bottom:0 !important;
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |