From 72ac2e6e670907fe45629da2ca0ef6a5fe89b875 Mon Sep 17 00:00:00 2001 From: Christopher Sexton Date: Thu, 17 May 2018 11:22:04 -0400 Subject: [PATCH] Add back in the masquerade styles These were inadvertently removed in #11, but needed for the styling of the masquerade functionality. --- app/assets/stylesheets/radius-theme.scss | 1 + app/assets/stylesheets/radius-theme/masquerade.scss | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 app/assets/stylesheets/radius-theme/masquerade.scss diff --git a/app/assets/stylesheets/radius-theme.scss b/app/assets/stylesheets/radius-theme.scss index 785135d..39a3844 100644 --- a/app/assets/stylesheets/radius-theme.scss +++ b/app/assets/stylesheets/radius-theme.scss @@ -1,2 +1,3 @@ @import "radius-theme/app"; +@import "radius-theme/masquerade"; diff --git a/app/assets/stylesheets/radius-theme/masquerade.scss b/app/assets/stylesheets/radius-theme/masquerade.scss new file mode 100644 index 0000000..854a0b5 --- /dev/null +++ b/app/assets/stylesheets/radius-theme/masquerade.scss @@ -0,0 +1,12 @@ +#masquerade { + text-align: center; + background: #7A7A7A; + background-image: repeating-linear-gradient(45deg, #c52f24 0px, #c52f24 25px, #d8362a 25px, #d8362a 50px, #c52f24 50px); + color: white; + font-size: 12px; + padding: 4px; + a { + color: white; + text-decoration: underline; + } +}