File tree 2 files changed +23
-4
lines changed
arduino-ide-extension/src
2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 92
92
display : flex;
93
93
justify-content : space-between;
94
94
align-items : center;
95
+ margin-top : 2px ;
95
96
}
96
97
97
98
.component-list-item .header .author {
98
99
color : var (--theia-panelTitle-inactiveForeground );
99
100
}
100
101
101
102
.component-list-item .header .version {
103
+ font-weight : bold;
102
104
color : var (--theia-panelTitle-inactiveForeground );
103
105
padding-top : 4px ;
104
106
}
153
155
white-space : nowrap;
154
156
}
155
157
158
+ .component-list-item .summary {
159
+ margin-top : 5px ;
160
+ margin-bottom : 5px ;
161
+ }
162
+
156
163
.component-list-item .footer {
157
164
flex-direction : column-reverse;
158
165
padding-top : 8px ;
159
166
}
160
167
168
+ .component-list-item .footer > select {
169
+ margin : 0px ;
170
+ }
171
+
172
+ .component-list-item .footer > button {
173
+ visibility : hidden;
174
+ }
175
+
176
+ .component-list-item : hover .footer > button {
177
+ visibility : visible;
178
+ }
179
+
161
180
.component-list-item .footer > * {
162
181
display : inline-block;
163
182
}
Original file line number Diff line number Diff line change @@ -221,8 +221,8 @@ export class LibraryServiceImpl
221
221
{
222
222
name : library . getName ( ) ,
223
223
installedVersion,
224
- description : library . getSentence ( ) ,
225
- summary : library . getParagraph ( ) ,
224
+ description : library . getParagraph ( ) ,
225
+ summary : library . getSentence ( ) ,
226
226
moreInfoLink : library . getWebsite ( ) ,
227
227
includes : library . getProvidesIncludesList ( ) ,
228
228
location : this . mapLocation ( library . getLocation ( ) ) ,
@@ -462,9 +462,9 @@ function toLibrary(
462
462
author : lib . getAuthor ( ) ,
463
463
availableVersions,
464
464
includes : lib . getProvidesIncludesList ( ) ,
465
- description : lib . getSentence ( ) ,
465
+ description : lib . getParagraph ( ) ,
466
466
moreInfoLink : lib . getWebsite ( ) ,
467
- summary : lib . getParagraph ( ) ,
467
+ summary : lib . getSentence ( ) ,
468
468
category : lib . getCategory ( ) ,
469
469
types : lib . getTypesList ( ) ,
470
470
} ;
You can’t perform that action at this time.
0 commit comments