diff --git a/static/css/core-ui.css b/static/css/core-ui.css index 3352c7a49..0f51c29f9 100644 --- a/static/css/core-ui.css +++ b/static/css/core-ui.css @@ -431,6 +431,11 @@ a:focus { border-top: 1px solid #eee; } +.config-bool-field-element input { + margin-right: 6px; + font-size: 24px; +} + .config-setup-tool-element .help-text { margin-top: 6px; color: #aaa; diff --git a/static/directives/config/config-bool-field.html b/static/directives/config/config-bool-field.html index f3649d570..190698290 100644 --- a/static/directives/config/config-bool-field.html +++ b/static/directives/config/config-bool-field.html @@ -1,5 +1,8 @@
- +
diff --git a/static/directives/config/config-setup-tool.html b/static/directives/config/config-setup-tool.html index 2017bbced..0f46a77eb 100644 --- a/static/directives/config/config-setup-tool.html +++ b/static/directives/config/config-setup-tool.html @@ -36,9 +36,8 @@ Anonymous Access: -
- - +
+ Enable Anonymous Access
If enabled, public repositories and search can be accessed by anyone that can @@ -50,9 +49,8 @@ User Creation: -
- - +
+ Enable Open User Creation
If enabled, user accounts can be created by anyone. @@ -63,9 +61,8 @@ Encrypted Client Password: -
- - +
+ Require Encrypted Client Passwords
If enabled, users will not be able to login from the Docker command @@ -103,11 +100,12 @@ SSL: -
- + - -
+ Enable SSL + +
A valid SSL certificate and private key files are required to use this option.
@@ -194,11 +192,11 @@ A remote storage system is required for high-availability systems.

-
- - - -
If enabled, replicates storage to other regions.
+
+ Enable Storage Replication +
+ If enabled, replicates storage to other regions. See documentation for more information. +
@@ -220,9 +218,8 @@ Set Default: -
- - +
+ Replicate to storage engine by default
@@ -257,11 +254,11 @@ placeholder="{{ field.placeholder }}" ng-if="field.kind == 'text'" is-optional="field.optional"> -
- - -
+ + {{ field.placeholder }} +
- +
+ Enable Security Scanning
-
A scanner compliant with the Quay Security Scanning API must be running to use this feature. Documentation on running Clair can be found at Running Clair Security Scanner.
@@ -343,9 +338,8 @@

If enabled, all images in the registry can be fetched via rkt fetch or any other AppC discovery-compliant implementation.

-
- - +
+ Enable ACI Conversion
@@ -390,9 +384,8 @@ users to reset their passwords.

-
- - +
+ Enable E-mails
@@ -415,9 +408,8 @@ @@ -435,9 +427,8 @@
TLS: -
- - +
+ Require TLS
Authentication: -
- - +
+ Requires Authentication
@@ -684,9 +675,8 @@
Allow insecure: -
- - +
+ Allow fallback to non-TLS connections
If enabled, LDAP will fallback to insecure non-TLS connections if TLS does not succeed. @@ -716,9 +706,8 @@

-
- - +
+ Enable GitHub Authentication
@@ -761,10 +750,8 @@
Organization Filtering: -
- - +
+ Restrict By Organization Membership
@@ -804,9 +791,8 @@

-
- - +
+ Enable Google Authentication
@@ -838,9 +824,8 @@ If enabled, users can submit Dockerfiles to be built and pushed by the Enterprise Registry. -
- - +
+ Enable Dockerfile Build
@@ -869,9 +854,8 @@

-
- - +
+ Enable GitHub Triggers
@@ -934,9 +918,8 @@

-
- - +
+ Enable BitBucket Triggers
@@ -981,9 +964,8 @@

-
- - +
+ Enable GitLab Triggers
diff --git a/static/js/core-config-setup.js b/static/js/core-config-setup.js index cf7f9941c..384e8c878 100644 --- a/static/js/core-config-setup.js +++ b/static/js/core-config-setup.js @@ -801,7 +801,7 @@ angular.module("core-config-setup", ['angularFileUpload']) priority: 0, templateUrl: '/static/directives/config/config-bool-field.html', replace: false, - transclude: false, + transclude: true, restrict: 'C', scope: { 'binding': '=binding'