File tree Expand file tree Collapse file tree
src/vs/editor/contrib/suggest Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8787 font-family : var (--monaco-monospace-font );
8888}
8989
90+
91+ /* Styles for status bar part */
92+
93+
94+ .monaco-editor .suggest-widget .suggest-status-bar {
95+ visibility : hidden;
96+ box-sizing : border-box;
97+ display : flex;
98+ flex-flow : row nowrap;
99+ justify-content : space-between;
100+ width : 100% ;
101+ font-size : 80% ;
102+ padding : 0 8px 0 4px ;
103+ border-top : 1px solid transparent;
104+ }
105+
106+ .monaco-editor .suggest-widget .list-right .docs-side .suggest-status-bar {
107+ left : auto;
108+ right : 0 ;
109+ }
110+
111+ .monaco-editor .suggest-widget .with-status-bar .suggest-status-bar {
112+ visibility : visible;
113+ }
114+
115+ .monaco-editor .suggest-widget .with-status-bar .suggest-status-bar .action-label {
116+ min-height : 18px ;
117+ opacity : 0.5 ;
118+ color : inherit;
119+ }
120+
121+ .monaco-editor .suggest-widget .with-status-bar .suggest-status-bar .action-item : not (: last-of-type ) .action-label {
122+ margin-right : 0 ;
123+ }
124+
125+ .monaco-editor .suggest-widget .with-status-bar .suggest-status-bar .action-item : not (: last-of-type ) .action-label ::after {
126+ content : ', ' ;
127+ margin-right : 0.3em ;
128+ }
129+
130+ .monaco-editor .suggest-widget .with-status-bar .monaco-list .monaco-list-row > .contents > .main > .right > .readMore ,
131+ .monaco-editor .suggest-widget .with-status-bar .monaco-list .monaco-list-row .focused .string-label > .contents > .main > .right > .readMore {
132+ display : none;
133+ }
134+
135+ .monaco-editor .suggest-widget .with-status-bar : not (.docs-side ) .monaco-list .monaco-list-row : hover > .contents > .main > .right .can-expand-details > .details-label {
136+ width : 100% ;
137+ }
138+
90139/* Styles for Message element for when widget is loading or is empty */
91140
92141.monaco-editor .suggest-widget > .message {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44 *--------------------------------------------------------------------------------------------*/
55
66import 'vs/css!./media/suggest' ;
7- import 'vs/css!./media/suggestStatusBar' ;
87import 'vs/base/browser/ui/codicons/codiconStyles' ; // The codicon symbol styles are defined here and must be loaded
98import 'vs/editor/contrib/documentSymbols/outlineTree' ; // The codicon symbol colors are defined here and must be loaded
109import * as nls from 'vs/nls' ;
You can’t perform that action at this time.
0 commit comments