github.com/billybanfield/evergreen@v0.0.0-20170525200750-eeee692790f7/public/static/less/task_queues.less (about) 1 @distros-list-padding: 6px; 2 #nav-container { 3 position: fixed; 4 padding-bottom: 20px; 5 } 6 7 #distros-list-container { 8 height: 500px; 9 overflow-y: scroll; 10 border: 1px solid #ddd; 11 } 12 13 #distros-list{ 14 .no-decoration; 15 a { 16 color: black; 17 } 18 li { 19 padding: @distros-list-padding; 20 border-radius: 2px; 21 -moz-border-radius: 2px; 22 margin-bottom: 3px; 23 &:hover { 24 .active-distro-colors; 25 &:not(.active-distro){ 26 opacity: .5; 27 } 28 cursor: pointer; 29 } 30 } 31 } 32 33 .active-distro-colors { 34 background-color: #5F923B; 35 color: white; 36 } 37 38 .active-distro { 39 .active-distro-colors; 40 } 41 42 .task-queue-table { 43 table-layout: fixed; 44 td { 45 text-overflow: ellipsis; 46 overflow: hidden; 47 white-space: nowrap; 48 } 49 .task-col { 50 width:40%; 51 } 52 53 .index-col { 54 width:7%; 55 font-weight: bold; 56 } 57 .task-queue-elt { 58 font-size:10px; 59 width:15% 60 } 61 } 62 63 #time-stats{ 64 table { 65 margin-top: 16px; 66 font-size: 12px; 67 } 68 } 69 70 #stats { 71 p { 72 font-size: 16px; 73 } 74 } 75 76 .task-queue-elt { 77 font-size:10px; 78 } 79