diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-08-04 12:13:36 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-08-04 12:13:36 +0100 |
commit | 25c9b5b531c5dfe08f9dc9d075589a30465fa318 (patch) | |
tree | e522a52a2ed76369b1c0991b30e992e3653eeecd | |
parent | a5b0584dab118f1022f05d85f6b505e5138507bd (diff) | |
download | gitlab-ce-25c9b5b531c5dfe08f9dc9d075589a30465fa318.tar.gz |
Minor adjustments after UX review
Fixes scss lint errors
-rw-r--r-- | app/assets/stylesheets/framework/variables.scss | 8 | ||||
-rw-r--r-- | app/assets/stylesheets/pages/projects.scss | 23 |
2 files changed, 23 insertions, 8 deletions
diff --git a/app/assets/stylesheets/framework/variables.scss b/app/assets/stylesheets/framework/variables.scss index cf0a1ad57d0..f25b96b87a6 100644 --- a/app/assets/stylesheets/framework/variables.scss +++ b/app/assets/stylesheets/framework/variables.scss @@ -623,3 +623,11 @@ $perf-bar-bucket-bg: #111; $perf-bar-bucket-color: #ccc; $perf-bar-bucket-box-shadow-from: rgba($white-light, .2); $perf-bar-bucket-box-shadow-to: rgba($black, .25); + + +/* +Project Templates Icons +*/ +$rails: #c00; +$node: #353535; +$java: #70ad51; diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss index adeb5d55a6a..2f4a8426b8b 100644 --- a/app/assets/stylesheets/pages/projects.scss +++ b/app/assets/stylesheets/pages/projects.scss @@ -485,7 +485,10 @@ a.deploy-project-label { display: block; margin: 0 auto 4px; font-size: 24px; - top: 0; + + @media (min-width: $screen-xs-max) { + top: 0; + } } @media (max-width: $screen-xs-max) { @@ -498,15 +501,15 @@ a.deploy-project-label { } .icon-rails path { - fill: #C00; + fill: $rails; } .icon-node-express path { - fill: #353535; + fill: $node; } .icon-java-spring path { - fill: #70AD51; + fill: $java; } > div { @@ -516,6 +519,10 @@ a.deploy-project-label { } } +.project-templates-buttons .btn:last-child { + margin-right: 0; +} + .create-project-options { display: flex; @@ -526,7 +533,7 @@ a.deploy-project-label { .first-column { @media(min-width: $screen-xs-min) { max-width: 50%; - width: 50%; + padding-right: 30px; } @media(max-width: $screen-xs-max) { @@ -558,7 +565,7 @@ a.deploy-project-label { &::before { content: "OR"; position: absolute; - left: 0px; + left: 0; top: 40%; z-index: 10; padding: 8px 0; @@ -567,7 +574,7 @@ a.deploy-project-label { color: $gl-text-color-tertiary; transform: translateX(-50%); font-size: 12px; - font-weight: bold;; + font-weight: bold; line-height: 20px; // Mobile @@ -575,7 +582,7 @@ a.deploy-project-label { left: 50%; top: 10px; transform: translateY(-50%); - padding: 0px 8px; + padding: 0 8px; } } |