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 .row p, 79 fieldset { 80 label { 81 font-weight: 300; 82 } 83 } 84 input { 85 height: 2.4em; 86 } 87 input[type=submit] { 88 width: auto; 89 margin-top: 1.5em; 90 } 91} 92.firmware__upload-chooser { 93 width: 100%; 94 background: $lightgrey; 95 padding-left: 1em; 96 padding-right: 1em; 97 .btn-secondary { 98 vertical-align: middle; 99 margin: 1em .5em 1em 0; 100 } 101 &.uploading { 102 @include indeterminate-bar; 103 } 104 @include mediaQuery(medium) { 105 width: 70%; 106 } 107} 108.firmware__upload-station { 109 padding-bottom: 1em; 110 border-bottom: 1px solid $medgrey; 111 padding-left: 1em; 112} 113.firmware__upload-tftp { 114 padding-top: 2em; 115 padding-left: 1em; 116}