serverless-ircd 0.6.0 → 0.7.0

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 (247) hide show
  1. package/.github/workflows/ci.yml +6 -1
  2. package/.gitmodules +3 -0
  3. package/CHANGELOG.md +214 -0
  4. package/README.md +110 -23
  5. package/apps/aws-stack/package.json +1 -1
  6. package/apps/cf-tcp-container/package.json +1 -1
  7. package/apps/cf-worker/package.json +1 -1
  8. package/apps/cf-worker/src/origin-allowlist.ts +99 -0
  9. package/apps/cf-worker/src/worker.ts +89 -9
  10. package/apps/cf-worker/tests/fixtures/web-dist/app/index.html +18 -0
  11. package/apps/cf-worker/tests/fixtures/web-dist/index.html +18 -0
  12. package/apps/cf-worker/tests/origin-allowlist.test.ts +101 -0
  13. package/apps/cf-worker/tests/smoke.test.ts +28 -2
  14. package/apps/cf-worker/tests/ws-origin.test.ts +89 -0
  15. package/apps/cf-worker/wrangler.test.toml +23 -0
  16. package/apps/cf-worker/wrangler.toml +54 -0
  17. package/apps/local-cli/package.json +1 -1
  18. package/apps/web/landing/index.html +217 -0
  19. package/apps/web/package.json +28 -0
  20. package/apps/web/scripts/build.mjs +125 -0
  21. package/apps/web/src/build-env.ts +43 -0
  22. package/apps/web/src/config-schema.ts +138 -0
  23. package/apps/web/static/config.json +28 -0
  24. package/apps/web/static/config.prod.json +28 -0
  25. package/apps/web/static/config.staging.json +28 -0
  26. package/apps/web/tests/build-env.test.ts +63 -0
  27. package/apps/web/tests/build-smoke.test.ts +103 -0
  28. package/apps/web/tests/config-schema.test.ts +432 -0
  29. package/apps/web/tests/workspace.test.ts +12 -0
  30. package/apps/web/tsconfig.json +10 -0
  31. package/apps/web/upstream/.browserslistrc +3 -0
  32. package/apps/web/upstream/.editorconfig +9 -0
  33. package/apps/web/upstream/.eslintignore +3 -0
  34. package/apps/web/upstream/.eslintrc.js +90 -0
  35. package/apps/web/upstream/.github/FUNDING.yml +12 -0
  36. package/apps/web/upstream/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  37. package/apps/web/upstream/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  38. package/apps/web/upstream/.github/workflows/push.yml +26 -0
  39. package/apps/web/upstream/.github/workflows/release.yml +33 -0
  40. package/apps/web/upstream/.github/workflows/release_manual.yml +55 -0
  41. package/apps/web/upstream/.prettierrc.js +9 -0
  42. package/apps/web/upstream/.stylelintignore +5 -0
  43. package/apps/web/upstream/.stylelintrc.js +21 -0
  44. package/apps/web/upstream/LICENSE +201 -0
  45. package/apps/web/upstream/README.md +76 -0
  46. package/apps/web/upstream/babel.config.js +25 -0
  47. package/apps/web/upstream/crowdin.yml +3 -0
  48. package/apps/web/upstream/index.html +35 -0
  49. package/apps/web/upstream/jest.config.js +7 -0
  50. package/apps/web/upstream/jsdoc.json +22 -0
  51. package/apps/web/upstream/package.json +80 -0
  52. package/apps/web/upstream/scripts/pre-commit +43 -0
  53. package/apps/web/upstream/src/components/App.vue +516 -0
  54. package/apps/web/upstream/src/components/AppSettings.vue +587 -0
  55. package/apps/web/upstream/src/components/AutoComplete.vue +284 -0
  56. package/apps/web/upstream/src/components/Avatar.vue +105 -0
  57. package/apps/web/upstream/src/components/AwayStatusIndicator.vue +77 -0
  58. package/apps/web/upstream/src/components/BufferKey.vue +121 -0
  59. package/apps/web/upstream/src/components/BufferSettings.vue +97 -0
  60. package/apps/web/upstream/src/components/Captcha.vue +85 -0
  61. package/apps/web/upstream/src/components/ChannelBanlist.vue +96 -0
  62. package/apps/web/upstream/src/components/ChannelInfo.vue +159 -0
  63. package/apps/web/upstream/src/components/ChannelInvitelist.vue +276 -0
  64. package/apps/web/upstream/src/components/ChannelList.vue +345 -0
  65. package/apps/web/upstream/src/components/Container.vue +401 -0
  66. package/apps/web/upstream/src/components/ContainerHeader.vue +522 -0
  67. package/apps/web/upstream/src/components/ControlInput.vue +1016 -0
  68. package/apps/web/upstream/src/components/LoadingAnimation.vue +104 -0
  69. package/apps/web/upstream/src/components/MediaViewer.vue +199 -0
  70. package/apps/web/upstream/src/components/MessageInfo.vue +192 -0
  71. package/apps/web/upstream/src/components/MessageList.vue +1028 -0
  72. package/apps/web/upstream/src/components/MessageListAvatar.vue +20 -0
  73. package/apps/web/upstream/src/components/MessageListMessageCompact.vue +361 -0
  74. package/apps/web/upstream/src/components/MessageListMessageInline.vue +257 -0
  75. package/apps/web/upstream/src/components/MessageListMessageModern.vue +430 -0
  76. package/apps/web/upstream/src/components/NetworkSettings.vue +528 -0
  77. package/apps/web/upstream/src/components/Nicklist.vue +309 -0
  78. package/apps/web/upstream/src/components/NicklistUser.vue +181 -0
  79. package/apps/web/upstream/src/components/NotConnected.vue +271 -0
  80. package/apps/web/upstream/src/components/SelfUser.vue +283 -0
  81. package/apps/web/upstream/src/components/ServerSelector.vue +162 -0
  82. package/apps/web/upstream/src/components/ServerView.vue +126 -0
  83. package/apps/web/upstream/src/components/SettingsAdvanced.vue +232 -0
  84. package/apps/web/upstream/src/components/SettingsAliases.vue +121 -0
  85. package/apps/web/upstream/src/components/Sidebar.vue +429 -0
  86. package/apps/web/upstream/src/components/SidebarAboutBuffer.vue +288 -0
  87. package/apps/web/upstream/src/components/SidebarState.vue +145 -0
  88. package/apps/web/upstream/src/components/StartupError.vue +35 -0
  89. package/apps/web/upstream/src/components/StateBrowser.vue +420 -0
  90. package/apps/web/upstream/src/components/StateBrowserBuffer.vue +124 -0
  91. package/apps/web/upstream/src/components/StateBrowserNetwork.vue +823 -0
  92. package/apps/web/upstream/src/components/StateBrowserUsermenu.vue +162 -0
  93. package/apps/web/upstream/src/components/TypingStatusIndicator.vue +34 -0
  94. package/apps/web/upstream/src/components/TypingUsersList.vue +56 -0
  95. package/apps/web/upstream/src/components/UrlEmbed.vue +149 -0
  96. package/apps/web/upstream/src/components/UserBox.vue +728 -0
  97. package/apps/web/upstream/src/components/inputtools/Emoji.vue +67 -0
  98. package/apps/web/upstream/src/components/inputtools/TextStyle.vue +142 -0
  99. package/apps/web/upstream/src/components/startups/CommonLayout.vue +208 -0
  100. package/apps/web/upstream/src/components/startups/CustomServer.vue +495 -0
  101. package/apps/web/upstream/src/components/startups/KiwiBnc.vue +361 -0
  102. package/apps/web/upstream/src/components/startups/Personal.vue +317 -0
  103. package/apps/web/upstream/src/components/startups/Welcome.vue +544 -0
  104. package/apps/web/upstream/src/components/startups/ZncLogin.vue +229 -0
  105. package/apps/web/upstream/src/components/utils/InputConfirm.vue +68 -0
  106. package/apps/web/upstream/src/components/utils/InputPrompt.vue +118 -0
  107. package/apps/web/upstream/src/components/utils/InputText.vue +172 -0
  108. package/apps/web/upstream/src/components/utils/IrcInput.vue +579 -0
  109. package/apps/web/upstream/src/components/utils/PluginWrapper.vue +26 -0
  110. package/apps/web/upstream/src/components/utils/TabbedView.vue +149 -0
  111. package/apps/web/upstream/src/components/utils/TransitionExpand.vue +97 -0
  112. package/apps/web/upstream/src/helpers/Colours.js +128 -0
  113. package/apps/web/upstream/src/helpers/IrcdDiffs.js +26 -0
  114. package/apps/web/upstream/src/helpers/Md5.js +193 -0
  115. package/apps/web/upstream/src/helpers/Misc.js +401 -0
  116. package/apps/web/upstream/src/helpers/TextFormatting.js +237 -0
  117. package/apps/web/upstream/src/libs/AliasRewriter.js +157 -0
  118. package/apps/web/upstream/src/libs/AudioManager.js +60 -0
  119. package/apps/web/upstream/src/libs/BouncerMiddleware.js +247 -0
  120. package/apps/web/upstream/src/libs/BouncerProvider.js +551 -0
  121. package/apps/web/upstream/src/libs/ChathistoryMiddleware.js +153 -0
  122. package/apps/web/upstream/src/libs/ConfigLoader.js +94 -0
  123. package/apps/web/upstream/src/libs/EmojiProvider.js +46 -0
  124. package/apps/web/upstream/src/libs/GlobalApi.js +346 -0
  125. package/apps/web/upstream/src/libs/IPC.js +51 -0
  126. package/apps/web/upstream/src/libs/InputHandler.js +921 -0
  127. package/apps/web/upstream/src/libs/IrcClient.js +1506 -0
  128. package/apps/web/upstream/src/libs/Logger.js +71 -0
  129. package/apps/web/upstream/src/libs/Message.js +169 -0
  130. package/apps/web/upstream/src/libs/MessageFormatter.js +364 -0
  131. package/apps/web/upstream/src/libs/MessageParser.js +249 -0
  132. package/apps/web/upstream/src/libs/Notifications.js +78 -0
  133. package/apps/web/upstream/src/libs/ServerConnection.js +270 -0
  134. package/apps/web/upstream/src/libs/ServerSession.js +102 -0
  135. package/apps/web/upstream/src/libs/SoundBleep.js +20 -0
  136. package/apps/web/upstream/src/libs/StatePersistence.js +90 -0
  137. package/apps/web/upstream/src/libs/ThemeManager.js +128 -0
  138. package/apps/web/upstream/src/libs/TypingMiddleware.js +105 -0
  139. package/apps/web/upstream/src/libs/WindowTitle.js +63 -0
  140. package/apps/web/upstream/src/libs/batchedAdd.js +74 -0
  141. package/apps/web/upstream/src/libs/bufferTools.js +177 -0
  142. package/apps/web/upstream/src/libs/polyfill/Element.closest.js +18 -0
  143. package/apps/web/upstream/src/libs/renderers/Html.js +113 -0
  144. package/apps/web/upstream/src/libs/settingTools.js +31 -0
  145. package/apps/web/upstream/src/libs/state/BufferState.js +703 -0
  146. package/apps/web/upstream/src/libs/state/NetworkState.js +158 -0
  147. package/apps/web/upstream/src/libs/state/UserState.js +89 -0
  148. package/apps/web/upstream/src/libs/state/common.js +26 -0
  149. package/apps/web/upstream/src/libs/state.js +961 -0
  150. package/apps/web/upstream/src/libs/storage/Local.js +51 -0
  151. package/apps/web/upstream/src/main.js +566 -0
  152. package/apps/web/upstream/src/res/autocompleteCommands.js +31 -0
  153. package/apps/web/upstream/src/res/configTemplates.js +373 -0
  154. package/apps/web/upstream/src/res/globalStyle.css +277 -0
  155. package/apps/web/upstream/src/res/kiwiLoadingLogo.png +0 -0
  156. package/apps/web/upstream/src/res/locales/app.af-ZA.po +1145 -0
  157. package/apps/web/upstream/src/res/locales/app.ar-SA.po +1145 -0
  158. package/apps/web/upstream/src/res/locales/app.bg-BG.po +1145 -0
  159. package/apps/web/upstream/src/res/locales/app.bs-BA.po +1145 -0
  160. package/apps/web/upstream/src/res/locales/app.ca-ES.po +1145 -0
  161. package/apps/web/upstream/src/res/locales/app.cs-CZ.po +1145 -0
  162. package/apps/web/upstream/src/res/locales/app.da-DK.po +1145 -0
  163. package/apps/web/upstream/src/res/locales/app.de-DE.po +1145 -0
  164. package/apps/web/upstream/src/res/locales/app.dev.po +1246 -0
  165. package/apps/web/upstream/src/res/locales/app.el-GR.po +1145 -0
  166. package/apps/web/upstream/src/res/locales/app.en-US.po +1145 -0
  167. package/apps/web/upstream/src/res/locales/app.es-419.po +1145 -0
  168. package/apps/web/upstream/src/res/locales/app.es-AR.po +1145 -0
  169. package/apps/web/upstream/src/res/locales/app.es-EM.po +536 -0
  170. package/apps/web/upstream/src/res/locales/app.es-ES.po +1145 -0
  171. package/apps/web/upstream/src/res/locales/app.es-US.po +1145 -0
  172. package/apps/web/upstream/src/res/locales/app.eu-ES.po +1145 -0
  173. package/apps/web/upstream/src/res/locales/app.fi-FI.po +1145 -0
  174. package/apps/web/upstream/src/res/locales/app.fr-FR.po +1145 -0
  175. package/apps/web/upstream/src/res/locales/app.gl-ES.po +1145 -0
  176. package/apps/web/upstream/src/res/locales/app.he-IL.po +1145 -0
  177. package/apps/web/upstream/src/res/locales/app.hi-IN.po +1145 -0
  178. package/apps/web/upstream/src/res/locales/app.hu-HU.po +1145 -0
  179. package/apps/web/upstream/src/res/locales/app.id-ID.po +1145 -0
  180. package/apps/web/upstream/src/res/locales/app.it-IT.po +1145 -0
  181. package/apps/web/upstream/src/res/locales/app.ja-JP.po +1145 -0
  182. package/apps/web/upstream/src/res/locales/app.ko-KR.po +1145 -0
  183. package/apps/web/upstream/src/res/locales/app.nl-NL.po +1145 -0
  184. package/apps/web/upstream/src/res/locales/app.no-NO.po +1145 -0
  185. package/apps/web/upstream/src/res/locales/app.pl-PL.po +1145 -0
  186. package/apps/web/upstream/src/res/locales/app.pt-BR.po +1145 -0
  187. package/apps/web/upstream/src/res/locales/app.pt-PT.po +1145 -0
  188. package/apps/web/upstream/src/res/locales/app.ro-RO.po +1145 -0
  189. package/apps/web/upstream/src/res/locales/app.ru-RU.po +1145 -0
  190. package/apps/web/upstream/src/res/locales/app.sl-SI.po +1145 -0
  191. package/apps/web/upstream/src/res/locales/app.sq-AL.po +1145 -0
  192. package/apps/web/upstream/src/res/locales/app.sr-SP.po +1145 -0
  193. package/apps/web/upstream/src/res/locales/app.sv-SE.po +1145 -0
  194. package/apps/web/upstream/src/res/locales/app.tr-TR.po +1145 -0
  195. package/apps/web/upstream/src/res/locales/app.uk-UA.po +1145 -0
  196. package/apps/web/upstream/src/res/locales/app.vi-VN.po +1145 -0
  197. package/apps/web/upstream/src/res/locales/app.zh-CN.po +1145 -0
  198. package/apps/web/upstream/src/res/locales/app.zh-TW.po +1145 -0
  199. package/apps/web/upstream/src/res/localesList.json +27 -0
  200. package/apps/web/upstream/src/res/logo.png +0 -0
  201. package/apps/web/upstream/src/thirdparty/about.html +43 -0
  202. package/apps/web/upstream/src/thirdparty/index.js +5 -0
  203. package/apps/web/upstream/src/thirdparty/kiwiirccom.vue +185 -0
  204. package/apps/web/upstream/static/config.json +28 -0
  205. package/apps/web/upstream/static/emoticons/smile.png +0 -0
  206. package/apps/web/upstream/static/favicon.png +0 -0
  207. package/apps/web/upstream/static/highlight.mp3 +0 -0
  208. package/apps/web/upstream/static/highlight.ogg +0 -0
  209. package/apps/web/upstream/static/locales/.gitignore +2 -0
  210. package/apps/web/upstream/static/plugins/customise.html.example +10 -0
  211. package/apps/web/upstream/static/themes/coffee/theme.css +145 -0
  212. package/apps/web/upstream/static/themes/common/base.css +1064 -0
  213. package/apps/web/upstream/static/themes/dark/theme.css +196 -0
  214. package/apps/web/upstream/static/themes/default/theme.css +92 -0
  215. package/apps/web/upstream/static/themes/elite/theme.css +248 -0
  216. package/apps/web/upstream/static/themes/grayfox/theme.css +143 -0
  217. package/apps/web/upstream/static/themes/nightswatch/theme.css +367 -0
  218. package/apps/web/upstream/static/themes/osprey/theme.css +115 -0
  219. package/apps/web/upstream/static/themes/radioactive/theme.css +1211 -0
  220. package/apps/web/upstream/static/themes/sky/theme.css +107 -0
  221. package/apps/web/upstream/tests/unit/BatchAdd.spec.js +174 -0
  222. package/apps/web/upstream/tests/unit/MessageParser.spec.js +125 -0
  223. package/apps/web/upstream/tests/unit/Misc.spec.js +24 -0
  224. package/apps/web/upstream/tests/unit/NetworkState.spec.js +58 -0
  225. package/apps/web/upstream/tests/unit/StartupError.spec.js +20 -0
  226. package/apps/web/upstream/vue.config.js +150 -0
  227. package/apps/web/upstream/yarn.lock +9767 -0
  228. package/apps/web/vitest.config.ts +13 -0
  229. package/biome.json +1 -0
  230. package/docs/Home.md +1 -0
  231. package/docs/WebClientGuide.md +535 -0
  232. package/package.json +2 -2
  233. package/packages/aws-adapter/package.json +1 -1
  234. package/packages/cf-adapter/package.json +1 -1
  235. package/packages/cf-adapter/tests/cf-harness.ts +12 -1
  236. package/packages/in-memory-runtime/package.json +1 -1
  237. package/packages/irc-core/package.json +1 -1
  238. package/packages/irc-core/reports/mutation/mutation.html +342 -0
  239. package/packages/irc-core/tests/batch.test.ts +15 -0
  240. package/packages/irc-core/tests/numerics.test.ts +13 -0
  241. package/packages/irc-core/tests/parser.test.ts +109 -0
  242. package/packages/irc-server/package.json +1 -1
  243. package/packages/irc-test-support/package.json +1 -1
  244. package/packages/irc-test-support/src/scenarios.ts +24 -2
  245. package/tools/ci-hardening/package.json +1 -1
  246. package/tools/load-test/package.json +1 -1
  247. package/tools/tcp-ws-forwarder/package.json +1 -1
@@ -0,0 +1,1211 @@
1
+ /* Radioactive is your very own pipboy theme for Kiwi */
2
+
3
+ @import url(https://fonts.googleapis.com/css?family=VT323);
4
+
5
+ .kiwi-wrap {
6
+ background: #3a5646;
7
+ --kiwi-nick-brightness: 80;
8
+ --kiwi-supports-monospace: 1;
9
+ color: #201F1F;
10
+ }
11
+
12
+ /* Kiwi Theme Background is used to apply the same background colour accross components, rather than targeting them all specifically */
13
+ .kiwi-theme-bg {
14
+ background-color: #031e11;
15
+ color: #14fdce;
16
+ }
17
+
18
+ /* Welcome Screen ( Welcome.vue ) */
19
+ .kiwi-welcome-simple-form .u-input-text {
20
+ background: none;
21
+ }
22
+
23
+ .kiwi-welcome-simple-error {
24
+ border: 1px dashed #d86f6f;
25
+ }
26
+ .kiwi-welcome-simple-form .u-submit {
27
+ background-color: #1b2f24;
28
+ color: #fff;
29
+ }
30
+ .kiwi-welcome-simple .help {
31
+ color: #666;
32
+ }
33
+ .kiwi-welcome-simple .help a {
34
+ color: #666;
35
+ }
36
+ .kiwi-welcome-simple .help a:hover {
37
+ color: #a9d87a;
38
+ }
39
+
40
+ .kiwi-welcome-simple .u-submit {
41
+ border: 2px solid #00ffcb;
42
+ color: #00ffcb;
43
+ background: none;
44
+ }
45
+
46
+ .kiwi-welcome-simple .u-submit:hover {
47
+ text-decoration: underline;
48
+ cursor: pointer;
49
+ }
50
+
51
+ /* Custom server layout */
52
+ .kiwi-customserver {
53
+ background-color: #fbfbfb;
54
+ }
55
+
56
+
57
+
58
+ /* App ( App.vue ) */
59
+ .kiwi-workspace::before {
60
+ background: #00e2b7;
61
+ opacity: 1;
62
+ z-index: 1;
63
+ }
64
+ .kiwi-workspace::after {
65
+ height: 100%;
66
+ width: 100%;
67
+ opacity: 1;
68
+ pointer-events: none;
69
+ z-index: 100;
70
+ }
71
+
72
+ /* App - Tabs */
73
+ .u-tabbed-content hr {
74
+ color: #5dd895;
75
+ }
76
+
77
+ .u-tabbed-view-tabs {
78
+ padding-top: 0;
79
+ border-bottom: 3px solid rgba(0, 0, 0, 0.1);
80
+ }
81
+ .u-tabbed-view-tabs .u-tabbed-view-tab {
82
+ background: none;
83
+ border: 1px solid #5dd895;
84
+ color: #5dd895;
85
+ border-radius: 0 !important;
86
+ }
87
+ .u-tabbed-view-tabs .u-tabbed-view-tab:hover,
88
+ .u-tabbed-view-tabs .u-tabbed-view-tab.u-tabbed-view-tab--active{
89
+ border: 1px solid #5dd895;
90
+ color: #5dd895;
91
+ text-decoration: underline;
92
+ }
93
+
94
+ /*Style all inputs */
95
+ .u-input-text-underline {
96
+ border-color: #a9a9a9;
97
+ }
98
+ .u-input-text-underline-active {
99
+ background: #1b2f24;
100
+ }
101
+ .u-form .u-input,
102
+ .u-form textarea {
103
+ line-height: normal;
104
+ outline-color: #1b2f24;
105
+ }
106
+
107
+ .u-input {
108
+ border: 1px solid #3e9465;
109
+ }
110
+
111
+ .u-input:focus {
112
+ border: 1px solid #57da93;
113
+ }
114
+
115
+ /* Checkbox Styling */
116
+ .u-form input[type='checkbox'],
117
+ .u-form input[type='radio'] {
118
+ border: 2px solid #57da93;
119
+ background-color: #183123;
120
+ }
121
+ .u-form input[type='checkbox']:checked,
122
+ .u-form input[type='radio']:checked {
123
+ background: #5dd895;
124
+ }
125
+
126
+
127
+ .u-form select {
128
+ background-color: #183123;
129
+ }
130
+
131
+ /*buttons */
132
+ .u-button {
133
+ color: #2c3e50;
134
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
135
+ }
136
+ .u-button-primary {
137
+ color: #fff;
138
+ background-color: #00e3b5;
139
+ border: none;
140
+ border-bottom: 1px solid #00e4b3;
141
+ }
142
+
143
+ .u-button-secondary {
144
+ background: rgba(117, 117, 117, 0.07);
145
+ border-bottom: 1px solid rgba(117, 117, 117, 0.2);
146
+ }
147
+
148
+ .u-button-warning {
149
+ background-color: #d16c6c;
150
+ color: #fff;
151
+ }
152
+ .u-link {
153
+ color: #fff;
154
+ }
155
+
156
+ /* Application settings ( AppSettings.vue ) */
157
+ .kiwi-appsettings-block {
158
+ position: relative;
159
+ z-index: 10;
160
+ background: #032c14;
161
+ }
162
+ .kiwi-appsettings-block h3 {
163
+ background: none;
164
+ border: 1px solid #5dd895;
165
+ text-decoration: underline;
166
+ color: #5dd895;
167
+ }
168
+
169
+ .kiwi-appsettings-section {
170
+ background: none;
171
+ border: 1px solid #5dd895;
172
+ color: #5dd895;
173
+ }
174
+
175
+ /* Title bar, at the top of the Application settings component */
176
+ .kiwi-appsettings-close {
177
+ line-height: 38px;
178
+ color: #fff;
179
+ background: #031e11;
180
+ }
181
+
182
+ .kiwi-appsettings-close i {
183
+ line-height: 38px;
184
+ }
185
+
186
+ .kiwi-appsettings-close:hover{
187
+ background: #5cd894;
188
+ }
189
+
190
+ /* Channel List ( ChannelList.vue ) */
191
+ .kiwi-channellist-grid .u-button-primary {
192
+ background: none;
193
+ border: 1px solid #14fdce;
194
+ color: #14fdce;
195
+ }
196
+
197
+ .kiwi-channellist-grid a {
198
+ color: #14fdce;
199
+ text-decoration: underline;
200
+ }
201
+
202
+ /* Container - Main ( Container.vue ) The majority of styling related to the messages and user input etc */
203
+ @keyframes crt-glow {
204
+ 0% { opacity: 0.1; }
205
+ 50% { opacity: 0.2; }
206
+ }
207
+ .kiwi-workspace-background {
208
+ z-index: 0;
209
+ pointer-events: none;
210
+ border-bottom-color: #121212;
211
+ border-left-color: #080808;
212
+ border-right-color: #080808;
213
+ border-top-color: #020202;
214
+ box-shadow: inset 0 0 9rem #00000073, inset 0 0 3rem #000000ab, 0 0 12rem #9c3737;
215
+ }
216
+ .kiwi-workspace-background::before {
217
+ position: absolute;
218
+ content: "";
219
+ width: 100%;
220
+ height: 100%;
221
+ z-index: 8;
222
+ animation: crt-glow 60s infinite;
223
+ background: radial-gradient(circle at center, #1bd459 0%, rgba(27, 212, 89, 0.88) 58%, rgba(21, 235, 92, 0.57) 80%, rgba(19, 94, 29, 0.27) 93%, rgba(10, 23, 12, 0) 100%);
224
+ opacity: 0.15;
225
+ pointer-events: none;
226
+ position: fixed;
227
+ }
228
+ .kiwi-workspace-background::after {
229
+ position: absolute;
230
+ content: "";
231
+ width: 100%;
232
+ height: 100%;
233
+ z-index: 10;
234
+ pointer-events: none;
235
+ background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.6));
236
+ background-size: 100% 0.3rem;
237
+ border-radius: 2rem;
238
+ position: absolute;
239
+ opacity: 0.5;
240
+ }
241
+
242
+
243
+ /* The join button is displayed in the header when the user has not connected to their currently selected network */
244
+ .kiwi-header-join-channel-button {
245
+ background-color: #42b983;
246
+ color: #fff;
247
+ }
248
+
249
+ .kiwi-container-toggledraw-sidebar {
250
+ border-left: 1px solid #ddd;
251
+ }
252
+ .kiwi-container-toggledraw-sidebar--disabled {
253
+ color: #b8babd;
254
+ }
255
+
256
+ /* These styles relate to the 'unread messages' and 'Mentioned' highlights that display to the user in the Statebrowser sidebar */
257
+ .kiwi-container-toggledraw-statebrowser-messagecount {
258
+ background-color: #42b983;
259
+ color: #fff;
260
+ }
261
+ .kiwi-container-toggledraw-statebrowser-messagecount::after {
262
+ border: 0.6em solid transparent;
263
+ border-right-color: #42b983;
264
+ }
265
+
266
+ .kiwi-container-toggledraw-statebrowser-messagecount--highlight {
267
+ background-color: #d62323;
268
+ color: #fff;
269
+ }
270
+
271
+ .kiwi-container-toggledraw-statebrowser-messagecount--highlight::after {
272
+ border-right-color: #d62323;
273
+ }
274
+
275
+ /* Style the statebrowser's ::after element on mobile devices */
276
+ .kiwi-wrap--statebrowser-drawopen .kiwi-container-toggledraw-statebrowser-messagecount::after {
277
+ border: 0.6em solid transparent;
278
+ border-left-color: #42b983;
279
+ }
280
+
281
+ .kiwi-statebrowser-channel-label--highlight {
282
+ background: #e45e5e;
283
+ }
284
+
285
+ .kiwi-container-empty .u-button {
286
+ background-color: #1b2f24;
287
+ color: #fff;
288
+ }
289
+
290
+ /* Container Header ( ContainerHeader.vue ) */
291
+ .kiwi-header {
292
+ background: #032f17;
293
+ }
294
+ .kiwi-header-name {
295
+ color: #fff;
296
+ text-shadow: 0 0 4px #fff;
297
+ opacity: 0.8;
298
+ animation: flicker 4s infinite 8s;
299
+ }
300
+
301
+ @keyframes flicker {
302
+ 0% {opacity: 0.5;}
303
+ 5% {opacity: 0.7;}
304
+ 7% {opacity: 0.3;}
305
+ 9% {color: #fffef2;}
306
+ 10% {opacity: 0.8;}
307
+ 11% {color: #fff;}
308
+ 40% {color: 0.7;}
309
+ 70% {color: 0.6;}
310
+ 100% {opacity: 0.5;}
311
+ }
312
+
313
+ /* The header option buttons */
314
+ .kiwi-header-option {
315
+ color: #14fdce;
316
+ }
317
+ .kiwi-header-option a:hover,
318
+ .kiwi-header-option--active,
319
+ .kiwi-header-option--active:hover a{
320
+ background-color: #00fecd;
321
+ color: #021e11;
322
+ opacity: 1;
323
+ }
324
+
325
+ .kiwi-header-option--active {
326
+ opacity: 1;
327
+ }
328
+
329
+ /* For active buttons, since they are not being hovered, we need to set the child element opacity to 1 */
330
+ .kiwi-header-option-active a{
331
+ opacity: 1;
332
+ }
333
+
334
+ /* The link to click if the user has not joined this channel */
335
+ .kiwi-header .kiwi-header-notjoined .u-link {
336
+ background-color: #1b2f24;
337
+ color: #fff;
338
+ }
339
+ .kiwi-header .kiwi-header-notjoined .u-link:hover {
340
+ background-color: #5ec9a6;
341
+ }
342
+
343
+ /* The not joined button */
344
+ .kiwi-header .kiwi-header-notjoined .u-link {
345
+ background-color: #1b2f24;
346
+ color: #fff;
347
+ }
348
+ .kiwi-header .kiwi-header-notjoined .u-link:hover {
349
+ background-color: #5ec9a6;
350
+ }
351
+
352
+ .kiwi-header-server-connection .u-button {
353
+ color: #14fdce;
354
+ text-decoration: underline;
355
+ }
356
+
357
+ .kiwi-messagelist-message {
358
+ font-family: 'VT323', monospace;
359
+ }
360
+
361
+ /* baseline styling for the 'topic' of the channel, if it has one, these are shared between traditional and modern view, but can be made more specific if need be */
362
+ .kiwi-messagelist-message.kiwi-messagelist-message-topic {
363
+ border-top: 1px solid #5dd89552;
364
+ border-bottom: 1px solid #5dd89552;
365
+ }
366
+ .kiwi-messagelist-message--modern.kiwi-messagelist-message--authorrepeat.kiwi-messagelist-message-topic {
367
+ border-top: 1px solid #5dd89552;
368
+ }
369
+ .kiwi-messagelist-message--modern.kiwi-messagelist-message-topic {
370
+ border: 1px solid #5dd89552;
371
+ }
372
+ .kiwi-messagelist-message--modern.kiwi-messagelist-message-topic.kiwi-messagelist-message--unread {
373
+ border-left: 2px solid #14fdce;
374
+ }
375
+ .kiwi-messagelist-message--modern .kiwi-messagelist-body {
376
+ font-weight: 900;
377
+ letter-spacing: 2px;
378
+ text-shadow: 0 2px 0 rgba(0,0,0,0.5);
379
+ }
380
+ .kiwi-header-buffersettings {
381
+ border-top: 1px solid #14fdce;
382
+ }
383
+ .kiwi-header-topic > div {
384
+ color: #14fdce;
385
+ }
386
+
387
+
388
+
389
+ /* When hovering over a channel, these options are displayed and coloured upon hover */
390
+ .kiwi-statebrowser-channel-settings,
391
+ .kiwi-statebrowser-channel-leave {
392
+ background-color: #5dd895;
393
+ }
394
+ .kiwi-statebrowser-channel-settings:hover{
395
+ background-color: #6a7b8e;
396
+ }
397
+ .kiwi-statebrowser-channel-leave:hover{
398
+ background: #c54d53;
399
+ }
400
+
401
+ .kiwi-controlinput-button {
402
+ background-color: #07311a;
403
+ border: 2px solid #07311a;
404
+ }
405
+
406
+ .kiwi-controlinput-button:hover,
407
+ .kiwi-controlinput-tools,
408
+ .kiwi-controlinput-tools-container,
409
+ .kiwi-controlinput-send {
410
+ color: #49c081;
411
+ background-color: #155d36;
412
+ }
413
+
414
+ /* Control Input - displayed at bottom of Kiwi ( ControlInput.vue ) */
415
+ .kiwi-controlinput {
416
+ font-family: 'VT323', monospace;
417
+ font-weight: 900;
418
+ letter-spacing: 2px;
419
+ background: #07311a;
420
+ color: #49c081;
421
+ }
422
+ .kiwi-controlinput .kiwi-controlinput-user,
423
+ .kiwi-controlinput-inner .kiwi-controlinput-user {
424
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
425
+ }
426
+
427
+ .kiwi-controlinput-active-tool {
428
+ background: #053118;
429
+ border-top: 1px solid #155d36;
430
+ }
431
+
432
+ .kiwi-selfuser,
433
+ .kiwi-inputtool-emoji-emoji {
434
+ background-color: #1b2f24;
435
+ color: #69efa6;
436
+ }
437
+
438
+
439
+ .kiwi-selfuser .kiwi-selfuser-actions .u-button.u-button-warning {
440
+ color: #fff;
441
+ }
442
+
443
+ /* AutoComplete - If the user has enabled autocomplete in their options, this will style the options (AutoComplete.vue) */
444
+ .kiwi-autocomplete {
445
+ box-shadow: 0 1px 15px rgba(64, 54, 63, 0.25);
446
+ border: 1px solid #ccc;
447
+ background: #fff;
448
+ }
449
+ .kiwi-autocomplete-item {
450
+ border-bottom: 1px solid #ccc;
451
+ }
452
+ .kiwi-autocomplete-item--selected {
453
+ background: #1b2f24;
454
+ color: #fff;
455
+ }
456
+ .kiwi-autocomplete-item--selected .u-link {
457
+ color: #fff;
458
+ }
459
+
460
+ /* Message list - Standard messages ( MessageList.vue ) */
461
+ .kiwi-messagelist-seperator > span {
462
+ background: none;
463
+ }
464
+
465
+ .kiwi-messageinfo-urls {
466
+ border-top: 1px solid #ddd;
467
+ }
468
+ .kiwi-messagelist-message-action .kiwi-messagelist-body {
469
+ color: #090;
470
+ font-style: italic;
471
+ }
472
+ .kiwi-messagelist-message--highlight {
473
+ background-color: #629477;
474
+ }
475
+
476
+ /* Standard username and usertime styling */
477
+ .kiwi-messagelist-nick {
478
+ color: #000;
479
+ }
480
+ .kiwi-messagelist-time {
481
+ color: #a0a09f;
482
+ }
483
+
484
+ /* Unread user messages */
485
+ .kiwi-messagelist-message.kiwi-messagelist-message--unread,
486
+ .kiwi-messagelist-message.kiwi-messagelist-message--unread {
487
+ border-left: 5px solid #629477;
488
+ background: #406550;
489
+ opacity: 1;
490
+ }
491
+
492
+ /* When hovering over a users messages */
493
+ .kiwi-messagelist-message--hover{
494
+ background-color: #629477;
495
+ }
496
+
497
+ /* The shadow over the main text area that displays when the sidebar is open */
498
+ .kiwi-container--sidebar-drawn .kiwi-messagelist::after {
499
+ background-color: #000;
500
+ }
501
+
502
+ /* Traffic Messages - User join , User Quit etc*/
503
+ .kiwi-messagelist-message-traffic-join,
504
+ .kiwi-messagelist-message-traffic-join_self {
505
+ color: #090;
506
+ }
507
+
508
+ .kiwi-messagelist-message-traffic-quit,
509
+ .kiwi-messagelist-message-traffic-quit_self,
510
+ .kiwi-messagelist-message-traffic-part,
511
+ .kiwi-messagelist-message-traffic-part_self,
512
+ .kiwi-messagelist-message-traffic-kick,
513
+ .kiwi-messagelist-message-traffic-kick_self {
514
+ color: #900;
515
+ opacity: 1;
516
+ }
517
+
518
+ .kiwi-messagelist-message-traffic-quit .kiwi-nick::before,
519
+ .kiwi-messagelist-message-traffic-quit_self .kiwi-nick::before,
520
+ .kiwi-messagelist-message-traffic-part .kiwi-nick::before,
521
+ .kiwi-messagelist-message-traffic-part_self .kiwi-nick::before {
522
+ color: #900;
523
+ }
524
+
525
+ /* Errors */
526
+ .kiwi-messagelist-message-error {
527
+ background: #752020;
528
+ border-left-color: #ab5252;
529
+ color: #fff;
530
+ text-shadow: 0 2px 0 #000;
531
+ }
532
+
533
+ .kiwi-messagelist-message.kiwi-messagelist-message-error .kiwi-messagelist-body {
534
+ color: #fff !important;
535
+ }
536
+
537
+ /* Kiwi Modern Message list ( MessageListMessageModern.vue ) */
538
+ .kiwi-messagelist-modern-avatar {
539
+ border: 2px solid #5dd895;
540
+ }
541
+
542
+ .kiwi-messagelist-message .kiwi-messagelist-body {
543
+ color: #5dd895 !important;
544
+ }
545
+
546
+ .kiwi-messagelist-message--compact .kiwi-messagelist-body {
547
+ font-size: 1.05em;
548
+ }
549
+
550
+ .kiwi-messagelist-message .kiwi-messagelist-body .kiwi-nick,
551
+ .kiwi-messagelist-message .kiwi-messagelist-body a,
552
+ .kiwi-aboutbuffer a {
553
+ color: #fff !important;
554
+ text-decoration: underline;
555
+ }
556
+
557
+ .kiwi-messagelist-nick {
558
+ color: #14fdce !important;
559
+ }
560
+
561
+ .kiwi-messagelist-time, .kiwi-messagelist-time {
562
+ color: #14fdce;
563
+ }
564
+
565
+ .kiwi-messagelist-message--modern {
566
+ border-top: 1px solid #0f5d35;
567
+ }
568
+ .kiwi-messagelist-message--modern.kiwi-messagelist-message--authorrepeat {
569
+ border-top: none;
570
+ }
571
+
572
+ /* Traditional message styling hover */
573
+ .kiwi-messagelist-message--compact .kiwi-messagelist-message-privmsg:hover,
574
+ .kiwi-messagelist-message--compact .kiwi-messagelist-message-action:hover,
575
+ .kiwi-messagelist-message--compact .kiwi-messagelist-message-notice:hover {
576
+ border-left-color: #80ab52;
577
+ }
578
+
579
+ .kiwi-messagelist-message-notice {
580
+ border-left-color: #4cff9a;
581
+ }
582
+
583
+ /* MessageInfo */
584
+ .kiwi-messagelist-message--info-open,
585
+ .kiwi-messagelist-message--authorrepeat.kiwi-messagelist-message--info-open {
586
+ border-top: 1px solid #14fdce;
587
+ border-bottom: 1px solid #14fdce;
588
+ }
589
+
590
+ /* MessageInfo URLs */
591
+ .kiwi-messageinfo-urls {
592
+ border-top: 1px solid #14fdce;
593
+ border-bottom: 1px solid #14fdce;
594
+ }
595
+
596
+ .kiwi-messageinfo-url .u-button-secondary {
597
+ color: #14fdce;
598
+ border: 1px solid #14fdce;
599
+ background: none;
600
+ text-shadow: none;
601
+ }
602
+
603
+ .kiwi-messageinfo-urls .kiwi-messageinfo-url:last-of-type {
604
+ margin-bottom: 0;
605
+ }
606
+
607
+ /* Start button stying */
608
+ .kiwi-messageinfo-actions .u-link {
609
+ padding: 5px 10px;
610
+ text-align: center;
611
+ border: 1px solid #14fdce;
612
+ color: #14fdce;
613
+ display: inline-block;
614
+ border-radius: 3px;
615
+ }
616
+
617
+ .kiwi-messageinfo-actions .kiwi-messageinfo-kick-user {
618
+ color: #14fdce;
619
+ }
620
+
621
+ .kiwi-messageinfo-actions .kiwi-messageinfo-ban-user {
622
+ color: #14fdce;
623
+ }
624
+
625
+ /* Network Settings ( NetworkSettings.vue ) */
626
+ .kiwi-networksettings .kiwi-title {
627
+ background: #021e11;
628
+ color: #00fecd;
629
+ border-top: 1px solid #00fecd;
630
+ }
631
+ .kiwi-network-nicknamelabel {
632
+ color: rgb(128, 128, 128);
633
+ }
634
+ .kiwi-networksettings .kiwi-padded-form-element-container.kiwi-dangerzone {
635
+ border-top: 1px solid rgba(0, 0, 0, 0.2);
636
+ }
637
+ .kiwi-networksettings .u-form {
638
+ border: 1px solid rgba(0, 0, 0, 0.2);
639
+ }
640
+ .kiwi-networksettings .kiwi-title span {
641
+ color: #1b2f24;
642
+ background: #fff;
643
+ }
644
+ .kiwi-networksettings-advanced h3:hover {
645
+ color: #1b2f24;
646
+ }
647
+ .kiwi-networksettings .kiwi-customserver-tls {
648
+ color: #bfbfbf;
649
+ }
650
+ .kiwi-networksettings .u-form{
651
+ border: 1px solid #14fdce;
652
+ }
653
+ .kiwi-networksettings .kiwi-customserver-tls {
654
+ color: #bfbfbf;
655
+ }
656
+ .kiwi-networksettings .kiwi-customserver-tls--enabled {
657
+ color: green;
658
+ }
659
+ .kiwi-networksettings .kiwi-customserver-tls--enabled .kiwi-customserver-tls-lock {
660
+ color: green;
661
+ }
662
+ .kiwi-networksettings .kiwi-customserver-tls-minus {
663
+ color: red;
664
+ }
665
+ .kiwi-networksettings-error {
666
+ border: 1px dashed #d86f6f;
667
+ }
668
+ .kiwi-networksettings .kiwi-connect-to-newnetwork {
669
+ background: #1b2f24;
670
+ color: #fff;
671
+ border: 1px solid #fff;
672
+ }
673
+ .kiwi-networksettings .kiwi-networksettings-server-types .kiwi-network-type-button {
674
+ border: 1px solid #1b2f24;
675
+ color: #fff;
676
+ }
677
+ .kiwi-networksettings .kiwi-networksettings-server-types .kiwi-network-type-button:hover,
678
+ .kiwi-networksettings .kiwi-networksettings-server-types .kiwi-network-type-button.kiwi-networksettings-server-type-active {
679
+ background: #1b2f24;
680
+ color: #fff;
681
+ text-decoration: underline;
682
+ }
683
+ .u-button.kiwi-channellist-refresh.u-button-secondary {
684
+ background: #1b2f24;
685
+ }
686
+
687
+ /* Buffer settings sidebar */
688
+ .kiwi-sidebar-buffersettings h3,
689
+ .kiwi-aboutbuffer h3 {
690
+ color: #fff;
691
+ opacity: 0.8;
692
+ }
693
+
694
+ .kiwi-sidebar-buffersettings hr {
695
+ opacity: 0.5;
696
+ margin-bottom: 20px;
697
+ }
698
+
699
+ /* Nicklist ( Nicklist.vue ) */
700
+ .kiwi-nicklist-usercount {
701
+ border-bottom: 1px solid #e4e4e44d;
702
+ }
703
+ .kiwi-nicklist-user {
704
+ border-left: 4px solid #192e24;
705
+ }
706
+ .kiwi-nicklist-user .kiwi-nicklist-user-nick {
707
+ color: #14fdce !important;
708
+ }
709
+ .kiwi-nicklist-messageuser {
710
+ color: #14fdce;
711
+ }
712
+ .kiwi-nicklist-user:hover {
713
+ border-left: 4px solid #14fdce;
714
+ }
715
+ .kiwi-nicklist-info i.fa-search {
716
+ color: #14fdce;
717
+ }
718
+
719
+ /* Not connected message ( NotConnected.vue ) */
720
+ .kiwi-notconnected {
721
+ color: #fff;
722
+ }
723
+ .kiwi-notconnected-button {
724
+ border: 2px solid #fff;
725
+ color: #fff;
726
+ }
727
+ .kiwi-notconnected-button:hover{
728
+ background-color: #fff;
729
+ color: #000;
730
+ }
731
+
732
+ /* Self User ( SelfUser.vue ) */
733
+ .kiwi-controlinput-selfuser {
734
+ background: #fff;
735
+ border: 1px solid #ddd;
736
+ border-left: none;
737
+ border-bottom: none;
738
+ }
739
+ .kiwi-selfuser-actions {
740
+ border-top: 1px solid #ddd;
741
+ }
742
+
743
+ /* Settings Aliases ( SettingsAliases.vue ) */
744
+ .kiwi-settings-aliases-input {
745
+ border-color: #ccc;
746
+ }
747
+ .kiwi-settings-aliases-showhelp {
748
+ display: block;
749
+ }
750
+ .kiwi-settings-aliases-help {
751
+ background: transparent;
752
+ border: 1px dashed rgba(0,0,0, 0.4);
753
+ }
754
+ .kiwi-settings-aliases-help em {
755
+ color: #fff;
756
+ font-weight: 900;
757
+ }
758
+
759
+ /* Sidebar ( Sidebar.vue ) */
760
+ .kiwi-sidebar-pin{
761
+ background: #5dd895;
762
+ color: #1b2f24;
763
+ }
764
+ .kiwi-sidebar-pin:hover{
765
+ background: #5dd895;
766
+ }
767
+
768
+ .kiwi-sidebar-options .kiwi-sidebar-close:hover {
769
+ background: #5cd894;
770
+ color: #1b2f24;
771
+ }
772
+ .kiwi-container--sidebar-open .kiwi-sidebar {
773
+ border-color: #b2b2b2;
774
+ }
775
+
776
+ .kiwi-aboutbuffer {
777
+ background: rgba(0, 0, 0, 0.03);
778
+ }
779
+
780
+ .kiwi-aboutbuffer-section {
781
+ color: #fff;
782
+ }
783
+ .kiwi-aboutbuffer-section a {
784
+ text-decoration: underline;
785
+ }
786
+
787
+ .kiwi-aboutbuffer h4 {
788
+ color: #fff;
789
+ border-top: 1px solid #00e3b5;
790
+ border-bottom: 1px solid #00e3b5;
791
+ color: #00ffca !important;
792
+ }
793
+
794
+ /* Channel Banlist ( Channelbanlist.vue ) */
795
+ .kiwi-channelbanlist-table tr {
796
+ border-bottom: 1px solid #ddd;
797
+ }
798
+ .kiwi-channelbanlist-table-actions:hover {
799
+ background-color: #b9424a;
800
+ }
801
+ .kiwi-channelbanlist-table-actions:hover i {
802
+ color: #fff;
803
+ }
804
+
805
+ /* Statebrowser - Left sidebar ( StateBrowser.vue ) */
806
+ .kiwi-statebrowser {
807
+ color: #fff;
808
+ border-right: 1px solid #033e32;
809
+ }
810
+ .kiwi-statebrowser-divider {
811
+ background: rgba(255, 255, 255, 0.3);
812
+ }
813
+
814
+ .kiwi-messageinfo {
815
+ border-bottom: 2px #14fdce solid;
816
+ border-top: 1px #14fdce solid;
817
+ }
818
+
819
+ .kiwi-statebrowser-usermenu-avatar:hover .kiwi-avatar-inner,
820
+ .kiwi-statebrowser-usermenu--open .kiwi-avatar-inner {
821
+ background-color: #5dd895 !important;
822
+ color: var(--brand-default-bg) !important;
823
+ }
824
+
825
+ .kiwi-statebrowser-usermenu-avatar--connected .kiwi-avatar-inner {
826
+ border-color: #42b992;
827
+ }
828
+
829
+ .kiwi-statebrowser-usermenu-avatar--disconnected .kiwi-avatar-inner {
830
+ border-color: #d86f6f;
831
+ }
832
+
833
+ .kiwi-statebrowser-usermenu-body .u-link {
834
+ color: #d86f6f;
835
+ }
836
+
837
+ /* If the user clicks on their avatar we 'open' the settings */
838
+ .kiwi-statebrowser-usermenu--open {
839
+ background: rgba(255, 255, 255, 0.1);
840
+ }
841
+ .kiwi-statebrowser-usermenu--open .kiwi-statebrowser-usermenu-avatars {
842
+ background-color: #1b2f24;
843
+ color: #fff;
844
+ }
845
+ .kiwi-statebrowser-network .kiwi-statebrowser-network-header a.kiwi-statebrowser-network-toggle:hover {
846
+ background-color: #d16c6c;
847
+ border-top-color: #d16c6c;
848
+ }
849
+
850
+ /* User Settings */
851
+ .kiwi-statebrowser-appsettings {
852
+ color: #14fdce;
853
+ }
854
+ .kiwi-statebrowser-appsettings:hover {
855
+ color: #fff;
856
+ opacity: 1;
857
+ }
858
+
859
+ /* Statebrowser list */
860
+ .kiwi-statebrowser-scrollarea {
861
+ border-bottom: 1px solid rgba(255, 255, 255, 0.3);
862
+ }
863
+ .kiwi-statebrowser-scrollarea h4,
864
+ .kiwi-statebrowser-scrollarea h4 {
865
+ border-top: 1px solid rgba(255, 255, 255, 0.3);
866
+ }
867
+ .kiwi-network-name-options {
868
+ background-color: #5dd895;
869
+ }
870
+ .kiwi-network-name-option:hover,
871
+ .kiwi-network-name-option.active {
872
+ background-color: #6efdb0;
873
+ color: #fff;
874
+ }
875
+ .kiwi-network-name-option-collapse {
876
+ background: #d16c6c;
877
+ }
878
+
879
+ /* Add channel input */
880
+ .kiwi-statebrowser-newchannel-inputwrap {
881
+ color: #fff;
882
+ }
883
+ .kiwi-statebrowser-newchannel-inputwrap input[type='text'] {
884
+ color: #000;
885
+ background: #fff;
886
+ }
887
+ .kiwi-statebrowser-newchannel-inputwrap--focus {
888
+ opacity: 1;
889
+ background-color: #fff;
890
+ }
891
+
892
+ /*Channel search input */
893
+ .kiwi-statebrowser-channelfilter {
894
+ transition: all 0.3s;
895
+ border-bottom: 1px solid rgba(255, 255, 255, 0.5);
896
+ color: #131312;
897
+ }
898
+
899
+ .kiwi-statebrowser-channelfilter p a {
900
+ color: #14fdce;
901
+ }
902
+
903
+ .kiwi-statebrowser-channelfilter::after {
904
+ color: #000;
905
+ }
906
+ .kiwi-statebrowser-channelfilter input {
907
+ background-color: #fff;
908
+ color: #000;
909
+ outline: none;
910
+ }
911
+ .kiwi-statebrowser-channelfilter p {
912
+ color: #1b2f24;
913
+ font-size: 0.9em;
914
+ margin: 10px 0 10px 0;
915
+ cursor: pointer;
916
+ transition: all 0.3s;
917
+ }
918
+ .kiwi-statebrowser-channelfilter p:hover {
919
+ color: #6dcdad;
920
+ }
921
+
922
+ .kiwi-statebrowser-newnetwork {
923
+ border-top: 1px solid #14fdce;
924
+ }
925
+
926
+ .kiwi-statebrowser-newnetwork a {
927
+ color: #14fdce;
928
+ }
929
+ .kiwi-statebrowser-newnetwork a:hover {
930
+ opacity: 1;
931
+ color: #14fdce;
932
+ text-decoration: underline;
933
+ }
934
+
935
+ .kiwi-statebrowser-network .kiwi-statebrowser-network-header {
936
+ background: #2d463b;
937
+ }
938
+
939
+ .kiwi-statebrowser-network--active .kiwi-statebrowser-network-header {
940
+ background: #11402a;
941
+ }
942
+ .kiwi-statebrowser-network .kiwi-statebrowser-network-header a {
943
+ color: #fff;
944
+ }
945
+
946
+
947
+ /* Channel Styling */
948
+ .kiwi-statebrowser-channels .kiwi-statebrowser-channel {
949
+ border-bottom: 1px solid #224030;
950
+ color: #fff;
951
+ }
952
+ .kiwi-statebrowser-channels .kiwi-statebrowser-channel .kiwi-statebrowser-channel-name {
953
+ color: #fff;
954
+ }
955
+ .kiwi-statebrowser-channels .kiwi-statebrowser-channel .kiwi-statebrowser-channel-name .kiwi-statebrowser-channel-label {
956
+ background: #3a9065;
957
+ color: #fff;
958
+ opacity: 1;
959
+ }
960
+ .kiwi-network-name-option-chanfilter.active{
961
+ background: #1b2f24;
962
+ }
963
+
964
+ /* New Channel Button */
965
+ .kiwi-statebrowser-newchannel a {
966
+ border: 1px solid rgba(255, 255, 255, 0.5);
967
+ }
968
+ .kiwi-statebrowser-newchannel a:hover {
969
+ background: #1b2f24;
970
+ opacity: 1;
971
+ color: #fff;
972
+ }
973
+
974
+ .kiwi-statebrowser-usermenu-body .close-icon {
975
+ background-color: #fc6262;
976
+ color: #fff;
977
+ }
978
+ .kiwi-statebrowser-usermenu-body .close-icon:hover {
979
+ background-color: #fe7575;
980
+ }
981
+
982
+ .kiwi-statebrowser-switcher a:first-of-type {
983
+ background: rgba(255, 255, 255, 0.15);
984
+ }
985
+ .kiwi-statebrowser-switcher a:hover {
986
+ background: rgba(255, 255, 255, 0.1);
987
+ }
988
+
989
+ .kiwi-statebrowser-options {
990
+ background: #383838;
991
+ }
992
+
993
+ .kiwi-statebrowser-channel-notjoined .kiwi-statebrowser-channel-name {
994
+ color: #d03232;
995
+ }
996
+ .kiwi-statebrowser-channel-active .kiwi-statebrowser-channel-name {
997
+ color: #df6b26;
998
+ }
999
+ .kiwi-statebrowser-channel-label--highlight {
1000
+ background: #d62323;
1001
+ }
1002
+ .kiwi-statebrowser-channel-popup {
1003
+ background: #383838;
1004
+ border: 3px solid #6b6b6b;
1005
+ border-left: none;
1006
+ }
1007
+ .kiwi-statebrowser-newchannel-inputwrap--focus {
1008
+ opacity: 1;
1009
+ }
1010
+
1011
+ .kiwi-statebrowser-channel-label--highlight {
1012
+ background: #d62323;
1013
+ }
1014
+
1015
+ .kiwi-statebrowser-channel-popup {
1016
+ background: #383838;
1017
+ border: 3px solid #6b6b6b;
1018
+ }
1019
+
1020
+ /* Statebrowser Network - ( StateBrowser.vue ) */
1021
+ .kiwi-statebrowser-network-header {
1022
+ background: rgba(255, 255, 255, 0.15);
1023
+ }
1024
+ .kiwi-statebrowser-network-status .u-link {
1025
+ color: #fff;
1026
+ }
1027
+ .kiwi-statebrowser-channel.kiwi-statebrowser-channel-active {
1028
+ border-left-color: #00ffca33;
1029
+ }
1030
+
1031
+ /* User Box Styling ( UserBox.vue ) */
1032
+ .kiwi-userbox-usermask {
1033
+ color: #5dd895;
1034
+ }
1035
+ .kiwi-userbox-opactions {
1036
+ border-top: 1px solid #9e9e9e;
1037
+ }
1038
+ .kiwi-userbox .main-title {
1039
+ border-bottom: 1px solid #9e9e9e;
1040
+ }
1041
+ .kiwi-userbox .kiwi-userbox-basicinfo {
1042
+ border-bottom: 1px solid #9e9e9e;
1043
+ }
1044
+ .kiwi-userbox .kiwi-userbox-actions .u-button {
1045
+ border: 1px solid #000;
1046
+ color: #000;
1047
+ }
1048
+ .kiwi-userbox .kiwi-userbox-actions .u-button:hover {
1049
+ background-color: #000;
1050
+ color: #fff;
1051
+ }
1052
+ .kiwi-userbox-opactions label select {
1053
+ border: 1px solid rgba(0, 0, 0, 0.2);
1054
+ }
1055
+
1056
+ .kiwi-userbox-opaction-kick ,
1057
+ .kiwi-userbox-opaction-ban,
1058
+ .kiwi-userbox-opaction-kickban {
1059
+ color: #fff;
1060
+ }
1061
+ .kiwi-userbox-opaction-kick {
1062
+ background-color: #f6c358;
1063
+ }
1064
+ .kiwi-userbox-opaction-kick:hover {
1065
+ background-color: #fcce6e;
1066
+ }
1067
+
1068
+ .kiwi-userbox-opaction-ban {
1069
+ background-color: #fcb46e;
1070
+ }
1071
+ .kiwi-userbox-opaction-ban:hover{
1072
+ background-color: #ffca97;
1073
+ }
1074
+
1075
+ .kiwi-userbox-opaction-kickban{
1076
+ background-color: #fb846a;
1077
+ }
1078
+ .kiwi-userbox-opaction-kickban:hover{
1079
+ background-color: #ffaf9e;
1080
+ }
1081
+
1082
+ .kiwi-userbox-actions .kiwi-userbox-action {
1083
+ color: #5dd895;
1084
+ border-color: #5dd895;
1085
+ }
1086
+
1087
+ .kiwi-userbox-actions .kiwi-userbox-action:hover {
1088
+ background: none;
1089
+ text-decoration: underline;
1090
+ }
1091
+
1092
+
1093
+ .kiwi-userbox-whois {
1094
+ border: 1px solid #9e9e9e;
1095
+ border-radius: 2px;
1096
+ }
1097
+ .kiwi-messagelist-message-whois {
1098
+ border-left-color: #939393;
1099
+ }
1100
+
1101
+ .kiwi-messagelist-message.kiwi-messagelist-message--hover,
1102
+ .kiwi-messagelist-message.kiwi-messagelist-message--highlight,
1103
+ .kiwi-messagelist-message.kiwi-messagelist-message-traffic--hover {
1104
+ position: relative;
1105
+ border-color: #c9c9c9;
1106
+ opacity: 1;
1107
+ }
1108
+
1109
+ /* MOTD */
1110
+ .kiwi-messagelist-message-motd {
1111
+ color: #666;
1112
+ }
1113
+
1114
+ /* Customer Server Styling */
1115
+ .kiwi-customserver {
1116
+ background-color: #1c2933;
1117
+ color: #fff;
1118
+ }
1119
+
1120
+ .kiwi-customserver-form {
1121
+ background-color: #151414;
1122
+ border: 1px solid #14fdce;
1123
+ }
1124
+
1125
+ .kiwi-customserver-form .u-input-text {
1126
+ background-color: #151414;
1127
+ }
1128
+
1129
+ .kiwi-customserver-form .u-input-text input {
1130
+ background-color: #151414;
1131
+ color: #fff;
1132
+ }
1133
+
1134
+ .kiwi-customserver .u-button {
1135
+ background-color: none;
1136
+ border: 1px solid #14fdce;
1137
+ color: #14fdce;
1138
+ }
1139
+
1140
+ .kiwi-customserver .u-link {
1141
+ color: #14fdce;
1142
+ text-decoration: underline;
1143
+ }
1144
+
1145
+ /* Buffer Key */
1146
+ .kiwi-bufferkey input[type='password'] {
1147
+ border: 1px solid #5dd895;
1148
+ color: #5dd895;
1149
+ }
1150
+
1151
+ .kiwi-bufferkey-button {
1152
+ border: 1px solid #5dd895;
1153
+ }
1154
+
1155
+ /*Icon before the network in network list */
1156
+ .kiwi-statebrowser-network-name::before {
1157
+ content: '\f233';
1158
+ font-family: fontAwesome;
1159
+ margin-right: 2px;
1160
+ font-weight: 100;
1161
+ text-decoration: none;
1162
+ }
1163
+
1164
+ /* Icons in the Channel List */
1165
+ .kiwi-statebrowser-channel[data-name^="*"]::before {
1166
+ content: '\f006';
1167
+ font-family: fontAwesome;
1168
+ }
1169
+
1170
+ .kiwi-statebrowser-channel[data-name="#help"]::before {
1171
+ content: '\f059';
1172
+ font-family: fontAwesome;
1173
+ }
1174
+
1175
+ /* U table line breaks */
1176
+ .u-table td {
1177
+ border-bottom: 1px solid #5dd895;
1178
+ }
1179
+
1180
+ .kiwi-settings-advanced-notice {
1181
+ color: #5dd895;
1182
+ border: 1px solid #5dd895;
1183
+ }
1184
+
1185
+ .kiwi-awaystatusindicator {
1186
+ border: 1px solid #e1e1e1;
1187
+ background-color: #5dd895;
1188
+ }
1189
+
1190
+ .kiwi-awaystatusindicator--away {
1191
+ background-color: #1b2f24;
1192
+ }
1193
+
1194
+ .kiwi-selfuser-error-message {
1195
+ background: #d16c6c;
1196
+ color: #fff;
1197
+ }
1198
+
1199
+ .kiwi-messagelist-message--own {
1200
+ background-color: #3dc37829;
1201
+ }
1202
+
1203
+ @media screen and (max-width: 769px) {
1204
+ .kiwi-appsettings {
1205
+ background-color: #294234;
1206
+ }
1207
+ }
1208
+
1209
+ .kiwi-messagelist::-webkit-scrollbar-thumb {
1210
+ background-color: #9e9e9e;
1211
+ }