From 130db6a2c3194d00bc83863baace4a2cd2e73ccd Mon Sep 17 00:00:00 2001 From: zmagod Date: Fri, 7 Oct 2016 12:25:46 +0200 Subject: [PATCH 1/2] fixed assignment icon [fixes SCI-561] --- app/assets/stylesheets/notifications.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/notifications.scss b/app/assets/stylesheets/notifications.scss index 39f126e63..778389c81 100644 --- a/app/assets/stylesheets/notifications.scss +++ b/app/assets/stylesheets/notifications.scss @@ -50,18 +50,24 @@ .assignment { background-color: $color-theme-primary; + width: 30px; + height: 30px; + display: inline-block; border-radius: 50%; color: $color-wild-sand; - font-size: 15px; - padding: 7px; + font-size: 13px; + padding-top: 5px; } .system-message { background-color: $color-theme-secondary; + width: 30px; + height: 30px; + display: inline-block; border-radius: 50%; color: $color-wild-sand; font-size: 13px; - padding: 7px 10px; + padding-top: 5px; } } From fe7b367eae6b7bbc009f6a87d47a6f511197f353 Mon Sep 17 00:00:00 2001 From: zmagod Date: Fri, 7 Oct 2016 15:25:53 +0200 Subject: [PATCH 2/2] fixed hound --- app/assets/stylesheets/notifications.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/assets/stylesheets/notifications.scss b/app/assets/stylesheets/notifications.scss index 778389c81..11ce9fa9a 100644 --- a/app/assets/stylesheets/notifications.scss +++ b/app/assets/stylesheets/notifications.scss @@ -50,24 +50,24 @@ .assignment { background-color: $color-theme-primary; - width: 30px; - height: 30px; - display: inline-block; border-radius: 50%; color: $color-wild-sand; + display: inline-block; font-size: 13px; + height: 30px; padding-top: 5px; + width: 30px; } .system-message { background-color: $color-theme-secondary; - width: 30px; - height: 30px; - display: inline-block; border-radius: 50%; color: $color-wild-sand; + display: inline-block; font-size: 13px; + height: 30px; padding-top: 5px; + width: 30px; } }