@@ -69,13 +69,6 @@ td.column-name {
6969 }
7070}
7171
72- td .column-download {
73- display : flex ;
74- gap : 0.5em ;
75- flex-flow : column ;
76- text-align : center ;
77- }
78-
7972.cloud-snippet-download {
8073 color : theme .$accent !important ;
8174}
@@ -218,12 +211,74 @@ td.column-download {
218211 display : flex ;
219212 flex-wrap : wrap ;
220213 justify-content : center ;
214+
215+ .plugin-card {
216+ display : flex ;
217+ flex-direction : column ;
218+ justify-content : space-between ;
219+
220+ .cloud-meta-row {
221+ display : flex ;
222+ justify-content : space-between ;
223+ align-items : center ;
224+ flex-grow : 1 ;
225+ }
226+
227+ .column-name {
228+ display : flex ;
229+ justify-content : space-between ;
230+
231+ h3 {
232+ display : inline-flex ;
233+ flex-shrink : 1 ;
234+ }
235+
236+ .title-icon {
237+ block-size : 90px ;
238+ margin-block-start : -7px ;
239+ }
240+ }
241+
242+ .column-votes {
243+ display : inline-flex ;
244+ gap : 3px ;
245+
246+ & :hover {
247+ .thumbs-up {
248+ stroke : #059669 ;
249+ fill : #6ee7b7 ;
250+ animation : thumb 1s ease-in-out infinite ;
251+ }
252+ }
253+
254+ .num-votes {
255+ display : inline-flex ;
256+ align-items : flex-end ;
257+ }
258+ }
259+ }
260+
261+ .action-buttons {
262+ margin : 0 ;
263+ align-items : flex-end ;
264+
265+ .button {
266+ inline-size : 100% ;
267+ text-align : center ;
268+ }
269+ }
221270}
222271
223- .cloud-snippets .plugin-card {
224- display : flex ;
225- flex-direction : column ;
226- justify-content : space-between ;
272+ .cloud-snippets #the-list {
273+ .column-download {
274+ display : flex ;
275+ flex-flow : column ;
276+ text-align : end ;
277+
278+ li {
279+ list-style : none ;
280+ }
281+ }
227282}
228283
229284.cloud-connect-wrap {
@@ -264,6 +319,7 @@ td.column-download {
264319 background-color : #ce0000 ;
265320 border-radius : 50% ;
266321
322+
267323 .cloud-connect-active & {
268324 background-color : #25a349 ;
269325 }
@@ -282,33 +338,16 @@ td.column-download {
282338 block-size : 1.25rem ; /* 20px */
283339 transform-origin : bottom left ;
284340
285- [dir = " rtl" ] & {
286- transform-origin : bottom right ;
287- }
288-
289341 & :hover {
290342 stroke : #059669 ;
291343 fill : #6ee7b7 ;
292344 }
293345}
294346
295- .voted-info {
296- display : inline-flex ;
297- gap : 3px ;
298- align-items : center ;
299- margin-block-end : 6px !important ;
300-
301- & :hover {
302- .thumbs-up {
303- stroke : #059669 ;
304- fill : #6ee7b7 ;
305- animation : thumb 1s ease-in-out infinite ;
306- }
307- }
308- }
309-
310347.plugin-card-bottom {
311348 overflow : visible !important ;
349+ display : flex ;
350+ align-items : center ;
312351}
313352
314353.beta-test-notice {
@@ -323,22 +362,22 @@ td.column-download {
323362
324363@keyframes thumb {
325364 0% {
326- transform : rotate (0 )
365+ transform : rotate (0 );
327366 }
328367
329368 33% {
330- transform : rotate (calc ( 7deg * var ( --cs-direction-multiplier )) );
369+ transform : rotate (7deg );
331370 }
332371
333372 66% {
334- transform : rotate (calc ( -15deg * var ( --cs-direction-multiplier )) );
373+ transform : rotate (-15deg );
335374 }
336375
337376 90% {
338- transform : rotate (calc ( 5deg * var ( --cs-direction-multiplier )) );
377+ transform : rotate (5deg );
339378 }
340379
341380 100% {
342- transform : rotate (0 )
381+ transform : rotate (0 );
343382 }
344383}
0 commit comments