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:
Benedict Aas 2018-02-20 21:07:13 +00:00 committed by GitHub
parent 765de94ca3
commit a56755e2c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -31,9 +31,7 @@
ng-class="{
'label-warning': status.type === modal.constraints.COMPATIBILITY_STATUS_TYPES.WARNING,
'label-danger': status.type === modal.constraints.COMPATIBILITY_STATUS_TYPES.ERROR
}">
{{ status.message }}
</span>
}">{{ status.message }}</span>
</footer>
<progress ng-if="drive.progress" value="{{ drive.progress }}" max="100"></progress>

View File

@ -16,6 +16,7 @@
.label {
font-size: 9px;
margin-right: 4.5px;
}
.label-big {

View File

@ -6037,7 +6037,8 @@ body {
* limitations under the License.
*/
.label {
font-size: 9px; }
font-size: 9px;
margin-right: 4.5px; }
.label-big {
font-size: 11px;