diff options
| author | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-13 16:58:22 -0200 | 
|---|---|---|
| committer | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-13 17:53:32 -0200 | 
| commit | 396a0ecef3d69cd342dc60f58cc2ba4e9f5c4600 (patch) | |
| tree | 68b1cd69a47b83ee76dd8f0a9e9e101b815ec32e /web-ui | |
| parent | daa662d21f2beedce77f49e59e2314fabe5e300d (diff) | |
Fixing colors for recipient information and fixing pep8 violations
Diffstat (limited to 'web-ui')
| -rw-r--r-- | web-ui/app/scss/_colors.scss | 3 | ||||
| -rw-r--r-- | web-ui/app/scss/_mixins.scss | 6 | 
2 files changed, 7 insertions, 2 deletions
| diff --git a/web-ui/app/scss/_colors.scss b/web-ui/app/scss/_colors.scss index d011e23c..22897ac0 100644 --- a/web-ui/app/scss/_colors.scss +++ b/web-ui/app/scss/_colors.scss @@ -14,3 +14,6 @@ $primary_color: #EF4E2F;  $action_buttons: #2ba6cb;  $secondary_callout: #FF7902; + +$will_be_encrypted: #41cd60; +$wont_be_encrypted: #F6A40A; diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss index ddce49a7..18871995 100644 --- a/web-ui/app/scss/_mixins.scss +++ b/web-ui/app/scss/_mixins.scss @@ -1,3 +1,5 @@ +@import 'colors'; +  // SHARED MIXINS  @mixin btn-transition {    @include transition-property(background-color); @@ -192,10 +194,10 @@            border: 1px solid #666666;          }          &.encrypted { -          border-bottom-color: limegreen; +          border-bottom-color: $will_be_encrypted;          }          &.not-encrypted { -          border-bottom-color: orangered; +          border-bottom-color: $wont_be_encrypted;          }          background-color: #F5F5F5;          border: 1px solid #D9D9D9; | 
