Commit b43dd716 authored by samdbeckham's avatar samdbeckham

Updates the classnames on the security and licences modals

parent 10c3bae8
...@@ -48,10 +48,10 @@ export default { ...@@ -48,10 +48,10 @@ export default {
> >
<slot v-if="currentLicenseInModal"> <slot v-if="currentLicenseInModal">
<div class="row prepend-top-10 append-bottom-10 js-license-name"> <div class="row prepend-top-10 append-bottom-10 js-license-name">
<label class="col-sm-2 text-right font-weight-bold"> <label class="col-sm-3 text-right font-weight-bold">
{{ s__('LicenseManagement|License') }}: {{ s__('LicenseManagement|License') }}:
</label> </label>
<div class="col-sm-10 text-secondary"> <div class="col-sm-9 text-secondary">
{{ currentLicenseInModal.name }} {{ currentLicenseInModal.name }}
</div> </div>
</div> </div>
...@@ -59,10 +59,10 @@ export default { ...@@ -59,10 +59,10 @@ export default {
v-if="currentLicenseInModal.url" v-if="currentLicenseInModal.url"
class="row prepend-top-10 append-bottom-10 js-license-url" class="row prepend-top-10 append-bottom-10 js-license-url"
> >
<label class="col-sm-2 text-right font-weight-bold"> <label class="col-sm-3 text-right font-weight-bold">
{{ s__('LicenseManagement|URL') }}: {{ s__('LicenseManagement|URL') }}:
</label> </label>
<div class="col-sm-10 text-secondary"> <div class="col-sm-9 text-secondary">
<a <a
:href="currentLicenseInModal.url" :href="currentLicenseInModal.url"
target="_blank" target="_blank"
...@@ -71,12 +71,12 @@ export default { ...@@ -71,12 +71,12 @@ export default {
</div> </div>
</div> </div>
<div class="row prepend-top-10 append-bottom-10 js-license-packages"> <div class="row prepend-top-10 append-bottom-10 js-license-packages">
<label class="col-sm-2 text-right font-weight-bold"> <label class="col-sm-3 text-right font-weight-bold">
{{ s__('LicenseManagement|Packages') }}: {{ s__('LicenseManagement|Packages') }}:
</label> </label>
<license-packages <license-packages
:packages="currentLicenseInModal.packages" :packages="currentLicenseInModal.packages"
class="col-sm-10 text-secondary" class="col-sm-9 text-secondary"
/> />
</div> </div>
</slot> </slot>
......
...@@ -83,10 +83,10 @@ ...@@ -83,10 +83,10 @@
:key="index" :key="index"
class="row prepend-top-10 append-bottom-10" class="row prepend-top-10 append-bottom-10"
> >
<label class="col-sm-2 text-right font-weight-bold"> <label class="col-sm-3 text-right font-weight-bold">
{{ field.text }}: {{ field.text }}:
</label> </label>
<div class="col-sm-10 text-secondary"> <div class="col-sm-9 text-secondary">
<div <div
v-if="hasInstances(field, key)" v-if="hasInstances(field, key)"
class="info-well" class="info-well"
...@@ -180,7 +180,7 @@ ...@@ -180,7 +180,7 @@
</div> </div>
<div class="row prepend-top-20 append-bottom-10"> <div class="row prepend-top-20 append-bottom-10">
<div class="col-sm-10 offset-sm-2 text-secondary"> <div class="col-sm-9 offset-sm-3 text-secondary">
<template v-if="hasDismissedBy"> <template v-if="hasDismissedBy">
{{ s__('ciReport|Dismissed by') }} {{ s__('ciReport|Dismissed by') }}
<a <a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment