Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 55 lines 761 B view raw
1.propertyTable { 2 width: 100%; 3} 4 5.row { 6 display: flex; 7 align-items: flex-start; 8 height: 100%; 9 border-radius: 8px; 10} 11 12.darkRow { 13 composes: row; 14 background-color: var(--background-secondary); 15} 16 17.keyValuePair { 18 flex-grow: 1; 19 max-width: 33.3%; 20 text-align: left; 21 padding: 4px; 22} 23 24.keyValuePair:first-child { 25 padding-left: 8px; 26} 27 28.highlightedCell { 29 background-color: var(--link-light-hover); 30 border-radius: 8px; 31} 32 33.key { 34 height: 16px; 35 display: flex; 36 align-items: center; 37} 38 39.highlightDot { 40 margin-left: 4px; 41} 42 43.value { 44 overflow: hidden; 45 white-space: nowrap; 46 text-overflow: ellipsis; 47 padding-right: 2px; 48} 49 50.value_wrapped { 51 overflow: hidden; 52 white-space: normal; 53 overflow-wrap: break-word; 54 padding-right: 2px; 55}