mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-23 11:16:39 +00:00
feat(GUI): add spacing to drive-selector labels (#2059)
We add a right margin to the drive-selector labels so they look nicer when there are multiple. Change-Type: patch Changelog-Entry: Add spacing to the drive-selector warning/error labels.
This commit is contained in:
parent
765de94ca3
commit
a56755e2c6
@ -31,9 +31,7 @@
|
|||||||
ng-class="{
|
ng-class="{
|
||||||
'label-warning': status.type === modal.constraints.COMPATIBILITY_STATUS_TYPES.WARNING,
|
'label-warning': status.type === modal.constraints.COMPATIBILITY_STATUS_TYPES.WARNING,
|
||||||
'label-danger': status.type === modal.constraints.COMPATIBILITY_STATUS_TYPES.ERROR
|
'label-danger': status.type === modal.constraints.COMPATIBILITY_STATUS_TYPES.ERROR
|
||||||
}">
|
}">{{ status.message }}</span>
|
||||||
{{ status.message }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
<progress ng-if="drive.progress" value="{{ drive.progress }}" max="100"></progress>
|
<progress ng-if="drive.progress" value="{{ drive.progress }}" max="100"></progress>
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
.label {
|
.label {
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
|
margin-right: 4.5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label-big {
|
.label-big {
|
||||||
|
@ -6037,7 +6037,8 @@ body {
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
.label {
|
.label {
|
||||||
font-size: 9px; }
|
font-size: 9px;
|
||||||
|
margin-right: 4.5px; }
|
||||||
|
|
||||||
.label-big {
|
.label-big {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user