1 2 3.firmware__ready { 4 font-weight: 300; 5} 6 7.firmware__table { 8 margin-top: 2.5em; 9 margin-bottom: 2.5em; 10 11 .table__cell { 12 a { 13 display: inline-block; 14 margin-right: 1.7em; 15 text-decoration: none; 16 font-weight: 700; 17 } 18 .icon { 19 color: $medblue; 20 &.disabled { 21 color: $medgrey; 22 } 23 } 24 } 25 26 .table-header { 27 font-weight: 700; 28 } 29 30 .table__row.disabled { 31 .firmware__action-link { 32 color: $medblue; 33 opacity: 1; 34 &:hover { 35 cursor: pointer; 36 } 37 } 38 } 39} 40 41.firmware__active-version { 42 color: $medblue; 43 font-size: .8em; 44 float: right; 45 font-weight: 400; 46} 47 48.firmware__action-link { 49 color: $links; 50 padding: 5px; 51 min-width: 90px; 52 text-align: left; 53} 54 55.firmware__version { 56 position: relative; 57 .icon { 58 position: absolute; 59 right: 0; 60 top: 20%; 61 } 62 &.active { 63 overflow: visible; 64 } 65} 66 67 68.icon__more-dropdown { 69 width: 300px; 70 top: 70%; 71} 72 73// Upload firmware 74.firmware__upload-form { 75 label { 76 font-weight: 700; 77 } 78 79 input { 80 height: 2.4em; 81 } 82 input[type=submit] { 83 width: auto; 84 margin-top: 1.5em; 85 } 86} 87.firmware__upload-chooser { 88 width: 100%; 89 background: $lightgrey; 90 padding-left: 1em; 91 padding-right: 1em; 92 .btn-secondary { 93 vertical-align: middle; 94 margin: 1em .5em 1em 0; 95 } 96 &.uploading { 97 @include indeterminate-bar; 98 } 99 @include mediaQuery(medium) { 100 width: 70%; 101 } 102} 103.firmware__upload-station { 104 padding-bottom: 1em; 105 border-bottom: 1px solid $medgrey; 106 padding-left: 1em; 107} 108.firmware__upload-tftp { 109 padding-top: 2em; 110 padding-left: 1em; 111}