summaryrefslogtreecommitdiff
path: root/sh_helpdesk/static/src/css/feedback.scss
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 17:14:58 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 17:14:58 +0700
commit1ca3b3df3421961caec3b747a364071c80f5c7da (patch)
tree6778a1f0f3f9b4c6e26d6d87ccde16e24da6c9d6 /sh_helpdesk/static/src/css/feedback.scss
parentb57188be371d36d96caac4b8d65a40745c0e972c (diff)
initial commit
Diffstat (limited to 'sh_helpdesk/static/src/css/feedback.scss')
-rw-r--r--sh_helpdesk/static/src/css/feedback.scss73
1 files changed, 73 insertions, 0 deletions
diff --git a/sh_helpdesk/static/src/css/feedback.scss b/sh_helpdesk/static/src/css/feedback.scss
new file mode 100644
index 0000000..ba8f07a
--- /dev/null
+++ b/sh_helpdesk/static/src/css/feedback.scss
@@ -0,0 +1,73 @@
+form {
+ &#smileys {
+ input[type="radio"] {
+ width: 90px;
+ height: 90px;
+ border: none;
+ cursor: pointer;
+ transition: border .2s ease;
+ filter: grayscale(100%);
+ margin: 0 5px;
+ transition: all .2s ease;
+ &:focus {
+ outline: 0;
+ }
+ &:hover, &:checked {
+ filter: grayscale(0);
+ }
+
+ &.very-sad {
+ background: url('/sh_helpdesk/static/src/img/emg1.svg') center;
+ background-size: cover;
+ }
+ &.sad {
+ background: url('/sh_helpdesk/static/src/img/emg4.svg') center;
+ background-size: cover;
+ }
+
+ &.neutral {
+ background: url('/sh_helpdesk/static/src/img/emg5.svg') center;
+ background-size: cover;
+ }
+ &.happy {
+ background: url('/sh_helpdesk/static/src/img/emg3.svg') center;
+ background-size: cover;
+ }
+ &.very-happy {
+ background: url('/sh_helpdesk/static/src/img/emg2.svg') center;
+ background-size: cover;
+ }
+ }
+ }
+}
+
+.mtt {
+ position: fixed;
+ bottom: 10px;
+ right: 20px;
+ color: #999;
+ text-decoration: none;
+
+ span {
+ color: #e74c3c;
+ }
+
+ &:hover {
+ color: #666;
+
+ span {
+ color: #c0392b;
+ }
+ }
+}
+ #smileys input[type="radio"] {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ }
+
+
+
+
+
+ \ No newline at end of file