Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #160 from Nike-Inc/widen_secret_key_field
Browse files Browse the repository at this point in the history
Widen 'key' field and fix 'value' field resize
  • Loading branch information
sdford authored May 22, 2018
2 parents 1641eeb + a8e9fd5 commit 60ee768
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dashboard/app/components/SecureData/SecureData.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx)
{
width: 97%;
width: 100%;
}
@media /* Thunderbolt display */
only screen and (-webkit-max-device-pixel-ratio: 1.99),
Expand All @@ -19,7 +19,7 @@
only screen and ( max-resolution: 191dpi),
only screen and ( max-resolution: 1.99dppx)
{
width: 65%;
width: 70%;
}

padding-left: 10px;
Expand Down
13 changes: 8 additions & 5 deletions dashboard/app/components/SecureDataForm/SecureDataForm.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import '../../assets/styles/common.scss';

#add-new-secure-data-form {
width: 700px;
width: 1150px;
#new-secure-data-path {
display: flex;
font-size: 16px;
Expand All @@ -23,7 +23,7 @@

#new-secure-data-path-user-value {
padding-left: 5px;
flex: 1;
flex: .6;
}

.new-secure-data-path-user-value-read-only {
Expand All @@ -36,19 +36,22 @@

#new-secure-data-kv-map {
padding-top: 10px;
padding-left: 25px;
}
.new-secure-data-kv-entry {
padding-bottom: 8px;
display: flex;

.secure-data-key {
flex: .4;
flex: 1.2;
}

.secure-data-value {
flex: .6;
flex: 1.2;
padding-left: 10px;

textarea {
resize: vertical;
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# limitations under the License.
#

version=3.15.5
version=3.15.6
groupId=com.nike.cerberus
artifactId=cms

0 comments on commit 60ee768

Please sign in to comment.