1.firmware__ready { 2 font-weight: 300; 3} 4 5.firmware__table { 6 margin-top: 2.5em; 7 margin-bottom: 2.5em; 8 9 .table__cell { 10 a { 11 display: inline-block; 12 margin-right: 1.7em; 13 text-decoration: none; 14 font-weight: 700; 15 } 16 .icon { 17 color: $medblue; 18 &.disabled { 19 color: $medgrey; 20 &:hover { 21 cursor: default; 22 } 23 } 24 &:hover { 25 cursor: pointer; 26 } 27 } 28 .icon.icon-as-spacer { 29 text-indent: 0; 30 color: $btn__disabled-txt; 31 &:hover { 32 cursor: default; 33 } 34 } 35 } 36 37 .table-header { 38 font-weight: 700; 39 p { 40 margin-bottom: 0em; 41 } 42 } 43 44 .table__row.disabled { 45 .firmware__action-link { 46 color: $medblue; 47 opacity: 1; 48 &:hover { 49 cursor: pointer; 50 } 51 } 52 } 53 .firmware__primary { 54 background-color: lighten($status-ok, 40%); 55 } 56} 57 58.firmware__version { 59 flex: 30%; 60} 61 62.firmware__active-version { 63 color: $medblue; 64 font-size: .8em; 65 float: right; 66 font-weight: 400; 67} 68 69.firmware__action-link { 70 color: $links; 71 padding: 5px; 72 min-width: 90px; 73 text-align: left; 74} 75 76.firmware__version { 77 position: relative; 78 .icon { 79 position: absolute; 80 right: 0; 81 top: 20%; 82 } 83} 84 85 86.icon__more-dropdown { 87 width: 100%; 88 top: 68%; 89 right: 0; 90 @include mediaQuery(medium){ 91 width: 30%; 92 right: 18%; 93 top: 74%; 94 } 95} 96 97// Upload firmware 98.firmware__upload-form { 99 label { 100 font-weight: 700; 101 } 102 input { 103 height: 2.4em; 104 } 105 .button { 106 min-width: 210px; 107 width: auto; 108 margin-top: 1em; 109 } 110} 111.firmware__upload-file-name { 112 text-transform: none; 113} 114.firmware__upload-chooser { 115 width: 100%; 116 background: $lightgrey; 117 padding-left: 1em; 118 padding-right: 1em; 119 margin-bottom: 1em; 120 .button { 121 vertical-align: middle; 122 margin: 1em .5em 1em 0; 123 min-width: 3em; 124 } 125 &.uploading { 126 @include indeterminate-bar; 127 } 128 @include mediaQuery(medium) { 129 width: 70%; 130 } 131} 132.firmware__upload-station { 133 padding-bottom: 2em; 134 border-bottom: 1px solid $medgrey; 135 padding-left: 1em; 136 margin-top: 2em; 137} 138.firmware__upload-tftp { 139 padding-top: 2em; 140 padding-left: 1em; 141}