@pioneer-platform/pioneer 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/LICENSE +24 -0
  2. package/README.md +204 -0
  3. package/es/assets/chat-icon.svg +1 -0
  4. package/es/assets/close-icon.png +0 -0
  5. package/es/assets/image.png +0 -0
  6. package/es/assets/logo-no-bg.svg +1 -0
  7. package/es/assets/paperclip-icon.png +0 -0
  8. package/es/assets/sounds/notification.mp3 +0 -0
  9. package/es/components/ChatWindow.js +59 -0
  10. package/es/components/Header.js +20 -0
  11. package/es/components/Launcher.js +96 -0
  12. package/es/components/LauncherNew.js +130 -0
  13. package/es/components/MessageList.js +22 -0
  14. package/es/components/Messages/EmojiMessage.js +7 -0
  15. package/es/components/Messages/FileMessage.js +10 -0
  16. package/es/components/Messages/TextMessage.js +12 -0
  17. package/es/components/Messages/index.js +40 -0
  18. package/es/components/PinMessage.js +42 -0
  19. package/es/components/UserInput.js +190 -0
  20. package/es/components/emoji-picker/EmojiPicker.js +34 -0
  21. package/es/components/emoji-picker/emojiData.json +1 -0
  22. package/es/components/icons/EmojiIcon.js +36 -0
  23. package/es/components/icons/FileIcon.js +36 -0
  24. package/es/components/icons/SendIcon.js +38 -0
  25. package/es/components/popups/PopupWindow.js +51 -0
  26. package/es/index.js +4 -0
  27. package/es/messageTypes.js +12 -0
  28. package/es/styles/chat-window.css +55 -0
  29. package/es/styles/emojiPicker.css +38 -0
  30. package/es/styles/header.css +53 -0
  31. package/es/styles/index.js +8 -0
  32. package/es/styles/launcher.css +87 -0
  33. package/es/styles/message.css +88 -0
  34. package/es/styles/pin-message.css +24 -0
  35. package/es/styles/popup-window.css +61 -0
  36. package/es/styles/user-input.css +140 -0
  37. package/lib/assets/chat-icon.svg +1 -0
  38. package/lib/assets/close-icon.png +0 -0
  39. package/lib/assets/image.png +0 -0
  40. package/lib/assets/logo-no-bg.svg +1 -0
  41. package/lib/assets/paperclip-icon.png +0 -0
  42. package/lib/assets/sounds/notification.mp3 +0 -0
  43. package/lib/components/ChatWindow.js +66 -0
  44. package/lib/components/Header.js +27 -0
  45. package/lib/components/Launcher.js +105 -0
  46. package/lib/components/LauncherNew.js +139 -0
  47. package/lib/components/MessageList.js +31 -0
  48. package/lib/components/Messages/EmojiMessage.js +14 -0
  49. package/lib/components/Messages/FileMessage.js +17 -0
  50. package/lib/components/Messages/TextMessage.js +19 -0
  51. package/lib/components/Messages/index.js +47 -0
  52. package/lib/components/PinMessage.js +49 -0
  53. package/lib/components/UserInput.js +199 -0
  54. package/lib/components/emoji-picker/EmojiPicker.js +41 -0
  55. package/lib/components/emoji-picker/emojiData.json +1 -0
  56. package/lib/components/icons/EmojiIcon.js +43 -0
  57. package/lib/components/icons/FileIcon.js +44 -0
  58. package/lib/components/icons/SendIcon.js +46 -0
  59. package/lib/components/popups/PopupWindow.js +59 -0
  60. package/lib/index.js +7 -0
  61. package/lib/messageTypes.js +14 -0
  62. package/lib/styles/chat-window.css +55 -0
  63. package/lib/styles/emojiPicker.css +38 -0
  64. package/lib/styles/header.css +53 -0
  65. package/lib/styles/index.js +10 -0
  66. package/lib/styles/launcher.css +87 -0
  67. package/lib/styles/message.css +88 -0
  68. package/lib/styles/pin-message.css +24 -0
  69. package/lib/styles/popup-window.css +61 -0
  70. package/lib/styles/user-input.css +140 -0
  71. package/package.json +53 -0
  72. package/umd/chat-icon.f032be1d.svg +1 -0
  73. package/umd/close-icon.3faa3158.png +0 -0
  74. package/umd/image.6779a2a6.png +0 -0
  75. package/umd/logo-no-bg.4d881dc9.svg +1 -0
  76. package/umd/main.8da8d3c4.css +5 -0
  77. package/umd/main.8da8d3c4.css.map +1 -0
  78. package/umd/notification.aa8f8c40.mp3 +0 -0
  79. package/umd/pioneer.js +6684 -0
  80. package/umd/pioneer.min.js +11 -0
  81. package/umd/pioneer.min.js.map +1 -0
@@ -0,0 +1,87 @@
1
+ .sc-launcher {
2
+ width: 60px;
3
+ height: 60px;
4
+ background-color: #f39314;
5
+ background-position: center;
6
+ background-repeat: no-repeat;
7
+ position: fixed;
8
+ right: 25px;
9
+ bottom: 25px;
10
+ border-radius: 50%;
11
+ box-shadow: none;
12
+ transition: box-shadow 0.2s ease-in-out;
13
+ }
14
+
15
+ .sc-launcher:before {
16
+ content: '';
17
+ position: relative;
18
+ display: block;
19
+ width: 60px;
20
+ height: 60px;
21
+ border-radius: 50%;
22
+ transition: box-shadow 0.2s ease-in-out;
23
+ }
24
+
25
+ .sc-launcher.opened {
26
+ visibility: hidden;
27
+ }
28
+
29
+ .sc-launcher .sc-open-icon,
30
+ .sc-launcher .sc-closed-icon {
31
+ width: 60px;
32
+ height: 60px;
33
+ position: fixed;
34
+ right: 25px;
35
+ bottom: 25px;
36
+ transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;
37
+ }
38
+
39
+ .sc-launcher .sc-closed-icon {
40
+ transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;
41
+ width: 60px;
42
+ height: 60px;
43
+
44
+ }
45
+
46
+ .sc-launcher .sc-open-icon {
47
+ padding: 20px;
48
+ box-sizing: border-box;
49
+ opacity: 0;
50
+ }
51
+
52
+ .sc-launcher.opened .sc-open-icon {
53
+ transform: rotate(-90deg);
54
+ opacity: 1;
55
+ }
56
+
57
+ .sc-launcher.opened .sc-closed-icon {
58
+ transform: rotate(-90deg);
59
+ opacity: 0;
60
+ }
61
+
62
+ .sc-launcher.opened:before {
63
+ box-shadow: 0px 0px 400px 250px rgba(148, 149, 150, 0.2);
64
+ }
65
+
66
+ .sc-launcher:hover {
67
+ box-shadow: 0 0px 27px 1.5px rgba(0,0,0,0.2);
68
+ }
69
+
70
+ .sc-new-messages-count {
71
+ position: absolute;
72
+ top: -3px;
73
+ left: 41px;
74
+ display: flex;
75
+ justify-content: center;
76
+ flex-direction: column;
77
+ border-radius: 50%;
78
+ width: 22px;
79
+ height: 22px;
80
+ background: #ff4646;
81
+ color: white;
82
+ text-align: center;
83
+ margin: auto;
84
+ font-size: 12px;
85
+ font-weight: 500;
86
+ box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
87
+ }
@@ -0,0 +1,88 @@
1
+ .sc-message {
2
+ width: 300px;
3
+ margin: auto;
4
+ padding-bottom: 10px;
5
+ display: flex;
6
+ }
7
+
8
+ .sc-message--content {
9
+ width: 100%;
10
+ display: flex;
11
+ }
12
+
13
+ .sc-message--content.sent {
14
+ justify-content: flex-end;
15
+ }
16
+
17
+ .sc-message--content.sent .sc-message--avatar {
18
+ display: none;
19
+ }
20
+
21
+ .sc-message--avatar {
22
+ background-image: url(https://d13yacurqjgara.cloudfront.net/assets/avatar-default-aa2eab7684294781f93bc99ad394a0eb3249c5768c21390163c9f55ea8ef83a4.gif);
23
+ background-repeat: no-repeat;
24
+ background-size: 100%;
25
+ background-position: center;
26
+ min-width: 30px;
27
+ min-height: 30px;
28
+ border-radius: 50%;
29
+ align-self: center;
30
+ margin-right: 15px;
31
+ }
32
+
33
+ .sc-message--text {
34
+ padding: 17px 20px;
35
+ border-radius: 6px;
36
+ font-weight: 300;
37
+ font-size: 14px;
38
+ line-height: 1.4;
39
+ white-space: pre-wrap;
40
+ -webkit-font-smoothing: subpixel-antialiased;
41
+ word-wrap: break-word;
42
+ width: calc(100% - 90px);
43
+ }
44
+
45
+ .sc-message--content.sent .sc-message--text {
46
+ color: white;
47
+ background-color: #f39314;
48
+ max-width: calc(100% - 120px);
49
+ word-wrap: break-word;
50
+ }
51
+
52
+ .sc-message--content.received .sc-message--text {
53
+ color: #263238;
54
+ background-color: #f4f7f9;
55
+ margin-right: 40px;
56
+ }
57
+
58
+ .sc-message--emoji {
59
+ font-size: 40px;
60
+ }
61
+
62
+ .sc-message--file {
63
+ background: white;
64
+ border: solid 1px #CCCDD1;
65
+ padding: 15px 20px;
66
+ border-radius: 5px;
67
+ display: flex;
68
+ font-weight: 300;
69
+ font-size: 14px;
70
+ line-height: 1.4;
71
+ cursor: pointer;
72
+ text-decoration: none;
73
+ }
74
+
75
+ .sc-message--file p {
76
+ margin: 0px 0px 0px 10px;
77
+ color: rgba(86, 88, 103, 0.6);
78
+ }
79
+
80
+ .sc-message--file .sc-user-input--file-icon:hover path {
81
+ fill: rgba(86, 88, 103, 0.3);
82
+ }
83
+
84
+ @media (max-width: 450px) {
85
+ .sc-message {
86
+ width: 80%;
87
+ }
88
+ }
@@ -0,0 +1,24 @@
1
+ .sc-pin--message {
2
+ display: flex;
3
+ padding: 5px;
4
+ background-color: #f4f7f9;
5
+ cursor: pointer;
6
+ }
7
+
8
+ .sc-pin--message--img {
9
+ border-radius: 15px;
10
+ align-self: center;
11
+ width: 45px;
12
+ height: 45px;
13
+ padding: 5px;
14
+ }
15
+
16
+ .sc-pin--message--desc {
17
+ padding: 10px;
18
+ font-size: 12px;
19
+ }
20
+
21
+ .sc-pin--message--title {
22
+ font-size: 16px;
23
+ margin-bottom: 2px;
24
+ }
@@ -0,0 +1,61 @@
1
+ .sc-popup-window {
2
+ position: relative;
3
+ width: 150px;
4
+ }
5
+
6
+ .sc-popup-window--cointainer {
7
+ position: absolute;
8
+ bottom: 20px;
9
+ right: 100px;
10
+ width: 330px;
11
+ max-height: 260px;
12
+ height: 260px;
13
+ box-shadow: 0px 7px 40px 2px rgba(148, 149, 150, 0.3);
14
+ background: white;
15
+ border-radius: 10px;
16
+ outline: none;
17
+ transition: 0.2s ease-in-out;
18
+ z-index: 1;
19
+ padding: 0px 5px 5px 5px;
20
+ box-sizing: border-box;
21
+ }
22
+
23
+ .sc-popup-window--cointainer.closed {
24
+ opacity: 0;
25
+ visibility: hidden;
26
+ bottom: 14px;
27
+ }
28
+
29
+ .sc-popup-window--cointainer:after {
30
+ content: "";
31
+ width: 14px;
32
+ height: 14px;
33
+ background: white;
34
+ position: absolute;
35
+ z-index: -1;
36
+ bottom: -6px;
37
+ right: 28px;
38
+ transform: rotate(45deg);
39
+ border-radius: 2px;
40
+ }
41
+
42
+ .sc-popup-window--search {
43
+ width: 290px;
44
+ box-sizing: border-box;
45
+ margin: auto;
46
+ display: block;
47
+ border-width: 0px 0px 1px 0px;
48
+ color: #565867;
49
+ padding-left: 25px;
50
+ height: 40px;
51
+ font-size: 14px;
52
+ background-image: url(https://js.intercomcdn.com/images/search@2x.32fca88e.png);
53
+ background-size: 16px 16px;
54
+ background-repeat: no-repeat;
55
+ background-position: 0 12px;
56
+ outline: none;
57
+ }
58
+
59
+ .sc-popup-window--search::placeholder {
60
+ color: #C1C7CD;
61
+ }
@@ -0,0 +1,140 @@
1
+ .sc-user-input {
2
+ min-height: 55px;
3
+ margin: 0px;
4
+ position: relative;
5
+ bottom: 0;
6
+ display: flex;
7
+ background-color: #f4f7f9;
8
+ border-bottom-left-radius: 10px;
9
+ border-bottom-right-radius: 10px;
10
+ transition: background-color .2s ease,box-shadow .2s ease;
11
+ }
12
+
13
+
14
+ .sc-user-input--text {
15
+ width: 300px;
16
+ resize: none;
17
+ border: none;
18
+ outline: none;
19
+ border-bottom-left-radius: 10px;
20
+ box-sizing: border-box;
21
+ padding: 18px;
22
+ font-size: 15px;
23
+ font-weight: 400;
24
+ line-height: 1.33;
25
+ white-space: pre-wrap;
26
+ word-wrap: break-word;
27
+ color: #565867;
28
+ -webkit-font-smoothing: antialiased;
29
+ max-height: 200px;
30
+ overflow: scroll;
31
+ bottom: 0;
32
+ overflow-x: hidden;
33
+ overflow-y: auto;
34
+ }
35
+
36
+ .sc-user-input--text:empty:before {
37
+ content: attr(placeholder);
38
+ display: block; /* For Firefox */
39
+ color: rgba(86, 88, 103, 0.3);
40
+ outline: none;
41
+ }
42
+
43
+ .sc-user-input--buttons {
44
+ width: 100px;
45
+ position: absolute;
46
+ right: 10px;
47
+ height: 100%;
48
+ display: flex;
49
+ justify-content: flex-end;
50
+ }
51
+
52
+ .sc-user-input--button:first-of-type {
53
+ width: 40px;
54
+ }
55
+
56
+ .sc-user-input--button {
57
+ width: 30px;
58
+ height: 55px;
59
+ display: flex;
60
+ flex-direction: column;
61
+ justify-content: center;
62
+ }
63
+
64
+ .sc-user-input--button button {
65
+ cursor: pointer;
66
+ }
67
+
68
+ .sc-user-input--buttons input[type="file"] {
69
+ display: none;
70
+ }
71
+
72
+ .sc-user-input--picker-wrapper {
73
+ display: flex;
74
+ flex-direction: column;
75
+ }
76
+
77
+ .sc-user-input.active {
78
+ box-shadow: none;
79
+ background-color: white;
80
+ box-shadow: 0px -5px 20px 0px rgba(150, 165, 190, 0.2);
81
+ }
82
+
83
+ .sc-user-input--file-icon,
84
+ .sc-user-input--send-icon {
85
+ height: 20px;
86
+ width: 20px;
87
+ cursor: pointer;
88
+ align-self: center;
89
+ outline: none;
90
+ }
91
+
92
+ .sc-user-input--file-icon path,
93
+ .sc-user-input--send-icon path {
94
+ fill: rgba(86, 88, 103, 0.3);
95
+ }
96
+
97
+ .sc-user-input--file-icon:hover path,
98
+ .sc-user-input--send-icon:hover path {
99
+ fill: rgba(86, 88, 103, 1);
100
+ }
101
+
102
+ .sc-user-input--emoji-icon-wrapper,
103
+ .sc-user-input--send-icon-wrapper,
104
+ .sc-user-input--file-icon-wrapper {
105
+ background: none;
106
+ border: none;
107
+ padding: 2px;
108
+ margin: 0px;
109
+ display: flex;
110
+ flex-direction: column;
111
+ justify-content: center;
112
+ }
113
+
114
+ .sc-user-input--send-icon-wrapper,
115
+ .sc-user-input--file-icon-wrapper {
116
+ flex-direction: row;
117
+ }
118
+
119
+ .sc-user-input--emoji-icon-wrapper:focus {
120
+ outline: none;
121
+ }
122
+
123
+ .sc-user-input--emoji-icon {
124
+ height: 18px;
125
+ cursor: pointer;
126
+ align-self: center;
127
+ }
128
+
129
+ .sc-user-input--emoji-icon path, .sc-user-input--emoji-icon circle {
130
+ fill: rgba(86, 88, 103, 0.3);
131
+ }
132
+
133
+ .sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon path,
134
+ .sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon circle,
135
+ .sc-user-input--emoji-icon.active path,
136
+ .sc-user-input--emoji-icon.active circle,
137
+ .sc-user-input--emoji-icon:hover path,
138
+ .sc-user-input--emoji-icon:hover circle {
139
+ fill: rgba(86, 88, 103, 1);
140
+ }
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@pioneer-platform/pioneer",
3
+ "version": "1.0.5",
4
+ "description": "Embedded blockchain intelligence",
5
+ "main": "lib/index.js",
6
+ "module": "es/index.js",
7
+ "files": [
8
+ "css",
9
+ "es",
10
+ "lib",
11
+ "umd"
12
+ ],
13
+ "scripts": {
14
+ "build": "nwb build-react-component --copy-files",
15
+ "clean": "nwb clean-module && nwb clean-demo",
16
+ "lint": "eslint src demo/src",
17
+ "start": "nwb serve-react-demo",
18
+ "gh:publish": "nwb build-demo && gh-pages -d demo/dist"
19
+ },
20
+ "dependencies": {
21
+ "classnames": "^2.2.6",
22
+ "emoji-js": "^3.5.0",
23
+ "gh-pages": "^3.1.0",
24
+ "prop-types": "^15.7.2",
25
+ "ramda": "^0.27.1",
26
+ "react-highlight.js": "^1.0.7",
27
+ "react-linkify": "^1.0.0-alpha",
28
+ "socket.io-client": "^3.0.3"
29
+ },
30
+ "peerDependencies": {
31
+ "react": "17.x"
32
+ },
33
+ "devDependencies": {
34
+ "babel-eslint": "^10.1.0",
35
+ "eslint": "^7.14.0",
36
+ "eslint-plugin-react": "^7.21.5",
37
+ "nwb": "^0.25.2",
38
+ "react": "^17.0.1",
39
+ "react-dom": "^17.0.1"
40
+ },
41
+ "author": "asliddinusmonov",
42
+ "homepage": "https://github.com/asliddinusmonov/popup-chat-react",
43
+ "license": "MIT",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/asliddinusmonov/popup-chat-react"
47
+ },
48
+ "keywords": [
49
+ "react-popup",
50
+ "react-chat",
51
+ "popup-chat-react"
52
+ ]
53
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-4749.48 -5020 35.036 35.036"><defs><style>.a{fill:none;}.b{fill:#4e8cff;}.c{clip-path:url(#a);}.d{fill:#fff;}.e{fill:#eff4f9;}</style><clipPath id="a"><path class="a" d="M0-399.479H17.555v17.555H0Z" transform="translate(0 399.479)"/></clipPath></defs><g transform="translate(-4886 -5075)"><circle class="b" cx="17.518" cy="17.518" r="17.518" transform="translate(136.52 55)"/><g transform="translate(145.13 64)"><g class="c"><g transform="translate(0 0)"><path class="d" d="M-381.924-190.962a8.778,8.778,0,0,0-8.778-8.778,8.778,8.778,0,0,0-8.778,8.778,8.745,8.745,0,0,0,2.26,5.879v1.442c0,.8.492,1.457,1.1,1.457h5.83a.843.843,0,0,0,.183-.02,8.778,8.778,0,0,0,8.184-8.757" transform="translate(399.479 199.74)"/></g><g transform="translate(0 0)"><path class="e" d="M-68.763-194.079a9.292,9.292,0,0,1,6.38-8.888c-.252-.022-.506-.033-.763-.033a8.774,8.774,0,0,0-8.778,8.778A9.508,9.508,0,0,0-69.7-188.3c.005,0,0,.009,0,.01-.311.352-1.924,2.849.021,2.849h2.25c-1.23-.022,1.263-2.107.269-3.494a8.225,8.225,0,0,1-1.6-5.141" transform="translate(71.924 203)"/></g></g></g></g></svg>
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-4749.48 -5020 35.036 35.036"><defs><style>.a{fill:none;}.b{fill:#4e8cff;}.c{clip-path:url(#a);}.d{fill:#fff;}.e{fill:#eff4f9;}</style><clipPath id="a"><path class="a" d="M0-399.479H17.555v17.555H0Z" transform="translate(0 399.479)"/></clipPath></defs><g transform="translate(-4886 -5075)"><g transform="translate(145.13 64)"><g class="c"><g transform="translate(0 0)"><path class="d" d="M-381.924-190.962a8.778,8.778,0,0,0-8.778-8.778,8.778,8.778,0,0,0-8.778,8.778,8.745,8.745,0,0,0,2.26,5.879v1.442c0,.8.492,1.457,1.1,1.457h5.83a.843.843,0,0,0,.183-.02,8.778,8.778,0,0,0,8.184-8.757" transform="translate(399.479 199.74)"/></g><g transform="translate(0 0)"><path class="e" d="M-68.763-194.079a9.292,9.292,0,0,1,6.38-8.888c-.252-.022-.506-.033-.763-.033a8.774,8.774,0,0,0-8.778,8.778A9.508,9.508,0,0,0-69.7-188.3c.005,0,0,.009,0,.01-.311.352-1.924,2.849.021,2.849h2.25c-1.23-.022,1.263-2.107.269-3.494a8.225,8.225,0,0,1-1.6-5.141" transform="translate(71.924 203)"/></g></g></g></g></svg>
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * @pioneer-platform/pioneer v1.0.5 - https://github.com/asliddinusmonov/popup-chat-react
3
+ * MIT Licensed
4
+ */.sc-emoji-picker{overflow:auto;width:100%;max-height:calc(100% - 40px);box-sizing:border-box;padding:15px}.sc-emoji-picker--category{display:flex;flex-direction:row;flex-wrap:wrap}.sc-emoji-picker--category-title{min-width:100%;color:#b8c3ca;font-weight:200;font-size:13px;margin:5px;letter-spacing:1px}.sc-emoji-picker--emoji{margin:5px;width:30px;line-height:30px;text-align:center;cursor:pointer;vertical-align:middle;font-size:28px;transition:transform 60ms ease-out,-webkit-transform 60ms ease-out;transition-delay:60ms}.sc-emoji-picker--emoji:hover{-webkit-transform:scale(1.4);transform:scale(1.4)}.sc-chat-window{width:370px;height:calc(100% - 120px);max-height:590px;position:fixed;right:25px;bottom:10px;box-sizing:border-box;box-shadow:0 7px 40px 2px rgba(148,149,150,.3);background:#fff;display:flex;flex-direction:column;justify-content:space-between;transition:.3s ease-in-out;border-radius:10px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.sc-chat-window.closed{opacity:0;visibility:hidden;bottom:30px}.sc-message-list{height:80%;overflow-y:auto;background-color:#fff;background-size:100%;padding:40px 0}.sc-message--me{text-align:right}.sc-message--them{text-align:left}@media (max-width:450px){.sc-chat-window{width:100%;height:100%;max-height:100%;right:0;bottom:0;border-radius:0;transition:.1s ease-in-out}.sc-chat-window.closed{bottom:0}}.sc-launcher{background-color:#f39314;background-position:50%;background-repeat:no-repeat;position:fixed;right:25px;bottom:25px;box-shadow:none}.sc-launcher,.sc-launcher:before{width:60px;height:60px;border-radius:50%;transition:box-shadow .2s ease-in-out}.sc-launcher:before{content:"";position:relative;display:block}.sc-launcher.opened{visibility:hidden}.sc-launcher .sc-closed-icon,.sc-launcher .sc-open-icon{position:fixed;right:25px;bottom:25px}.sc-launcher .sc-closed-icon,.sc-launcher .sc-open-icon{width:60px;height:60px;transition:opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out,-webkit-transform .1s ease-in-out}.sc-launcher .sc-open-icon{padding:20px;box-sizing:border-box;opacity:0}.sc-launcher.opened .sc-open-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:1}.sc-launcher.opened .sc-closed-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}.sc-launcher.opened:before{box-shadow:0 0 400px 250px rgba(148,149,150,.2)}.sc-launcher:hover{box-shadow:0 0 27px 1.5px rgba(0,0,0,.2)}.sc-new-messages-count{position:absolute;top:-3px;left:41px;display:flex;justify-content:center;flex-direction:column;border-radius:50%;width:22px;height:22px;background:#ff4646;color:#fff;text-align:center;margin:auto;font-size:12px;font-weight:500;box-shadow:-1px 1px 2px rgba(0,0,0,.3)}.sc-header{background:#f39314;min-height:75px;border-top-left-radius:9px;border-top-right-radius:9px;color:#fff;padding:10px;box-shadow:0 1px 4px rgba(0,0,0,.2);position:relative;box-sizing:border-box;display:flex}.sc-header--img{border-radius:50%;align-self:center;padding:10px}.sc-header--team-name{align-self:center;padding:10px;flex:1;-webkit-user-select:none;user-select:none;border-radius:5px}.sc-header--close-button{width:40px;align-self:center;height:40px;margin-right:10px;box-sizing:border-box;cursor:pointer;border-radius:5px}.sc-header--close-button:hover{background:#ed8701}.sc-header--close-button img{width:100%;height:100%;padding:13px;box-sizing:border-box}@media (max-width:450px){.sc-header{border-radius:0}}.sc-message{width:300px;margin:auto;padding-bottom:10px;display:flex}.sc-message--content{width:100%;display:flex}.sc-message--content.sent{justify-content:flex-end}.sc-message--content.sent .sc-message--avatar{display:none}.sc-message--avatar{background-image:url(https://d13yacurqjgara.cloudfront.net/assets/avatar-default-aa2eab7684294781f93bc99ad394a0eb3249c5768c21390163c9f55ea8ef83a4.gif);background-repeat:no-repeat;background-size:100%;background-position:50%;min-width:30px;min-height:30px;border-radius:50%;align-self:center;margin-right:15px}.sc-message--text{padding:17px 20px;border-radius:6px;font-weight:300;font-size:14px;line-height:1.4;white-space:pre-wrap;-webkit-font-smoothing:subpixel-antialiased;word-wrap:break-word;width:calc(100% - 90px)}.sc-message--content.sent .sc-message--text{color:#fff;background-color:#f39314;max-width:calc(100% - 120px);word-wrap:break-word}.sc-message--content.received .sc-message--text{color:#263238;background-color:#f4f7f9;margin-right:40px}.sc-message--emoji{font-size:40px}.sc-message--file{background:#fff;border:1px solid #cccdd1;padding:15px 20px;border-radius:5px;display:flex;font-weight:300;font-size:14px;line-height:1.4;cursor:pointer;text-decoration:none}.sc-message--file p{margin:0 0 0 10px;color:rgba(86,88,103,.6)}.sc-message--file .sc-user-input--file-icon:hover path{fill:rgba(86,88,103,.3)}@media (max-width:450px){.sc-message{width:80%}}.sc-user-input{min-height:55px;margin:0;position:relative;bottom:0;display:flex;background-color:#f4f7f9;border-bottom-left-radius:10px;border-bottom-right-radius:10px;transition:background-color .2s ease,box-shadow .2s ease}.sc-user-input--text{width:300px;resize:none;border:none;outline:none;border-bottom-left-radius:10px;box-sizing:border-box;padding:18px;font-size:15px;font-weight:400;line-height:1.33;white-space:pre-wrap;word-wrap:break-word;color:#565867;-webkit-font-smoothing:antialiased;max-height:200px;overflow:scroll;bottom:0;overflow-x:hidden;overflow-y:auto}.sc-user-input--text:empty:before{content:attr(placeholder);display:block;color:rgba(86,88,103,.3);outline:none}.sc-user-input--buttons{width:100px;position:absolute;right:10px;height:100%;display:flex;justify-content:flex-end}.sc-user-input--button:first-of-type{width:40px}.sc-user-input--button{width:30px;height:55px;display:flex;flex-direction:column;justify-content:center}.sc-user-input--button button{cursor:pointer}.sc-user-input--buttons input[type=file]{display:none}.sc-user-input--picker-wrapper{display:flex;flex-direction:column}.sc-user-input.active{box-shadow:none;background-color:#fff;box-shadow:0 -5px 20px 0 rgba(150,165,190,.2)}.sc-user-input--file-icon,.sc-user-input--send-icon{height:20px;width:20px;cursor:pointer;align-self:center;outline:none}.sc-user-input--file-icon path,.sc-user-input--send-icon path{fill:rgba(86,88,103,.3)}.sc-user-input--file-icon:hover path,.sc-user-input--send-icon:hover path{fill:#565867}.sc-user-input--emoji-icon-wrapper,.sc-user-input--file-icon-wrapper,.sc-user-input--send-icon-wrapper{background:none;border:none;padding:2px;margin:0;display:flex;flex-direction:column;justify-content:center}.sc-user-input--file-icon-wrapper,.sc-user-input--send-icon-wrapper{flex-direction:row}.sc-user-input--emoji-icon-wrapper:focus{outline:none}.sc-user-input--emoji-icon{height:18px;cursor:pointer;align-self:center}.sc-user-input--emoji-icon circle,.sc-user-input--emoji-icon path{fill:rgba(86,88,103,.3)}.sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon circle,.sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon path,.sc-user-input--emoji-icon.active circle,.sc-user-input--emoji-icon.active path,.sc-user-input--emoji-icon:hover circle,.sc-user-input--emoji-icon:hover path{fill:#565867}.sc-popup-window{position:relative;width:150px}.sc-popup-window--cointainer{position:absolute;bottom:20px;right:100px;width:330px;max-height:260px;height:260px;box-shadow:0 7px 40px 2px rgba(148,149,150,.3);background:#fff;border-radius:10px;outline:none;transition:.2s ease-in-out;z-index:1;padding:0 5px 5px;box-sizing:border-box}.sc-popup-window--cointainer.closed{opacity:0;visibility:hidden;bottom:14px}.sc-popup-window--cointainer:after{content:"";width:14px;height:14px;background:#fff;position:absolute;z-index:-1;bottom:-6px;right:28px;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:2px}.sc-popup-window--search{width:290px;box-sizing:border-box;margin:auto;display:block;border-width:0 0 1px;color:#565867;padding-left:25px;height:40px;font-size:14px;background-image:url(https://js.intercomcdn.com/images/search@2x.32fca88e.png);background-size:16px 16px;background-repeat:no-repeat;background-position:0 12px;outline:none}.sc-popup-window--search::-webkit-input-placeholder{color:#c1c7cd}.sc-popup-window--search::placeholder{color:#c1c7cd}.sc-pin--message{display:flex;padding:5px;background-color:#f4f7f9;cursor:pointer}.sc-pin--message--img{border-radius:15px;align-self:center;width:45px;height:45px;padding:5px}.sc-pin--message--desc{padding:10px;font-size:12px}.sc-pin--message--title{font-size:16px;margin-bottom:2px}
5
+ /*# sourceMappingURL=main.8da8d3c4.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["main.8da8d3c4.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/emojiPicker.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/chat-window.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/launcher.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/header.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/message.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/user-input.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/popup-window.css","css ./node_modules/css-loader/dist/cjs.js??ref--11-1!./node_modules/postcss-loader/src??postcss!./src/styles/pin-message.css"],"names":[],"mappings":"AAAA;;;EAGE,CCHF,iBACA,aAAA,CACA,UAAA,CACA,4BAAA,CACA,qBAAA,CACA,YACA,CAEA,2BACA,YAAA,CACA,kBAAA,CACA,cACA,CAEA,iCACA,cAAA,CACA,aAAA,CACA,eAAA,CACA,cAAA,CACA,UAAA,CACA,kBACA,CAEA,wBACA,UAAA,CACA,UAAA,CACA,gBAAA,CACA,iBAAA,CACA,cAAA,CACA,qBAAA,CACA,cAAA,CACA,kEAAA,CACA,qBACA,CAEA,8BACA,4BAAA,CACA,oBACA,CCtCA,gBACA,WAAA,CACA,yBAAA,CACA,gBAAA,CACA,cAAA,CACA,UAAA,CACA,WAAA,CACA,qBAAA,CACA,8CAAA,CACA,eAAA,CACA,YAAA,CACA,qBAAA,CACA,6BAAA,CACA,0BAAA,CACA,kBAAA,CACA,qDACA,CAEA,uBACA,SAAA,CACA,iBAAA,CACA,WACA,CAEA,iBACA,UAAA,CACA,eAAA,CACA,qBAAA,CACA,oBAAA,CACA,cACA,CAEA,gBACA,gBACA,CACA,kBACA,eACA,CAEA,yBACA,gBACA,UAAA,CACA,WAAA,CACA,eAAA,CACA,OAAA,CACA,QAAA,CACA,eAAA,CAGA,0BAFA,CAIA,uBACA,QACA,CACA,CCtDA,aAGA,wBAAA,CACA,uBAAA,CACA,2BAAA,CACA,cAAA,CACA,UAAA,CACA,WAAA,CAEA,eAEA,CAEA,iCAbA,UAAA,CACA,WAAA,CAOA,iBAAA,CAEA,qCAWA,CARA,oBACA,UAAA,CACA,iBAAA,CACA,aAKA,CAEA,oBACA,iBACA,CAEA,wDAIA,cAAA,CACA,UAAA,CACA,WAIA,CAEA,wDAVA,UAAA,CACA,WAAA,CAIA,oEAAA,CACA,4DAAA,CACA,8FAUA,CAEA,2BACA,YAAA,CACA,qBAAA,CACA,SACA,CAEA,kCACA,gCAAA,CACA,wBAAA,CACA,SACA,CAEA,oCACA,gCAAA,CACA,wBAAA,CACA,SACA,CAEA,2BACA,+CACA,CAEA,mBACA,wCACA,CAEA,uBACA,iBAAA,CACA,QAAA,CACA,SAAA,CACA,YAAA,CACA,sBAAA,CACA,qBAAA,CACA,iBAAA,CACA,UAAA,CACA,WAAA,CACA,kBAAA,CACA,UAAA,CACA,iBAAA,CACA,WAAA,CACA,cAAA,CACA,eAAA,CACA,sCACA,CC5FA,WACA,kBAAA,CACA,eAAA,CACA,0BAAA,CACA,2BAAA,CACA,UAAA,CACA,YAAA,CACA,mCAAA,CACA,iBAAA,CACA,qBAAA,CACA,YACA,CAEA,gBACA,iBAAA,CACA,iBAAA,CACA,YACA,CAEA,sBACA,iBAAA,CACA,YAAA,CACA,MAAA,CACA,wBAAA,CACA,gBAAA,CACA,iBACA,CAEA,yBACA,UAAA,CACA,iBAAA,CACA,WAAA,CACA,iBAAA,CACA,qBAAA,CACA,cAAA,CACA,iBACA,CAEA,+BACA,kBACA,CAEA,6BACA,UAAA,CACA,WAAA,CACA,YAAA,CACA,qBACA,CAEA,yBACA,WACA,eACA,CACA,CCrDA,YACA,WAAA,CACA,WAAA,CACA,mBAAA,CACA,YACA,CAEA,qBACA,UAAA,CACA,YACA,CAEA,0BACA,wBACA,CAEA,8CACA,YACA,CAEA,oBACA,sJAAA,CACA,2BAAA,CACA,oBAAA,CACA,uBAAA,CACA,cAAA,CACA,eAAA,CACA,iBAAA,CACA,iBAAA,CACA,iBACA,CAEA,kBACA,iBAAA,CACA,iBAAA,CACA,eAAA,CACA,cAAA,CACA,eAAA,CACA,oBAAA,CACA,2CAAA,CACA,oBAAA,CACA,uBACA,CAEA,4CACA,UAAA,CACA,wBAAA,CACA,4BAAA,CACA,oBACA,CAEA,gDACA,aAAA,CACA,wBAAA,CACA,iBACA,CAEA,mBACA,cACA,CAEA,kBACA,eAAA,CACA,wBAAA,CACA,iBAAA,CACA,iBAAA,CACA,YAAA,CACA,eAAA,CACA,cAAA,CACA,eAAA,CACA,cAAA,CACA,oBACA,CAEA,oBACA,iBAAA,CACA,wBACA,CAEA,uDACA,uBACA,CAEA,yBACA,YACA,SACA,CACA,CCvFA,eACA,eAAA,CACA,QAAA,CACA,iBAAA,CACA,QAAA,CACA,YAAA,CACA,wBAAA,CACA,8BAAA,CACA,+BAAA,CACA,wDACA,CAGA,qBACA,WAAA,CACA,WAAA,CACA,WAAA,CACA,YAAA,CACA,8BAAA,CACA,qBAAA,CACA,YAAA,CACA,cAAA,CACA,eAAA,CACA,gBAAA,CACA,oBAAA,CACA,oBAAA,CACA,aAAA,CACA,kCAAA,CACA,gBAAA,CACA,eAAA,CACA,QAAA,CACA,iBAAA,CACA,eACA,CAEA,kCACA,yBAAA,CACA,aAAA,CACA,wBAAA,CACA,YACA,CAEA,wBACA,WAAA,CACA,iBAAA,CACA,UAAA,CACA,WAAA,CACA,YAAA,CACA,wBACA,CAEA,qCACA,UACA,CAEA,uBACA,UAAA,CACA,WAAA,CACA,YAAA,CACA,qBAAA,CACA,sBACA,CAEA,8BACA,cACA,CAEA,yCACA,YACA,CAEA,+BACA,YAAA,CACA,qBACA,CAEA,sBACA,eAAA,CACA,qBAAA,CACA,6CACA,CAEA,oDAEA,WAAA,CACA,UAAA,CACA,cAAA,CACA,iBAAA,CACA,YACA,CAEA,8DAEA,uBACA,CAEA,0EAEA,YACA,CAEA,uGAGA,eAAA,CACA,WAAA,CACA,WAAA,CACA,QAAA,CACA,YAAA,CACA,qBAAA,CACA,sBACA,CAEA,oEAEA,kBACA,CAEA,yCACA,YACA,CAEA,2BACA,WAAA,CACA,cAAA,CACA,iBACA,CAEA,kEACA,uBACA,CAEA,kTAMA,YACA,CC3IA,iBACA,iBAAA,CACA,WACA,CAEA,6BACA,iBAAA,CACA,WAAA,CACA,WAAA,CACA,WAAA,CACA,gBAAA,CACA,YAAA,CACA,8CAAA,CACA,eAAA,CACA,kBAAA,CACA,YAAA,CACA,0BAAA,CACA,SAAA,CACA,iBAAA,CACA,qBACA,CAEA,oCACA,SAAA,CACA,iBAAA,CACA,WACA,CAEA,mCACA,UAAA,CACA,UAAA,CACA,WAAA,CACA,eAAA,CACA,iBAAA,CACA,UAAA,CACA,WAAA,CACA,UAAA,CACA,+BAAA,CACA,uBAAA,CACA,iBACA,CAEA,yBACA,WAAA,CACA,qBAAA,CACA,WAAA,CACA,aAAA,CACA,oBAAA,CACA,aAAA,CACA,iBAAA,CACA,WAAA,CACA,cAAA,CACA,8EAAA,CACA,yBAAA,CACA,2BAAA,CACA,0BAAA,CACA,YACA,CAEA,oDACA,aACA,CAEA,sCACA,aACA,CCjEA,iBACA,YAAA,CACA,WAAA,CACA,wBAAA,CACA,cACA,CAEA,sBACA,kBAAA,CACA,iBAAA,CACA,UAAA,CACA,WAAA,CACA,WACA,CAEA,uBACA,YAAA,CACA,cACA,CAEA,wBACA,cAAA,CACA,iBACA","file":"main.8da8d3c4.css","sourcesContent":["/*!\n * @pioneer-platform/pioneer v1.0.5 - https://github.com/asliddinusmonov/popup-chat-react\n * MIT Licensed\n */\n.sc-emoji-picker {\n overflow: auto;\n width: 100%;\n max-height: calc(100% - 40px);\n box-sizing: border-box;\n padding: 15px;\n}\n\n.sc-emoji-picker--category {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n}\n\n.sc-emoji-picker--category-title {\n min-width: 100%;\n color: #b8c3ca;\n font-weight: 200;\n font-size: 13px;\n margin: 5px;\n letter-spacing: 1px;\n}\n\n.sc-emoji-picker--emoji {\n margin: 5px;\n width: 30px;\n line-height: 30px;\n text-align: center;\n cursor: pointer;\n vertical-align: middle;\n font-size: 28px;\n transition: transform 60ms ease-out,-webkit-transform 60ms ease-out;\n transition-delay: 60ms;\n}\n\n.sc-emoji-picker--emoji:hover {\n -webkit-transform: scale(1.4);\n transform: scale(1.4);\n}\n.sc-chat-window {\n width: 370px;\n height: calc(100% - 120px);\n max-height: 590px;\n position: fixed;\n right: 25px;\n bottom: 10px;\n box-sizing: border-box;\n box-shadow: 0px 7px 40px 2px rgba(148, 149, 150, 0.3);\n background: white;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n transition: 0.3s ease-in-out;\n border-radius: 10px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n}\n\n.sc-chat-window.closed {\n opacity: 0;\n visibility: hidden;\n bottom: 30px;\n}\n\n.sc-message-list {\n height: 80%;\n overflow-y: auto;\n background-color: white;\n background-size: 100%;\n padding: 40px 0px;\n}\n\n.sc-message--me {\n text-align: right;\n}\n.sc-message--them {\n text-align: left;\n}\n\n@media (max-width: 450px) {\n .sc-chat-window {\n width: 100%;\n height: 100%;\n max-height: 100%;\n right: 0px;\n bottom: 0px;\n border-radius: 0px;\n }\n .sc-chat-window {\n transition: 0.1s ease-in-out;\n }\n .sc-chat-window.closed {\n bottom: 0px;\n }\n}\n\n.sc-launcher {\n width: 60px;\n height: 60px;\n background-color: #f39314;\n background-position: center;\n background-repeat: no-repeat;\n position: fixed;\n right: 25px;\n bottom: 25px;\n border-radius: 50%;\n box-shadow: none;\n transition: box-shadow 0.2s ease-in-out;\n}\n\n.sc-launcher:before {\n content: '';\n position: relative;\n display: block;\n width: 60px;\n height: 60px; \n border-radius: 50%;\n transition: box-shadow 0.2s ease-in-out;\n}\n\n.sc-launcher.opened {\n visibility: hidden;\n}\n\n.sc-launcher .sc-open-icon,\n.sc-launcher .sc-closed-icon {\n width: 60px;\n height: 60px;\n position: fixed;\n right: 25px;\n bottom: 25px;\n transition: opacity 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n}\n\n.sc-launcher .sc-closed-icon {\n transition: opacity 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n width: 60px;\n height: 60px;\n\n}\n\n.sc-launcher .sc-open-icon {\n padding: 20px;\n box-sizing: border-box;\n opacity: 0;\n}\n\n.sc-launcher.opened .sc-open-icon {\n -webkit-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 1;\n}\n\n.sc-launcher.opened .sc-closed-icon {\n -webkit-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0;\n}\n\n.sc-launcher.opened:before {\n box-shadow: 0px 0px 400px 250px rgba(148, 149, 150, 0.2);\n}\n\n.sc-launcher:hover {\n box-shadow: 0 0px 27px 1.5px rgba(0,0,0,0.2);\n}\n\n.sc-new-messages-count {\n position: absolute;\n top: -3px;\n left: 41px;\n display: flex;\n justify-content: center;\n flex-direction: column;\n border-radius: 50%;\n\twidth: 22px;\n height: 22px;\n background: #ff4646;\n color: white;\n text-align: center;\n margin: auto;\n font-size: 12px;\n font-weight: 500;\n box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);\n}\n\n.sc-header {\n background: #f39314;\n min-height: 75px;\n border-top-left-radius: 9px;\n border-top-right-radius: 9px;\n color: white;\n padding: 10px;\n box-shadow: 0 1px 4px rgba(0,0,0,.2);\n position: relative;\n box-sizing: border-box;\n display: flex;\n}\n\n.sc-header--img {\n border-radius: 50%;\n align-self: center;\n padding: 10px;\n}\n\n.sc-header--team-name {\n align-self: center;\n padding: 10px;\n flex: 1;\n -webkit-user-select: none;\n user-select: none;\n border-radius: 5px;\n}\n\n.sc-header--close-button {\n width: 40px;\n align-self: center;\n height: 40px;\n margin-right: 10px;\n box-sizing: border-box;\n cursor: pointer;\n border-radius: 5px;\n}\n\n.sc-header--close-button:hover {\n background: #ed8701;\n}\n\n.sc-header--close-button img {\n width: 100%;\n height: 100%;\n padding: 13px;\n box-sizing: border-box;\n}\n\n@media (max-width: 450px) {\n .sc-header {\n border-radius: 0px;\n }\n}\n\n.sc-message {\n width: 300px;\n margin: auto;\n padding-bottom: 10px;\n display: flex;\n}\n\n.sc-message--content {\n width: 100%;\n display: flex;\n}\n\n.sc-message--content.sent {\n justify-content: flex-end;\n}\n\n.sc-message--content.sent .sc-message--avatar {\n display: none;\n}\n\n.sc-message--avatar {\n background-image: url(https://d13yacurqjgara.cloudfront.net/assets/avatar-default-aa2eab7684294781f93bc99ad394a0eb3249c5768c21390163c9f55ea8ef83a4.gif);\n background-repeat: no-repeat;\n background-size: 100%;\n background-position: center;\n min-width: 30px;\n min-height: 30px;\n border-radius: 50%;\n align-self: center;\n margin-right: 15px;\n}\n\n.sc-message--text {\n padding: 17px 20px;\n border-radius: 6px;\n font-weight: 300;\n font-size: 14px;\n line-height: 1.4;\n white-space: pre-wrap;\n -webkit-font-smoothing: subpixel-antialiased;\n word-wrap: break-word;\n width: calc(100% - 90px);\n}\n\n.sc-message--content.sent .sc-message--text {\n color: white;\n background-color: #f39314;\n max-width: calc(100% - 120px);\n word-wrap: break-word;\n}\n\n.sc-message--content.received .sc-message--text {\n color: #263238;\n background-color: #f4f7f9;\n margin-right: 40px;\n}\n\n.sc-message--emoji {\n font-size: 40px;\n}\n\n.sc-message--file {\n background: white;\n border: solid 1px #CCCDD1;\n padding: 15px 20px;\n border-radius: 5px;\n display: flex;\n font-weight: 300;\n font-size: 14px;\n line-height: 1.4;\n cursor: pointer;\n text-decoration: none;\n}\n\n.sc-message--file p {\n margin: 0px 0px 0px 10px;\n color: rgba(86, 88, 103, 0.6);\n}\n\n.sc-message--file .sc-user-input--file-icon:hover path {\n fill: rgba(86, 88, 103, 0.3);\n}\n\n@media (max-width: 450px) {\n .sc-message {\n width: 80%;\n }\n}\n\n.sc-user-input {\n min-height: 55px;\n margin: 0px;\n position: relative;\n bottom: 0;\n display: flex;\n background-color: #f4f7f9;\n border-bottom-left-radius: 10px;\n border-bottom-right-radius: 10px;\n transition: background-color .2s ease,box-shadow .2s ease;\n}\n\n\n.sc-user-input--text {\n width: 300px;\n resize: none;\n border: none;\n outline: none;\n border-bottom-left-radius: 10px;\n box-sizing: border-box;\n padding: 18px;\n font-size: 15px;\n font-weight: 400;\n line-height: 1.33;\n white-space: pre-wrap;\n word-wrap: break-word;\n color: #565867;\n -webkit-font-smoothing: antialiased;\n max-height: 200px;\n overflow: scroll;\n bottom: 0;\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.sc-user-input--text:empty:before {\n content: attr(placeholder);\n display: block; /* For Firefox */\n color: rgba(86, 88, 103, 0.3);\n outline: none;\n}\n\n.sc-user-input--buttons {\n width: 100px;\n position: absolute;\n right: 10px;\n height: 100%;\n display: flex;\n justify-content: flex-end;\n}\n\n.sc-user-input--button:first-of-type {\n width: 40px;\n}\n\n.sc-user-input--button {\n width: 30px;\n height: 55px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.sc-user-input--button button {\n cursor: pointer;\n}\n\n.sc-user-input--buttons input[type=\"file\"] {\n display: none;\n}\n\n.sc-user-input--picker-wrapper {\n display: flex;\n flex-direction: column;\n}\n\n.sc-user-input.active {\n box-shadow: none;\n background-color: white;\n box-shadow: 0px -5px 20px 0px rgba(150, 165, 190, 0.2);\n}\n\n.sc-user-input--file-icon,\n.sc-user-input--send-icon {\n height: 20px;\n width: 20px;\n cursor: pointer;\n align-self: center;\n outline: none;\n}\n\n.sc-user-input--file-icon path,\n.sc-user-input--send-icon path {\n fill: rgba(86, 88, 103, 0.3);\n}\n\n.sc-user-input--file-icon:hover path,\n.sc-user-input--send-icon:hover path {\n fill: rgba(86, 88, 103, 1);\n}\n\n.sc-user-input--emoji-icon-wrapper,\n.sc-user-input--send-icon-wrapper,\n.sc-user-input--file-icon-wrapper {\n background: none;\n border: none;\n padding: 2px;\n margin: 0px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.sc-user-input--send-icon-wrapper,\n.sc-user-input--file-icon-wrapper {\n flex-direction: row;\n}\n\n.sc-user-input--emoji-icon-wrapper:focus {\n outline: none;\n}\n\n.sc-user-input--emoji-icon {\n height: 18px;\n cursor: pointer;\n align-self: center;\n}\n\n.sc-user-input--emoji-icon path, .sc-user-input--emoji-icon circle {\n fill: rgba(86, 88, 103, 0.3);\n}\n\n.sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon path,\n.sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon circle,\n.sc-user-input--emoji-icon.active path,\n.sc-user-input--emoji-icon.active circle,\n.sc-user-input--emoji-icon:hover path,\n.sc-user-input--emoji-icon:hover circle {\n fill: rgba(86, 88, 103, 1);\n}\n\n.sc-popup-window {\n position: relative;\n width: 150px;\n}\n\n.sc-popup-window--cointainer {\n position: absolute;\n bottom: 20px;\n right: 100px;\n width: 330px;\n max-height: 260px;\n height: 260px;\n box-shadow: 0px 7px 40px 2px rgba(148, 149, 150, 0.3);\n background: white;\n border-radius: 10px;\n outline: none;\n transition: 0.2s ease-in-out;\n z-index: 1;\n padding: 0px 5px 5px 5px;\n box-sizing: border-box;\n}\n\n.sc-popup-window--cointainer.closed {\n opacity: 0;\n visibility: hidden;\n bottom: 14px;\n}\n\n.sc-popup-window--cointainer:after {\n content: \"\";\n width: 14px;\n height: 14px;\n background: white;\n position: absolute;\n z-index: -1;\n bottom: -6px;\n right: 28px;\n -webkit-transform: rotate(45deg);\n transform: rotate(45deg);\n border-radius: 2px;\n}\n\n.sc-popup-window--search {\n width: 290px;\n box-sizing: border-box;\n margin: auto;\n display: block;\n border-width: 0px 0px 1px 0px;\n color: #565867;\n padding-left: 25px;\n height: 40px;\n font-size: 14px;\n background-image: url(https://js.intercomcdn.com/images/search@2x.32fca88e.png);\n background-size: 16px 16px;\n background-repeat: no-repeat;\n background-position: 0 12px;\n outline: none;\n}\n\n.sc-popup-window--search::-webkit-input-placeholder {\n color: #C1C7CD;\n}\n\n.sc-popup-window--search::placeholder {\n color: #C1C7CD;\n}\n.sc-pin--message {\n display: flex;\n padding: 5px;\n background-color: #f4f7f9;\n cursor: pointer;\n}\n\n.sc-pin--message--img {\n border-radius: 15px;\n align-self: center;\n width: 45px;\n height: 45px;\n padding: 5px;\n}\n\n.sc-pin--message--desc {\n padding: 10px;\n font-size: 12px;\n}\n\n.sc-pin--message--title {\n font-size: 16px;\n margin-bottom: 2px;\n}\n\n",".sc-emoji-picker {\n overflow: auto;\n width: 100%;\n max-height: calc(100% - 40px);\n box-sizing: border-box;\n padding: 15px;\n}\n\n.sc-emoji-picker--category {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n}\n\n.sc-emoji-picker--category-title {\n min-width: 100%;\n color: #b8c3ca;\n font-weight: 200;\n font-size: 13px;\n margin: 5px;\n letter-spacing: 1px;\n}\n\n.sc-emoji-picker--emoji {\n margin: 5px;\n width: 30px;\n line-height: 30px;\n text-align: center;\n cursor: pointer;\n vertical-align: middle;\n font-size: 28px;\n transition: transform 60ms ease-out,-webkit-transform 60ms ease-out;\n transition-delay: 60ms;\n}\n\n.sc-emoji-picker--emoji:hover {\n -webkit-transform: scale(1.4);\n transform: scale(1.4);\n}",".sc-chat-window {\n width: 370px;\n height: calc(100% - 120px);\n max-height: 590px;\n position: fixed;\n right: 25px;\n bottom: 10px;\n box-sizing: border-box;\n box-shadow: 0px 7px 40px 2px rgba(148, 149, 150, 0.3);\n background: white;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n transition: 0.3s ease-in-out;\n border-radius: 10px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n}\n\n.sc-chat-window.closed {\n opacity: 0;\n visibility: hidden;\n bottom: 30px;\n}\n\n.sc-message-list {\n height: 80%;\n overflow-y: auto;\n background-color: white;\n background-size: 100%;\n padding: 40px 0px;\n}\n\n.sc-message--me {\n text-align: right;\n}\n.sc-message--them {\n text-align: left;\n}\n\n@media (max-width: 450px) {\n .sc-chat-window {\n width: 100%;\n height: 100%;\n max-height: 100%;\n right: 0px;\n bottom: 0px;\n border-radius: 0px;\n }\n .sc-chat-window {\n transition: 0.1s ease-in-out;\n }\n .sc-chat-window.closed {\n bottom: 0px;\n }\n}\n",".sc-launcher {\n width: 60px;\n height: 60px;\n background-color: #f39314;\n background-position: center;\n background-repeat: no-repeat;\n position: fixed;\n right: 25px;\n bottom: 25px;\n border-radius: 50%;\n box-shadow: none;\n transition: box-shadow 0.2s ease-in-out;\n}\n\n.sc-launcher:before {\n content: '';\n position: relative;\n display: block;\n width: 60px;\n height: 60px; \n border-radius: 50%;\n transition: box-shadow 0.2s ease-in-out;\n}\n\n.sc-launcher.opened {\n visibility: hidden;\n}\n\n.sc-launcher .sc-open-icon,\n.sc-launcher .sc-closed-icon {\n width: 60px;\n height: 60px;\n position: fixed;\n right: 25px;\n bottom: 25px;\n transition: opacity 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n}\n\n.sc-launcher .sc-closed-icon {\n transition: opacity 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;\n transition: opacity 100ms ease-in-out, transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;\n width: 60px;\n height: 60px;\n\n}\n\n.sc-launcher .sc-open-icon {\n padding: 20px;\n box-sizing: border-box;\n opacity: 0;\n}\n\n.sc-launcher.opened .sc-open-icon {\n -webkit-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 1;\n}\n\n.sc-launcher.opened .sc-closed-icon {\n -webkit-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0;\n}\n\n.sc-launcher.opened:before {\n box-shadow: 0px 0px 400px 250px rgba(148, 149, 150, 0.2);\n}\n\n.sc-launcher:hover {\n box-shadow: 0 0px 27px 1.5px rgba(0,0,0,0.2);\n}\n\n.sc-new-messages-count {\n position: absolute;\n top: -3px;\n left: 41px;\n display: flex;\n justify-content: center;\n flex-direction: column;\n border-radius: 50%;\n\twidth: 22px;\n height: 22px;\n background: #ff4646;\n color: white;\n text-align: center;\n margin: auto;\n font-size: 12px;\n font-weight: 500;\n box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);\n}\n",".sc-header {\n background: #f39314;\n min-height: 75px;\n border-top-left-radius: 9px;\n border-top-right-radius: 9px;\n color: white;\n padding: 10px;\n box-shadow: 0 1px 4px rgba(0,0,0,.2);\n position: relative;\n box-sizing: border-box;\n display: flex;\n}\n\n.sc-header--img {\n border-radius: 50%;\n align-self: center;\n padding: 10px;\n}\n\n.sc-header--team-name {\n align-self: center;\n padding: 10px;\n flex: 1;\n -webkit-user-select: none;\n user-select: none;\n border-radius: 5px;\n}\n\n.sc-header--close-button {\n width: 40px;\n align-self: center;\n height: 40px;\n margin-right: 10px;\n box-sizing: border-box;\n cursor: pointer;\n border-radius: 5px;\n}\n\n.sc-header--close-button:hover {\n background: #ed8701;\n}\n\n.sc-header--close-button img {\n width: 100%;\n height: 100%;\n padding: 13px;\n box-sizing: border-box;\n}\n\n@media (max-width: 450px) {\n .sc-header {\n border-radius: 0px;\n }\n}\n",".sc-message {\n width: 300px;\n margin: auto;\n padding-bottom: 10px;\n display: flex;\n}\n\n.sc-message--content {\n width: 100%;\n display: flex;\n}\n\n.sc-message--content.sent {\n justify-content: flex-end;\n}\n\n.sc-message--content.sent .sc-message--avatar {\n display: none;\n}\n\n.sc-message--avatar {\n background-image: url(https://d13yacurqjgara.cloudfront.net/assets/avatar-default-aa2eab7684294781f93bc99ad394a0eb3249c5768c21390163c9f55ea8ef83a4.gif);\n background-repeat: no-repeat;\n background-size: 100%;\n background-position: center;\n min-width: 30px;\n min-height: 30px;\n border-radius: 50%;\n align-self: center;\n margin-right: 15px;\n}\n\n.sc-message--text {\n padding: 17px 20px;\n border-radius: 6px;\n font-weight: 300;\n font-size: 14px;\n line-height: 1.4;\n white-space: pre-wrap;\n -webkit-font-smoothing: subpixel-antialiased;\n word-wrap: break-word;\n width: calc(100% - 90px);\n}\n\n.sc-message--content.sent .sc-message--text {\n color: white;\n background-color: #f39314;\n max-width: calc(100% - 120px);\n word-wrap: break-word;\n}\n\n.sc-message--content.received .sc-message--text {\n color: #263238;\n background-color: #f4f7f9;\n margin-right: 40px;\n}\n\n.sc-message--emoji {\n font-size: 40px;\n}\n\n.sc-message--file {\n background: white;\n border: solid 1px #CCCDD1;\n padding: 15px 20px;\n border-radius: 5px;\n display: flex;\n font-weight: 300;\n font-size: 14px;\n line-height: 1.4;\n cursor: pointer;\n text-decoration: none;\n}\n\n.sc-message--file p {\n margin: 0px 0px 0px 10px;\n color: rgba(86, 88, 103, 0.6);\n}\n\n.sc-message--file .sc-user-input--file-icon:hover path {\n fill: rgba(86, 88, 103, 0.3);\n}\n\n@media (max-width: 450px) {\n .sc-message {\n width: 80%;\n }\n}\n",".sc-user-input {\n min-height: 55px;\n margin: 0px;\n position: relative;\n bottom: 0;\n display: flex;\n background-color: #f4f7f9;\n border-bottom-left-radius: 10px;\n border-bottom-right-radius: 10px;\n transition: background-color .2s ease,box-shadow .2s ease;\n}\n\n\n.sc-user-input--text {\n width: 300px;\n resize: none;\n border: none;\n outline: none;\n border-bottom-left-radius: 10px;\n box-sizing: border-box;\n padding: 18px;\n font-size: 15px;\n font-weight: 400;\n line-height: 1.33;\n white-space: pre-wrap;\n word-wrap: break-word;\n color: #565867;\n -webkit-font-smoothing: antialiased;\n max-height: 200px;\n overflow: scroll;\n bottom: 0;\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.sc-user-input--text:empty:before {\n content: attr(placeholder);\n display: block; /* For Firefox */\n color: rgba(86, 88, 103, 0.3);\n outline: none;\n}\n\n.sc-user-input--buttons {\n width: 100px;\n position: absolute;\n right: 10px;\n height: 100%;\n display: flex;\n justify-content: flex-end;\n}\n\n.sc-user-input--button:first-of-type {\n width: 40px;\n}\n\n.sc-user-input--button {\n width: 30px;\n height: 55px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.sc-user-input--button button {\n cursor: pointer;\n}\n\n.sc-user-input--buttons input[type=\"file\"] {\n display: none;\n}\n\n.sc-user-input--picker-wrapper {\n display: flex;\n flex-direction: column;\n}\n\n.sc-user-input.active {\n box-shadow: none;\n background-color: white;\n box-shadow: 0px -5px 20px 0px rgba(150, 165, 190, 0.2);\n}\n\n.sc-user-input--file-icon,\n.sc-user-input--send-icon {\n height: 20px;\n width: 20px;\n cursor: pointer;\n align-self: center;\n outline: none;\n}\n\n.sc-user-input--file-icon path,\n.sc-user-input--send-icon path {\n fill: rgba(86, 88, 103, 0.3);\n}\n\n.sc-user-input--file-icon:hover path,\n.sc-user-input--send-icon:hover path {\n fill: rgba(86, 88, 103, 1);\n}\n\n.sc-user-input--emoji-icon-wrapper,\n.sc-user-input--send-icon-wrapper,\n.sc-user-input--file-icon-wrapper {\n background: none;\n border: none;\n padding: 2px;\n margin: 0px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.sc-user-input--send-icon-wrapper,\n.sc-user-input--file-icon-wrapper {\n flex-direction: row;\n}\n\n.sc-user-input--emoji-icon-wrapper:focus {\n outline: none;\n}\n\n.sc-user-input--emoji-icon {\n height: 18px;\n cursor: pointer;\n align-self: center;\n}\n\n.sc-user-input--emoji-icon path, .sc-user-input--emoji-icon circle {\n fill: rgba(86, 88, 103, 0.3);\n}\n\n.sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon path,\n.sc-user-input--emoji-icon-wrapper:focus .sc-user-input--emoji-icon circle,\n.sc-user-input--emoji-icon.active path,\n.sc-user-input--emoji-icon.active circle,\n.sc-user-input--emoji-icon:hover path,\n.sc-user-input--emoji-icon:hover circle {\n fill: rgba(86, 88, 103, 1);\n}\n",".sc-popup-window {\n position: relative;\n width: 150px;\n}\n\n.sc-popup-window--cointainer {\n position: absolute;\n bottom: 20px;\n right: 100px;\n width: 330px;\n max-height: 260px;\n height: 260px;\n box-shadow: 0px 7px 40px 2px rgba(148, 149, 150, 0.3);\n background: white;\n border-radius: 10px;\n outline: none;\n transition: 0.2s ease-in-out;\n z-index: 1;\n padding: 0px 5px 5px 5px;\n box-sizing: border-box;\n}\n\n.sc-popup-window--cointainer.closed {\n opacity: 0;\n visibility: hidden;\n bottom: 14px;\n}\n\n.sc-popup-window--cointainer:after {\n content: \"\";\n width: 14px;\n height: 14px;\n background: white;\n position: absolute;\n z-index: -1;\n bottom: -6px;\n right: 28px;\n -webkit-transform: rotate(45deg);\n transform: rotate(45deg);\n border-radius: 2px;\n}\n\n.sc-popup-window--search {\n width: 290px;\n box-sizing: border-box;\n margin: auto;\n display: block;\n border-width: 0px 0px 1px 0px;\n color: #565867;\n padding-left: 25px;\n height: 40px;\n font-size: 14px;\n background-image: url(https://js.intercomcdn.com/images/search@2x.32fca88e.png);\n background-size: 16px 16px;\n background-repeat: no-repeat;\n background-position: 0 12px;\n outline: none;\n}\n\n.sc-popup-window--search::-webkit-input-placeholder {\n color: #C1C7CD;\n}\n\n.sc-popup-window--search::placeholder {\n color: #C1C7CD;\n}",".sc-pin--message {\n display: flex;\n padding: 5px;\n background-color: #f4f7f9;\n cursor: pointer;\n}\n\n.sc-pin--message--img {\n border-radius: 15px;\n align-self: center;\n width: 45px;\n height: 45px;\n padding: 5px;\n}\n\n.sc-pin--message--desc {\n padding: 10px;\n font-size: 12px;\n}\n\n.sc-pin--message--title {\n font-size: 16px;\n margin-bottom: 2px;\n}\n"]}
Binary file