diff options
| author | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-03-31 11:53:28 +0200 | 
|---|---|---|
| committer | Felix Hammerl <fhammerl@thoughtworks.com> | 2016-04-13 17:11:37 +0200 | 
| commit | 6272657d254c064be2c6b552b42caf2357c801c3 (patch) | |
| tree | 24aa3df8d08780263965d88cc874a4e065e76231 | |
| parent | ac5f11fc29507aec3bf8d91970a45eecf8a4e848 (diff) | |
Issue #670: Move attachment button to compose-view
| -rw-r--r-- | web-ui/app/scss/_styles.scss | 18 | ||||
| -rw-r--r-- | web-ui/app/scss/views/_compose-view.scss | 23 | 
2 files changed, 23 insertions, 18 deletions
| diff --git a/web-ui/app/scss/_styles.scss b/web-ui/app/scss/_styles.scss index c771fb0f..5a073296 100644 --- a/web-ui/app/scss/_styles.scss +++ b/web-ui/app/scss/_styles.scss @@ -755,21 +755,3 @@ div.side-nav-bottom {    }  } -.buttons-group span#attachment-button{ -  cursor: pointer; -  outline: 0; -  margin-left: 18px; -  padding-top: 0px; -  -ms-transform: rotate(224deg); /* IE 9 */ -  -webkit-transform: rotate(224deg); /* Chrome, Safari, Opera */ -  transform: rotate(224deg); - -  i.fa-paperclip { -      font-size: 1.7em; -  } - -  &.busy { -    color: lighten($recipients_font_color, 10%); -    cursor: progress; -  } -} diff --git a/web-ui/app/scss/views/_compose-view.scss b/web-ui/app/scss/views/_compose-view.scss index e4282564..ebfae1da 100644 --- a/web-ui/app/scss/views/_compose-view.scss +++ b/web-ui/app/scss/views/_compose-view.scss @@ -116,6 +116,29 @@      .buttons-group {          margin-top: 0px; + +        span#attachment-button { +            cursor: pointer; +            outline: 0; +            margin-left: 18px; +            padding-top: 0px; +            -ms-transform: rotate(224deg); + +            /* IE 9 */ +            -webkit-transform: rotate(224deg); + +            /* Chrome, Safari, Opera */ +            transform: rotate(224deg); + +            i.fa-paperclip { +                font-size: 1.7em; +            } + +            &.busy { +                color: lighten($recipients_font_color, 10%); +                cursor: progress; +            } +        }      }      #attachment-upload-item { | 
