summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views/_close-button.scss
diff options
context:
space:
mode:
authorFelix Hammerl <fhammerl@thoughtworks.com>2016-03-10 20:23:52 +0100
committerFelix Hammerl <fhammerl@thoughtworks.com>2016-03-15 18:39:51 +0100
commit195322b6489bc497deb1fa266414218cc0423c26 (patch)
treef0a77167de1a3120a61ac91ee6bb94041dff821b /web-ui/app/scss/views/_close-button.scss
parent02fc3cd8c2c1328cbc736a55588cf97ccbb07044 (diff)
Issue #620: Refactor read view
Diffstat (limited to 'web-ui/app/scss/views/_close-button.scss')
-rw-r--r--web-ui/app/scss/views/_close-button.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/web-ui/app/scss/views/_close-button.scss b/web-ui/app/scss/views/_close-button.scss
new file mode 100644
index 00000000..9285a145
--- /dev/null
+++ b/web-ui/app/scss/views/_close-button.scss
@@ -0,0 +1,21 @@
+.close-mail-button {
+ $button-size: 27px;
+
+ margin-right: 3px;
+ float: left;
+ background: $lighter_gray;
+ color: $medium_light_grey;
+ width: $button-size;
+ height: $button-size;
+ padding: 0;
+ border-radius: 0;
+
+ &:hover {
+ color: darken($medium_light_grey, 10%);
+ }
+
+ i {
+ padding: 0;
+ margin: 0;
+ }
+}