1414
1515
1616
17+ # os-callout-left {
18+ position : sticky;
19+
20+ top : 80px ;
21+ z-index : 50 ;
22+ }
1723
1824
1925# sticky-search {
6066 margin-right : 16px ;
6167 margin-bottom : 32px ;
6268 border : 1px solid var (--arm-black );
63- background-color : var ( --arm-color-surface ) ;
69+ background-color : # 1E292D ;
6470 color : var (--arm-light-grey );
6571 color : rgba (255 , 255 , 255 , 0.8 );
6672 padding : 16px ;
@@ -213,6 +219,11 @@ table {
213219.col-2-name {
214220 word-wrap : break-word; /* Wrap content to avoid overflow if needed */
215221}
222+ .click-info-text {
223+ font-weight : 400 ;
224+ font-style : italic;
225+ color : var (--arm-light-grey );
226+ }
216227
217228.col-3-date {
218229 width : 160px ; /* Set size at normal breakpoints */
@@ -253,7 +264,7 @@ table {
253264
254265th .col-4-download , td .col-4-download {
255266 /* width: max-content; /* Set size based on header width */
256- width : 107 px ; /* Consistency cross-browsers */
267+ width : 120 px ; /* Consistency cross-browsers */
257268 height : auto; /* Adjust height based on content */
258269}
259270 @media (max-width : 576px ) { /* Small breakpoint */
@@ -306,6 +317,16 @@ th.col-4-download, td.col-4-download {
306317
307318
308319
320+ .caret-spin {
321+ transition : transform 0.25s ease;
322+ }
323+
324+ .caret-spin .rotated {
325+ transform : rotate (90deg );
326+ }
327+
328+
329+
309330/* Table styles */
310331/* 5 main row states, in order of css priority ->
311332 1. SW row in state: default
@@ -316,7 +337,7 @@ th.col-4-download, td.col-4-download {
316337 6. SW row in state: hover (while in clicked state)
317338*/
318339.col-header {
319- background-color : # 32363F!important ;
340+ /* background-color: #32363F!important; */
320341 /* background-color: var(--arm-color-surface)!important; */
321342 color : white!important ;
322343 font-family : 'Lato' ;
@@ -347,6 +368,9 @@ tr.main-sw-row--pinned td:first-child {
347368tr .main-sw-row--pinned td : last-child {
348369 border-right : 1px solid var (--border-color-pinned );
349370}
371+ tr .main-sw-row--pinned : hover .caret-spin {
372+ color : var (--border-color-hover );
373+ }
350374
351375/* 3. Clicked state */
352376tr .main-sw-row--clicked td {
@@ -360,6 +384,9 @@ tr.main-sw-row--clicked td:first-child {
360384tr .main-sw-row--clicked td : last-child {
361385 border-right : 1px solid var (--border-color-click );
362386}
387+ tr .main-sw-row--clicked : hover .caret-spin {
388+ color : var (--border-color-hover );
389+ }
363390
364391
365392/* 4. Hover state (over default state) */
@@ -376,6 +403,9 @@ tr.main-sw-row:hover td:first-child {
376403tr .main-sw-row : hover td : last-child {
377404 border-right : 1px solid var (--border-color-hover );
378405}
406+ tr .main-sw-row : hover .caret-spin {
407+ color : var (--border-color-hover );
408+ }
379409
380410
381411/* 5 Hover state (over pinned state) */
@@ -390,6 +420,9 @@ tr.main-sw-row--pinned:hover td:first-child {
390420tr .main-sw-row--pinned : hover td : last-child {
391421 border-right : 1px solid var (--border-color-pinned );
392422}
423+ tr .main-sw-row--pinned : hover .caret-spin {
424+ color : var (--border-color-hover );
425+ }
393426
394427/* 6. Hover state (over clicked state) */
395428tr .main-sw-row--clicked : hover td {
@@ -403,7 +436,9 @@ tr.main-sw-row--clicked:hover td:first-child {
403436tr .main-sw-row--clicked : hover td : last-child {
404437 border-right : 1px solid var (--border-color-click );
405438}
406-
439+ tr .main-sw-row--clicked : hover .caret-spin {
440+ color : var (--border-color-hover );
441+ }
407442
408443
409444/* expaneded container */
0 commit comments