serverless-ircd 0.5.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.
- package/.github/workflows/ci.yml +40 -3
- package/.github/workflows/deploy-aws.yml +1 -2
- package/.github/workflows/deploy-cf-tcp.yml +1 -5
- package/.github/workflows/deploy-cf.yml +1 -2
- package/.gitmodules +3 -0
- package/CHANGELOG.md +474 -0
- package/README.md +219 -22
- package/apps/aws-stack/README.md +33 -0
- package/apps/aws-stack/package.json +1 -1
- package/apps/aws-stack/src/aws-stack.ts +74 -9
- package/apps/aws-stack/tests/coverage-command.test.ts +155 -0
- package/apps/aws-stack/tests/stack.test.ts +2 -2
- package/apps/aws-stack/tests/synth-no-bundle.test.ts +129 -0
- package/apps/aws-stack/tests/vitest.setup.ts +18 -0
- package/apps/aws-stack/vitest.config.ts +3 -0
- package/apps/cf-tcp-container/package.json +1 -1
- package/apps/cf-tcp-container/src/config-loader.ts +6 -7
- package/apps/cf-tcp-container/src/container-server.ts +3 -0
- package/apps/cf-tcp-container/tests/config-loader.test.ts +10 -3
- package/apps/cf-tcp-container/wrangler.toml +1 -1
- package/apps/cf-worker/package.json +2 -1
- package/apps/cf-worker/src/origin-allowlist.ts +99 -0
- package/apps/cf-worker/src/worker.ts +89 -9
- package/apps/cf-worker/tests/fixtures/web-dist/app/index.html +18 -0
- package/apps/cf-worker/tests/fixtures/web-dist/index.html +18 -0
- package/apps/cf-worker/tests/origin-allowlist.test.ts +101 -0
- package/apps/cf-worker/tests/smoke.test.ts +28 -2
- package/apps/cf-worker/tests/ws-origin.test.ts +89 -0
- package/apps/cf-worker/vitest.config.ts +1 -1
- package/apps/cf-worker/wrangler.test.toml +23 -0
- package/apps/cf-worker/wrangler.toml +59 -3
- package/apps/local-cli/package.json +1 -1
- package/apps/local-cli/src/config-loader.ts +6 -6
- package/apps/local-cli/src/main.ts +20 -0
- package/apps/local-cli/src/server.ts +9 -7
- package/apps/local-cli/tests/e2e.test.ts +112 -28
- package/apps/local-cli/tests/tcp.test.ts +71 -19
- package/apps/local-cli/tests/ws-subprotocol.test.ts +12 -7
- package/apps/web/landing/index.html +217 -0
- package/apps/web/package.json +28 -0
- package/apps/web/scripts/build.mjs +125 -0
- package/apps/web/src/build-env.ts +43 -0
- package/apps/web/src/config-schema.ts +138 -0
- package/apps/web/static/config.json +28 -0
- package/apps/web/static/config.prod.json +28 -0
- package/apps/web/static/config.staging.json +28 -0
- package/apps/web/tests/build-env.test.ts +63 -0
- package/apps/web/tests/build-smoke.test.ts +103 -0
- package/apps/web/tests/config-schema.test.ts +432 -0
- package/apps/web/tests/workspace.test.ts +12 -0
- package/apps/web/tsconfig.json +10 -0
- package/apps/web/upstream/.browserslistrc +3 -0
- package/apps/web/upstream/.editorconfig +9 -0
- package/apps/web/upstream/.eslintignore +3 -0
- package/apps/web/upstream/.eslintrc.js +90 -0
- package/apps/web/upstream/.github/FUNDING.yml +12 -0
- package/apps/web/upstream/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/apps/web/upstream/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/apps/web/upstream/.github/workflows/push.yml +26 -0
- package/apps/web/upstream/.github/workflows/release.yml +33 -0
- package/apps/web/upstream/.github/workflows/release_manual.yml +55 -0
- package/apps/web/upstream/.prettierrc.js +9 -0
- package/apps/web/upstream/.stylelintignore +5 -0
- package/apps/web/upstream/.stylelintrc.js +21 -0
- package/apps/web/upstream/LICENSE +201 -0
- package/apps/web/upstream/README.md +76 -0
- package/apps/web/upstream/babel.config.js +25 -0
- package/apps/web/upstream/crowdin.yml +3 -0
- package/apps/web/upstream/index.html +35 -0
- package/apps/web/upstream/jest.config.js +7 -0
- package/apps/web/upstream/jsdoc.json +22 -0
- package/apps/web/upstream/package.json +80 -0
- package/apps/web/upstream/scripts/pre-commit +43 -0
- package/apps/web/upstream/src/components/App.vue +516 -0
- package/apps/web/upstream/src/components/AppSettings.vue +587 -0
- package/apps/web/upstream/src/components/AutoComplete.vue +284 -0
- package/apps/web/upstream/src/components/Avatar.vue +105 -0
- package/apps/web/upstream/src/components/AwayStatusIndicator.vue +77 -0
- package/apps/web/upstream/src/components/BufferKey.vue +121 -0
- package/apps/web/upstream/src/components/BufferSettings.vue +97 -0
- package/apps/web/upstream/src/components/Captcha.vue +85 -0
- package/apps/web/upstream/src/components/ChannelBanlist.vue +96 -0
- package/apps/web/upstream/src/components/ChannelInfo.vue +159 -0
- package/apps/web/upstream/src/components/ChannelInvitelist.vue +276 -0
- package/apps/web/upstream/src/components/ChannelList.vue +345 -0
- package/apps/web/upstream/src/components/Container.vue +401 -0
- package/apps/web/upstream/src/components/ContainerHeader.vue +522 -0
- package/apps/web/upstream/src/components/ControlInput.vue +1016 -0
- package/apps/web/upstream/src/components/LoadingAnimation.vue +104 -0
- package/apps/web/upstream/src/components/MediaViewer.vue +199 -0
- package/apps/web/upstream/src/components/MessageInfo.vue +192 -0
- package/apps/web/upstream/src/components/MessageList.vue +1028 -0
- package/apps/web/upstream/src/components/MessageListAvatar.vue +20 -0
- package/apps/web/upstream/src/components/MessageListMessageCompact.vue +361 -0
- package/apps/web/upstream/src/components/MessageListMessageInline.vue +257 -0
- package/apps/web/upstream/src/components/MessageListMessageModern.vue +430 -0
- package/apps/web/upstream/src/components/NetworkSettings.vue +528 -0
- package/apps/web/upstream/src/components/Nicklist.vue +309 -0
- package/apps/web/upstream/src/components/NicklistUser.vue +181 -0
- package/apps/web/upstream/src/components/NotConnected.vue +271 -0
- package/apps/web/upstream/src/components/SelfUser.vue +283 -0
- package/apps/web/upstream/src/components/ServerSelector.vue +162 -0
- package/apps/web/upstream/src/components/ServerView.vue +126 -0
- package/apps/web/upstream/src/components/SettingsAdvanced.vue +232 -0
- package/apps/web/upstream/src/components/SettingsAliases.vue +121 -0
- package/apps/web/upstream/src/components/Sidebar.vue +429 -0
- package/apps/web/upstream/src/components/SidebarAboutBuffer.vue +288 -0
- package/apps/web/upstream/src/components/SidebarState.vue +145 -0
- package/apps/web/upstream/src/components/StartupError.vue +35 -0
- package/apps/web/upstream/src/components/StateBrowser.vue +420 -0
- package/apps/web/upstream/src/components/StateBrowserBuffer.vue +124 -0
- package/apps/web/upstream/src/components/StateBrowserNetwork.vue +823 -0
- package/apps/web/upstream/src/components/StateBrowserUsermenu.vue +162 -0
- package/apps/web/upstream/src/components/TypingStatusIndicator.vue +34 -0
- package/apps/web/upstream/src/components/TypingUsersList.vue +56 -0
- package/apps/web/upstream/src/components/UrlEmbed.vue +149 -0
- package/apps/web/upstream/src/components/UserBox.vue +728 -0
- package/apps/web/upstream/src/components/inputtools/Emoji.vue +67 -0
- package/apps/web/upstream/src/components/inputtools/TextStyle.vue +142 -0
- package/apps/web/upstream/src/components/startups/CommonLayout.vue +208 -0
- package/apps/web/upstream/src/components/startups/CustomServer.vue +495 -0
- package/apps/web/upstream/src/components/startups/KiwiBnc.vue +361 -0
- package/apps/web/upstream/src/components/startups/Personal.vue +317 -0
- package/apps/web/upstream/src/components/startups/Welcome.vue +544 -0
- package/apps/web/upstream/src/components/startups/ZncLogin.vue +229 -0
- package/apps/web/upstream/src/components/utils/InputConfirm.vue +68 -0
- package/apps/web/upstream/src/components/utils/InputPrompt.vue +118 -0
- package/apps/web/upstream/src/components/utils/InputText.vue +172 -0
- package/apps/web/upstream/src/components/utils/IrcInput.vue +579 -0
- package/apps/web/upstream/src/components/utils/PluginWrapper.vue +26 -0
- package/apps/web/upstream/src/components/utils/TabbedView.vue +149 -0
- package/apps/web/upstream/src/components/utils/TransitionExpand.vue +97 -0
- package/apps/web/upstream/src/helpers/Colours.js +128 -0
- package/apps/web/upstream/src/helpers/IrcdDiffs.js +26 -0
- package/apps/web/upstream/src/helpers/Md5.js +193 -0
- package/apps/web/upstream/src/helpers/Misc.js +401 -0
- package/apps/web/upstream/src/helpers/TextFormatting.js +237 -0
- package/apps/web/upstream/src/libs/AliasRewriter.js +157 -0
- package/apps/web/upstream/src/libs/AudioManager.js +60 -0
- package/apps/web/upstream/src/libs/BouncerMiddleware.js +247 -0
- package/apps/web/upstream/src/libs/BouncerProvider.js +551 -0
- package/apps/web/upstream/src/libs/ChathistoryMiddleware.js +153 -0
- package/apps/web/upstream/src/libs/ConfigLoader.js +94 -0
- package/apps/web/upstream/src/libs/EmojiProvider.js +46 -0
- package/apps/web/upstream/src/libs/GlobalApi.js +346 -0
- package/apps/web/upstream/src/libs/IPC.js +51 -0
- package/apps/web/upstream/src/libs/InputHandler.js +921 -0
- package/apps/web/upstream/src/libs/IrcClient.js +1506 -0
- package/apps/web/upstream/src/libs/Logger.js +71 -0
- package/apps/web/upstream/src/libs/Message.js +169 -0
- package/apps/web/upstream/src/libs/MessageFormatter.js +364 -0
- package/apps/web/upstream/src/libs/MessageParser.js +249 -0
- package/apps/web/upstream/src/libs/Notifications.js +78 -0
- package/apps/web/upstream/src/libs/ServerConnection.js +270 -0
- package/apps/web/upstream/src/libs/ServerSession.js +102 -0
- package/apps/web/upstream/src/libs/SoundBleep.js +20 -0
- package/apps/web/upstream/src/libs/StatePersistence.js +90 -0
- package/apps/web/upstream/src/libs/ThemeManager.js +128 -0
- package/apps/web/upstream/src/libs/TypingMiddleware.js +105 -0
- package/apps/web/upstream/src/libs/WindowTitle.js +63 -0
- package/apps/web/upstream/src/libs/batchedAdd.js +74 -0
- package/apps/web/upstream/src/libs/bufferTools.js +177 -0
- package/apps/web/upstream/src/libs/polyfill/Element.closest.js +18 -0
- package/apps/web/upstream/src/libs/renderers/Html.js +113 -0
- package/apps/web/upstream/src/libs/settingTools.js +31 -0
- package/apps/web/upstream/src/libs/state/BufferState.js +703 -0
- package/apps/web/upstream/src/libs/state/NetworkState.js +158 -0
- package/apps/web/upstream/src/libs/state/UserState.js +89 -0
- package/apps/web/upstream/src/libs/state/common.js +26 -0
- package/apps/web/upstream/src/libs/state.js +961 -0
- package/apps/web/upstream/src/libs/storage/Local.js +51 -0
- package/apps/web/upstream/src/main.js +566 -0
- package/apps/web/upstream/src/res/autocompleteCommands.js +31 -0
- package/apps/web/upstream/src/res/configTemplates.js +373 -0
- package/apps/web/upstream/src/res/globalStyle.css +277 -0
- package/apps/web/upstream/src/res/kiwiLoadingLogo.png +0 -0
- package/apps/web/upstream/src/res/locales/app.af-ZA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ar-SA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.bg-BG.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.bs-BA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ca-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.cs-CZ.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.da-DK.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.de-DE.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.dev.po +1246 -0
- package/apps/web/upstream/src/res/locales/app.el-GR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.en-US.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-419.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-AR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-EM.po +536 -0
- package/apps/web/upstream/src/res/locales/app.es-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-US.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.eu-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.fi-FI.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.fr-FR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.gl-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.he-IL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.hi-IN.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.hu-HU.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.id-ID.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.it-IT.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ja-JP.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ko-KR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.nl-NL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.no-NO.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.pl-PL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.pt-BR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.pt-PT.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ro-RO.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ru-RU.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sl-SI.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sq-AL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sr-SP.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sv-SE.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.tr-TR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.uk-UA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.vi-VN.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.zh-CN.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.zh-TW.po +1145 -0
- package/apps/web/upstream/src/res/localesList.json +27 -0
- package/apps/web/upstream/src/res/logo.png +0 -0
- package/apps/web/upstream/src/thirdparty/about.html +43 -0
- package/apps/web/upstream/src/thirdparty/index.js +5 -0
- package/apps/web/upstream/src/thirdparty/kiwiirccom.vue +185 -0
- package/apps/web/upstream/static/config.json +28 -0
- package/apps/web/upstream/static/emoticons/smile.png +0 -0
- package/apps/web/upstream/static/favicon.png +0 -0
- package/apps/web/upstream/static/highlight.mp3 +0 -0
- package/apps/web/upstream/static/highlight.ogg +0 -0
- package/apps/web/upstream/static/locales/.gitignore +2 -0
- package/apps/web/upstream/static/plugins/customise.html.example +10 -0
- package/apps/web/upstream/static/themes/coffee/theme.css +145 -0
- package/apps/web/upstream/static/themes/common/base.css +1064 -0
- package/apps/web/upstream/static/themes/dark/theme.css +196 -0
- package/apps/web/upstream/static/themes/default/theme.css +92 -0
- package/apps/web/upstream/static/themes/elite/theme.css +248 -0
- package/apps/web/upstream/static/themes/grayfox/theme.css +143 -0
- package/apps/web/upstream/static/themes/nightswatch/theme.css +367 -0
- package/apps/web/upstream/static/themes/osprey/theme.css +115 -0
- package/apps/web/upstream/static/themes/radioactive/theme.css +1211 -0
- package/apps/web/upstream/static/themes/sky/theme.css +107 -0
- package/apps/web/upstream/tests/unit/BatchAdd.spec.js +174 -0
- package/apps/web/upstream/tests/unit/MessageParser.spec.js +125 -0
- package/apps/web/upstream/tests/unit/Misc.spec.js +24 -0
- package/apps/web/upstream/tests/unit/NetworkState.spec.js +58 -0
- package/apps/web/upstream/tests/unit/StartupError.spec.js +20 -0
- package/apps/web/upstream/vue.config.js +150 -0
- package/apps/web/upstream/yarn.lock +9767 -0
- package/apps/web/vitest.config.ts +13 -0
- package/biome.json +2 -0
- package/docs/ADR-001-pure-reducers-and-effect-system.md +74 -0
- package/docs/ADR-002-location-of-authority.md +82 -0
- package/docs/ADR-003-durable-object-sharding.md +110 -0
- package/docs/ADR-004-dynamodb-schema.md +96 -0
- package/docs/ADR-005-wss-only-transport-v1.md +83 -0
- package/docs/ADR-006-sasl-mechanism-scope.md +96 -0
- package/docs/ADR-007-deterministic-ports.md +82 -0
- package/docs/ADR-008-monorepo-tooling.md +60 -0
- package/docs/ADR-009-dual-transport-wss-and-irc-tls.md +138 -0
- package/docs/ADR-Index.md +15 -0
- package/docs/AWS-Adapter-Architecture.md +496 -0
- package/docs/AWS-Deployment.md +1275 -0
- package/docs/AWS-TCP-Deployment.md +410 -0
- package/docs/Cloudflare-Deployment-Guide.md +719 -0
- package/docs/Cloudflare-TCP-Deployment.md +510 -0
- package/docs/Home.md +16 -0
- package/docs/Observability.md +87 -0
- package/docs/PlanExtensions.md +812 -0
- package/docs/PlanIRCv3Websocket.md +503 -0
- package/docs/PlanWebClient.md +451 -0
- package/docs/Release-Process.md +443 -0
- package/docs/WebClientGuide.md +535 -0
- package/package.json +2 -2
- package/packages/aws-adapter/package.json +1 -1
- package/packages/aws-adapter/src/handlers/default.ts +3 -0
- package/packages/aws-adapter/src/handlers/nlb-stream.ts +9 -0
- package/packages/aws-adapter/src/serialize.ts +29 -1
- package/packages/aws-adapter/tests/account-store-dynamo.test.ts +49 -8
- package/packages/aws-adapter/tests/account-store.test.ts +4 -7
- package/packages/aws-adapter/tests/aws-harness.ts +5 -2
- package/packages/aws-adapter/tests/aws-integration.test.ts +8 -4
- package/packages/aws-adapter/tests/aws-runtime.test.ts +79 -0
- package/packages/aws-adapter/tests/config-loader.test.ts +11 -2
- package/packages/aws-adapter/tests/connect.test.ts +9 -9
- package/packages/aws-adapter/tests/disconnect-fanout.test.ts +3 -4
- package/packages/aws-adapter/tests/global-setup.ts +55 -30
- package/packages/aws-adapter/tests/gone-exception.test.ts +4 -9
- package/packages/aws-adapter/tests/handlers.test.ts +90 -4
- package/packages/aws-adapter/tests/message-store.test.ts +6 -5
- package/packages/aws-adapter/tests/nlb-stream.test.ts +60 -8
- package/packages/cf-adapter/package.json +2 -1
- package/packages/cf-adapter/src/connection-do.ts +3 -0
- package/packages/cf-adapter/src/serialize.ts +25 -4
- package/packages/cf-adapter/tests/cf-harness.ts +12 -1
- package/packages/cf-adapter/tests/cf-runtime.test.ts +269 -0
- package/packages/cf-adapter/tests/channel-do.test.ts +117 -0
- package/packages/cf-adapter/tests/config-loader.test.ts +49 -0
- package/packages/cf-adapter/tests/connection-do-pure.test.ts +91 -0
- package/packages/cf-adapter/tests/d1-account-store.test.ts +48 -0
- package/packages/cf-adapter/tests/registry-do.test.ts +104 -0
- package/packages/cf-adapter/tests/serialize.test.ts +308 -0
- package/packages/cf-adapter/vitest.config.ts +1 -1
- package/packages/in-memory-runtime/package.json +1 -1
- package/packages/irc-core/package.json +1 -1
- package/packages/irc-core/reports/mutation/mutation.html +342 -0
- package/packages/irc-core/src/caps/capabilities.ts +37 -3
- package/packages/irc-core/src/caps/index.ts +1 -0
- package/packages/irc-core/src/caps/sts.ts +84 -0
- package/packages/irc-core/src/commands/account-notify.ts +53 -0
- package/packages/irc-core/src/commands/away.ts +9 -3
- package/packages/irc-core/src/commands/cap.ts +23 -5
- package/packages/irc-core/src/commands/chathistory.ts +40 -11
- package/packages/irc-core/src/commands/index.ts +34 -0
- package/packages/irc-core/src/commands/isupport.ts +53 -0
- package/packages/irc-core/src/commands/mode.ts +8 -1
- package/packages/irc-core/src/commands/monitor.ts +327 -0
- package/packages/irc-core/src/commands/multiline.ts +256 -0
- package/packages/irc-core/src/commands/pre-away.ts +112 -0
- package/packages/irc-core/src/commands/privmsg.ts +19 -12
- package/packages/irc-core/src/commands/read-marker.ts +108 -0
- package/packages/irc-core/src/commands/registration.ts +8 -0
- package/packages/irc-core/src/commands/sasl.ts +24 -1
- package/packages/irc-core/src/commands/tagmsg.ts +71 -1
- package/packages/irc-core/src/commands/whois.ts +5 -0
- package/packages/irc-core/src/config.ts +65 -10
- package/packages/irc-core/src/effects.ts +14 -0
- package/packages/irc-core/src/ports.ts +389 -0
- package/packages/irc-core/src/protocol/index.ts +14 -0
- package/packages/irc-core/src/protocol/labeled-response.ts +133 -0
- package/packages/irc-core/src/protocol/numerics.ts +15 -0
- package/packages/irc-core/src/protocol/outbound.ts +16 -1
- package/packages/irc-core/src/protocol/standard-replies.ts +277 -0
- package/packages/irc-core/src/state/connection.ts +32 -1
- package/packages/irc-core/src/types.ts +112 -0
- package/packages/irc-core/stryker.commands.conf.json +1 -2
- package/packages/irc-core/tests/away-store.test.ts +73 -0
- package/packages/irc-core/tests/batch.test.ts +15 -0
- package/packages/irc-core/tests/caps/capabilities.test.ts +119 -2
- package/packages/irc-core/tests/caps/sts.test.ts +123 -0
- package/packages/irc-core/tests/commands/account-notify.test.ts +171 -0
- package/packages/irc-core/tests/commands/away.test.ts +85 -2
- package/packages/irc-core/tests/commands/cap.test.ts +165 -0
- package/packages/irc-core/tests/commands/chathistory.test.ts +148 -1
- package/packages/irc-core/tests/commands/echo-message.test.ts +9 -3
- package/packages/irc-core/tests/commands/isupport.test.ts +80 -0
- package/packages/irc-core/tests/commands/mode.test.ts +72 -0
- package/packages/irc-core/tests/commands/monitor.test.ts +411 -0
- package/packages/irc-core/tests/commands/multiline.test.ts +428 -0
- package/packages/irc-core/tests/commands/pre-away.test.ts +241 -0
- package/packages/irc-core/tests/commands/privmsg.test.ts +154 -3
- package/packages/irc-core/tests/commands/read-marker.test.ts +211 -0
- package/packages/irc-core/tests/commands/registration.test.ts +64 -0
- package/packages/irc-core/tests/commands/sasl.test.ts +116 -2
- package/packages/irc-core/tests/commands/tagmsg.test.ts +357 -0
- package/packages/irc-core/tests/commands/whois.test.ts +34 -0
- package/packages/irc-core/tests/config.test.ts +103 -13
- package/packages/irc-core/tests/labeled-response.test.ts +181 -0
- package/packages/irc-core/tests/message-tags.test.ts +114 -0
- package/packages/irc-core/tests/monitor-store.test.ts +200 -0
- package/packages/irc-core/tests/numerics.test.ts +13 -0
- package/packages/irc-core/tests/parser.test.ts +109 -0
- package/packages/irc-core/tests/read-marker-store.test.ts +108 -0
- package/packages/irc-core/tests/standard-replies.test.ts +412 -0
- package/packages/irc-core/tests/types.test.ts +27 -0
- package/packages/irc-server/package.json +1 -1
- package/packages/irc-server/src/actor.ts +450 -3
- package/packages/irc-server/src/dispatch.ts +108 -16
- package/packages/irc-server/tests/actor.test.ts +1432 -39
- package/packages/irc-server/tests/dispatch.test.ts +263 -2
- package/packages/irc-test-support/package.json +1 -1
- package/packages/irc-test-support/src/index.ts +6 -0
- package/packages/irc-test-support/src/scenarios.ts +24 -2
- package/packages/irc-test-support/src/test-config.ts +54 -0
- package/packages/irc-test-support/tests/test-config.test.ts +51 -0
- package/tools/ci-hardening/package.json +1 -1
- package/tools/ci-hardening/tests/ddb-local.test.ts +82 -0
- package/tools/load-test/package.json +33 -0
- package/tools/load-test/src/client.ts +351 -0
- package/tools/load-test/src/config.ts +313 -0
- package/tools/load-test/src/harness.ts +116 -0
- package/tools/load-test/src/main.ts +120 -0
- package/tools/load-test/src/metrics.ts +168 -0
- package/tools/load-test/src/report.ts +106 -0
- package/tools/load-test/tests/client.test.ts +212 -0
- package/tools/load-test/tests/config.test.ts +152 -0
- package/tools/load-test/tests/framing.test.ts +37 -0
- package/tools/load-test/tests/harness.test.ts +165 -0
- package/tools/load-test/tests/metrics.test.ts +174 -0
- package/tools/load-test/tests/report.test.ts +161 -0
- package/tools/load-test/tests/smoke.test.ts +67 -0
- package/tools/load-test/tsconfig.build.json +12 -0
- package/tools/load-test/tsconfig.test.json +10 -0
- package/tools/load-test/vitest.config.ts +29 -0
- package/tools/tcp-ws-forwarder/package.json +1 -1
|
@@ -0,0 +1,1064 @@
|
|
|
1
|
+
/* ---- Welcome Screens ----- */
|
|
2
|
+
.kiwi-customserver-form {
|
|
3
|
+
background-color: var(--brand-default-bg);
|
|
4
|
+
border: 1px solid var(--brand-midtone);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.kiwi-welcome-simple-error {
|
|
8
|
+
border: 1px dashed var(--brand-error);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.kiwi-welcome-simple-form .u-submit {
|
|
12
|
+
background-color: var(--brand-primary);
|
|
13
|
+
color: var(--brand-default-bg);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.kiwi-welcome-simple .help,
|
|
17
|
+
.kiwi-welcome-simple .help a {
|
|
18
|
+
color: var(--brand-default-fg);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.kiwi-welcome-simple .help a:hover {
|
|
22
|
+
color: var(--brand-primary-hover);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.kiwi-welcome-invalid-nick.u-input-text input.u-input {
|
|
26
|
+
border-color: var(--brand-error);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* ---- Gloabl Styling ---- */
|
|
30
|
+
.kiwi-theme-bg {
|
|
31
|
+
background-color: var(--brand-default-bg);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.u-tabbed-content {
|
|
35
|
+
background-color: var(--brand-default-bg);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.u-tabbed-view-tabs {
|
|
39
|
+
background: var(--brand-midtone);
|
|
40
|
+
border-bottom: 3px solid var(--brand-midtone);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.u-tabbed-view-tabs .u-tabbed-view-tab {
|
|
44
|
+
border-bottom-color: var(--brand-midtone);
|
|
45
|
+
background: var(--brand-default-bg);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.u-tabbed-view-tabs .u-tabbed-view-tab:hover,
|
|
49
|
+
.u-tabbed-view-tabs .u-tabbed-view-tab.u-tabbed-view-tab--active {
|
|
50
|
+
border-bottom-color: var(--brand-primary);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/* ---- Global : User inputs ---- */
|
|
54
|
+
.u-input-text {
|
|
55
|
+
background: var(--brand-default-bg);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.u-form label {
|
|
59
|
+
color: var(--brand-default-fg);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.u-input-text input:focus {
|
|
63
|
+
border-color: var(--brand-primary);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.u-form .u-input,
|
|
67
|
+
.u-form textarea {
|
|
68
|
+
outline: none;
|
|
69
|
+
border-color: var(--brand-input-border);
|
|
70
|
+
color: var(--brand-input-fg);
|
|
71
|
+
background: var(--brand-input-bg);
|
|
72
|
+
transition: border-color 0.1s;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.u-form .u-input:focus,
|
|
76
|
+
.u-form textarea:focus {
|
|
77
|
+
border-color: var(--brand-primary);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.u-form label input[type='text'],
|
|
81
|
+
.u-form label input[type='password'],
|
|
82
|
+
.u-form label input[type='email'],
|
|
83
|
+
.u-form textarea {
|
|
84
|
+
border-color: var(--brand-primary);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
::-webkit-input-placeholder,
|
|
88
|
+
::-moz-placeholder,
|
|
89
|
+
::-ms-placeholder,
|
|
90
|
+
::placeholder {
|
|
91
|
+
color: black;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* ---- Global : Checkbox input ---- */
|
|
95
|
+
.u-form input[type='checkbox'],
|
|
96
|
+
.u-form input[type='radio'] {
|
|
97
|
+
border-color: var(--brand-input-border);
|
|
98
|
+
background-color: var(--brand-default-bg);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.u-form input[type='checkbox']:checked,
|
|
102
|
+
.u-form input[type='radio']:checked {
|
|
103
|
+
background: var(--brand-primary);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/* ---- Global : Buttons ---- */
|
|
107
|
+
.u-button-primary {
|
|
108
|
+
background-color: var(--brand-primary);
|
|
109
|
+
color: var(--brand-default-bg);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.u-button-primary:hover {
|
|
113
|
+
background-color: var(--brand-primary-hover);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.u-button-secondary {
|
|
117
|
+
background: rgba(117, 117, 117, 0.07);
|
|
118
|
+
border-bottom: 1px solid rgba(117, 117, 117, 0.2);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.u-button-warning {
|
|
122
|
+
background-color: var(--brand-error);
|
|
123
|
+
color: var(--brand-default-bg);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/* ---- Global : Links / anchors etc ---- */
|
|
127
|
+
.u-link {
|
|
128
|
+
color: var(--brand-primary);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/* ---- Container Header ( containerHeader ) ---- */
|
|
132
|
+
.kiwi-header {
|
|
133
|
+
background: var(--comp-header-bg);
|
|
134
|
+
border-bottom-color: var(--comp-border);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.kiwi-header-name-container {
|
|
138
|
+
color: var(--comp-header-name-fg);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.kiwi-header-name,
|
|
142
|
+
.kiwi-header-name-full {
|
|
143
|
+
background-color: var(--comp-header-bg);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.kiwi-header-topic:hover {
|
|
147
|
+
background-color: var(--comp-header-bg);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.kiwi-header-option a:hover,
|
|
151
|
+
.kiwi-header-option--active,
|
|
152
|
+
.kiwi-header-option--active:hover a {
|
|
153
|
+
background-color: var(--comp-header-option-active-bg);
|
|
154
|
+
color: var(--comp-header-option-active-fg);
|
|
155
|
+
opacity: 1;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.kiwi-header-option--active,
|
|
159
|
+
.kiwi-header-option-active a {
|
|
160
|
+
opacity: 1;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.kiwi-header-join-channel-button {
|
|
164
|
+
background-color: var(--brand-primary);
|
|
165
|
+
color: var(--brand-default-bg);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.kiwi-header .kiwi-header-notjoined .u-link {
|
|
169
|
+
background-color: var(--brand-primary);
|
|
170
|
+
color: var(--brand-default-bg);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.kiwi-header .kiwi-header-notjoined .u-link:hover {
|
|
174
|
+
background-color: var(--brand-primary-hover);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.kiwi-header-server-connection .u-button {
|
|
178
|
+
background: var(--brand-primary);
|
|
179
|
+
color: var(--brand-default-bg);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* End of Container Header ( containerHeader ) */
|
|
183
|
+
|
|
184
|
+
/* ---- Control Input ( controlInput ) ---- */
|
|
185
|
+
.kiwi-controlinput {
|
|
186
|
+
background: var(--brand-default-bg);
|
|
187
|
+
border-top-color: var(--comp-border);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.kiwi-controlinput-button {
|
|
191
|
+
background-color: var(--brand-default-bg);
|
|
192
|
+
border: 2px solid var(--brand-default-bg);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.kiwi-controlinput-button:hover,
|
|
196
|
+
.kiwi-controlinput-tools,
|
|
197
|
+
.kiwi-controlinput-tools-container,
|
|
198
|
+
.kiwi-controlinput-send {
|
|
199
|
+
color: var(--brand-default-fg);
|
|
200
|
+
background-color: var(--brand-midtone);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.kiwi-controlinput-active-tool {
|
|
204
|
+
background: #f6f6f6;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/* ---- Self User ( SelfUser.vue ) ---- */
|
|
208
|
+
.kiwi-controlinput-selfuser {
|
|
209
|
+
background: var(--brand-default-bg);
|
|
210
|
+
border-color: var(--comp-border);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.kiwi-controlinput--selfuser-open .kiwi-controlinput-selfuser {
|
|
214
|
+
border: 1px solid var(--brand-midtone);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/* ---- Auto complete ( autoComplete ) ---- */
|
|
218
|
+
.kiwi-autocomplete {
|
|
219
|
+
box-shadow: 0 1px 15px rgba(64, 54, 63, 0.25);
|
|
220
|
+
border: 1px solid var(--brand-midtone);
|
|
221
|
+
background: var(--brand-default-bg);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.kiwi-autocomplete-item {
|
|
225
|
+
border-bottom: 1px solid var(--brand-midtone);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.kiwi-autocomplete-item--selected {
|
|
229
|
+
background: var(--brand-primary);
|
|
230
|
+
color: var(--brand-default-bg);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.kiwi-autocomplete-item--selected .u-link {
|
|
234
|
+
color: var(--brand-default-bg);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/* ---- Sidebar ( Sidebar ) ---- */
|
|
238
|
+
.kiwi-sidebar {
|
|
239
|
+
background-color: var(--comp-sidebar-bg);
|
|
240
|
+
color: var(--comp-sidebar-fg);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.kiwi-sidebar-options {
|
|
244
|
+
background-color: var(--brand-primary);
|
|
245
|
+
color: var(--brand-default-bg);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.kiwi-sidebar-pin {
|
|
249
|
+
border-right: 1px solid var(--brand-default-bg);
|
|
250
|
+
background: var(--brand-primary);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.kiwi-sidebar-pin:hover {
|
|
254
|
+
background: #62d0ac;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.kiwi-sidebar-options .kiwi-sidebar-close:hover {
|
|
258
|
+
background: var(--brand-error);
|
|
259
|
+
color: var(--brand-default-bg);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.kiwi-container--sidebar-open .kiwi-sidebar {
|
|
263
|
+
border-color: var(--comp-border);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.kiwi-aboutbuffer {
|
|
267
|
+
background: var(--comp-aboutbuffer-bg);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.kiwi-aboutbuffer h3 {
|
|
271
|
+
background: var(--brand-default-bg);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.kiwi-aboutbuffer h4 {
|
|
275
|
+
background-color: var(--comp-aboutbuffer-header-bg);
|
|
276
|
+
color: var(--brand-default-bg);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/* ---- Sidebar - Nicklist ---- */
|
|
280
|
+
.kiwi-nicklist-usercount {
|
|
281
|
+
border-bottom-color: var(--brand-midtone);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.kiwi-nicklist-user {
|
|
285
|
+
border-left-color: var(--brand-default-bg);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.kiwi-nicklist-user:hover {
|
|
289
|
+
border-left-color: var(--brand-primary);
|
|
290
|
+
cursor: pointer;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.kiwi-nicklist-user:hover .kiwi-nicklist-messageuser {
|
|
294
|
+
color: var(--brand-default-fg);
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.kiwi-nicklist-user::after {
|
|
298
|
+
color: var(--brand-midtone);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.kiwi-nicklist-messageuser {
|
|
302
|
+
color: var(--brand-default-bg);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.kiwi-nicklist-info i.fa-search {
|
|
306
|
+
color: var(--brand-midtone);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
/* ---- Sidebar - userbox ---- */
|
|
310
|
+
.kiwi-userbox .main-title,
|
|
311
|
+
.kiwi-userbox .kiwi-userbox-basicinfo {
|
|
312
|
+
border-bottom: 1px solid var(--brand-midtone);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.kiwi-userbox .kiwi-userbox-actions .kiwi-userbox-action {
|
|
316
|
+
border: 1px solid var(--brand-default-fg);
|
|
317
|
+
color: var(--brand-default-fg);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.kiwi-userbox .kiwi-userbox-actions .kiwi-userbox-action:hover {
|
|
321
|
+
background-color: var(--brand-default-fg);
|
|
322
|
+
color: var(--brand-default-bg);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.kiwi-userbox-opactions {
|
|
326
|
+
border-top: 1px solid var(--brand-midtone);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.kiwi-userbox-opactions label select {
|
|
330
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.kiwi-userbox-opaction-kick,
|
|
334
|
+
.kiwi-userbox-opaction-ban,
|
|
335
|
+
.kiwi-userbox-opaction-kickban {
|
|
336
|
+
color: var(--brand-default-bg);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.kiwi-userbox-opaction-kick,
|
|
340
|
+
.kiwi-userbox-opaction-kick:hover {
|
|
341
|
+
background-color: var(--brand-notice);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.kiwi-userbox-opaction-ban,
|
|
345
|
+
.kiwi-userbox-opaction-ban:hover {
|
|
346
|
+
background-color: var(--brand-warning);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.kiwi-userbox-opaction-kickban,
|
|
350
|
+
.kiwi-userbox-opaction-kickban:hover {
|
|
351
|
+
background-color: var(--brand-error);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.kiwi-userbox-whois {
|
|
355
|
+
border: 1px solid var(--brand-midtone);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/* ---- State browser ( statebrowser) ---- */
|
|
359
|
+
|
|
360
|
+
/* Statebrowser - Left sidebar ( StateBrowser.vue ) */
|
|
361
|
+
.kiwi-statebrowser {
|
|
362
|
+
background: var(--comp-statebrowser-bg);
|
|
363
|
+
color: var(--comp-statebrowser-fg);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.kiwi-statebrowser-usermenu--open {
|
|
367
|
+
background-color: var(--comp-usermenu-open-bg);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.kiwi-statebrowser-usermenu-body .u-link {
|
|
371
|
+
color: var(--brand-error);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.kiwi-statebrowser-usermenu-close {
|
|
375
|
+
background-color: var(--brand-error);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.kiwi-statebrowser-usermenu-close:hover {
|
|
379
|
+
opacity: 1;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.kiwi-statebrowser-divider {
|
|
383
|
+
background: rgba(255, 255, 255, 0.3);
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
/* Add channel input */
|
|
387
|
+
.kiwi-statebrowser-newchannel-inputwrap {
|
|
388
|
+
color: var(--brand-default-bg);
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.kiwi-statebrowser-newchannel-inputwrap input[type='text'] {
|
|
392
|
+
color: var(--comp-statebrowser-bg);
|
|
393
|
+
background: var(--brand-default-bg);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.kiwi-statebrowser-newchannel-inputwrap--focus {
|
|
397
|
+
opacity: 1;
|
|
398
|
+
background-color: var(--brand-default-bg);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/* Channel search input */
|
|
402
|
+
.kiwi-statebrowser-channelfilter {
|
|
403
|
+
transition: all 0.3s;
|
|
404
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
|
|
405
|
+
color: var(--brand-default-bg);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.kiwi-statebrowser-channelfilter::after {
|
|
409
|
+
color: var(--comp-statebrowser-fg);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.kiwi-statebrowser-channelfilter input {
|
|
413
|
+
background-color: var(--brand-default-bg);
|
|
414
|
+
color: var(--brand-default-fg);
|
|
415
|
+
outline: none;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.kiwi-statebrowser-channelfilter p {
|
|
419
|
+
color: var(--brand-primary);
|
|
420
|
+
font-size: 0.9em;
|
|
421
|
+
margin: 10px 0 10px 0;
|
|
422
|
+
cursor: pointer;
|
|
423
|
+
transition: all 0.3s;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.kiwi-statebrowser-channelfilter p:hover {
|
|
427
|
+
color: var(--brand-primary-hover);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.kiwi-statebrowser-newnetwork {
|
|
431
|
+
border-top-color: var(--comp-statebrowser-network-border);
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.kiwi-statebrowser-newnetwork a {
|
|
435
|
+
color: var(--brand-default-bg);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.kiwi-statebrowser-newnetwork a:hover {
|
|
439
|
+
background: var(--brand-primary);
|
|
440
|
+
opacity: 1;
|
|
441
|
+
color: var(--comp-statebrowser-fg);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.kiwi-statebrowser-network .kiwi-statebrowser-network-header {
|
|
445
|
+
background-color: var(--comp-statebrowser-bg-networkname);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.kiwi-statebrowser-network .kiwi-statebrowser-network-header a {
|
|
449
|
+
color: var(--comp-statebrowser-fg);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
/* Active Network Styling */
|
|
453
|
+
.kiwi-statebrowser-network.kiwi-statebrowser-network--active .kiwi-statebrowser-network-header {
|
|
454
|
+
border-left: 3px solid var(--brand-primary);
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
/* Channel Styling */
|
|
458
|
+
.kiwi-statebrowser-channels .kiwi-statebrowser-channel {
|
|
459
|
+
border-bottom: 1px solid var(--brand-shadow);
|
|
460
|
+
color: var(--comp-statebrowser-fg);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.kiwi-statebrowser-channel .kiwi-statebrowser-channel-name {
|
|
464
|
+
color: var(--comp-statebrowser-fg);
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.kiwi-statebrowser-channel-active {
|
|
468
|
+
border-left-color: var(--brand-primary);
|
|
469
|
+
background: var(--comp-statebrowser-channel-active-bg);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.kiwi-statebrowser-channel-active .kiwi-statebrowser-channel-name {
|
|
473
|
+
color: var(--comp-statebrowser-channel-active-fg);
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.kiwi-network-name-option-chanfilter.active {
|
|
477
|
+
background: var(--brand-primary);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.kiwi-statebrowser-channel-settings:hover {
|
|
481
|
+
background-color: var(--brand-primary);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.kiwi-statebrowser-channel-leave:hover {
|
|
485
|
+
background: var(--brand-error);
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.kiwi-statebrowser-newchannel a {
|
|
489
|
+
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.kiwi-statebrowser-newchannel a:hover {
|
|
493
|
+
background: var(--brand-primary);
|
|
494
|
+
opacity: 1;
|
|
495
|
+
color: var(--comp-statebrowser-fg);
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.kiwi-statebrowser-switcher a:first-of-type {
|
|
499
|
+
background: rgba(255, 255, 255, 0.15);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.kiwi-statebrowser-switcher a:hover {
|
|
503
|
+
background: rgba(255, 255, 255, 0.1);
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.kiwi-statebrowser-options {
|
|
507
|
+
background: var(--brand-midtone);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.kiwi-statebrowser-channel-notjoined .kiwi-statebrowser-channel-name {
|
|
511
|
+
color: var(--brand-error);
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.kiwi-statebrowser-channel-popup {
|
|
515
|
+
background: #383838;
|
|
516
|
+
border: 3px solid var(--brand-midtone);
|
|
517
|
+
border-left: none;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.kiwi-statebrowser-network-header {
|
|
521
|
+
background: rgba(255, 255, 255, 0.15);
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.kiwi-statebrowser-network-status {
|
|
525
|
+
background: rgba(255, 255, 255, 0.1);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
/* Icon before the network in network list */
|
|
529
|
+
.kiwi-statebrowser-network-name::before {
|
|
530
|
+
content: '\f233';
|
|
531
|
+
font-family: fontAwesome, Helvetica, Arial, Verdana, Tahoma, sans-serif;
|
|
532
|
+
margin-right: 2px;
|
|
533
|
+
font-weight: 100;
|
|
534
|
+
text-decoration: none;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
/* Icons in the Channel List */
|
|
538
|
+
.kiwi-statebrowser-channel[data-name^="*"]::before {
|
|
539
|
+
content: '\f006';
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.kiwi-statebrowser-channel[data-name="#help"]::before {
|
|
543
|
+
content: '\f059';
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.kiwi-statebrowser-channel::before {
|
|
547
|
+
font-family: fontAwesome, Helvetica, Arial, Verdana, Tahoma, sans-serif;
|
|
548
|
+
margin-right: 8px;
|
|
549
|
+
font-weight: 100;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.kiwi-statebrowser-channel-label {
|
|
553
|
+
background: var(--brand-primary);
|
|
554
|
+
color: var(--brand-default-bg);
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.kiwi-statebrowser-channel-label--highlight {
|
|
558
|
+
background: var(--brand-error);
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.kiwi-statebrowser-usermenu-avatar:hover .kiwi-avatar-inner,
|
|
562
|
+
.kiwi-statebrowser-usermenu--open .kiwi-avatar-inner {
|
|
563
|
+
background-color: var(--brand-primary) !important;
|
|
564
|
+
color: var(--brand-default-bg) !important;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.kiwi-statebrowser-usermenu-avatar--connected .kiwi-avatar-inner {
|
|
568
|
+
border-color: #42b992;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.kiwi-statebrowser-usermenu-avatar--disconnected .kiwi-avatar-inner {
|
|
572
|
+
border-color: var(--brand-error);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.kiwi-statebrowser-usermenu .kiwi-awaystatusindicator {
|
|
576
|
+
border-color: var(--comp-statebrowser-bg);
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.kiwi-statebrowser-network .kiwi-statebrowser-network-header a.kiwi-statebrowser-network-toggle:hover {
|
|
580
|
+
background-color: var(--brand-error);
|
|
581
|
+
border-top-color: var(--brand-error);
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.kiwi-statebrowser-appsettings:hover {
|
|
585
|
+
background-color: rgba(128, 128, 128, 0.2);
|
|
586
|
+
opacity: 1;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.kiwi-statebrowser-scrollarea h4 {
|
|
590
|
+
border-top: 1px solid rgba(255, 255, 255, 0.3);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.kiwi-statebrowser-prompt-close {
|
|
594
|
+
background-color: rgba(128, 128, 128, 0.2);
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
/* ---- End of statebrowser ---- */
|
|
598
|
+
|
|
599
|
+
/* ---- Custom server layout ---- */
|
|
600
|
+
.kiwi-customserver {
|
|
601
|
+
background-color: var(--brand-default-fg);
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
/* ---- App ---- */
|
|
605
|
+
.kiwi-wrap {
|
|
606
|
+
color: var(--brand-default-fg);
|
|
607
|
+
--kiwi-nick-brightness: 40;
|
|
608
|
+
--kiwi-supports-monospace: 1;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.kiwi-workspace {
|
|
612
|
+
background: var(--brand-default-bg);
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.kiwi-workspace::before {
|
|
616
|
+
background: var(--brand-primary);
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.kiwi-workspace::after {
|
|
620
|
+
background: var(--brand-error);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/* ---- Container ( Container.vue ) ---- */
|
|
624
|
+
.kiwi-container-toggledraw-statebrowser,
|
|
625
|
+
.kiwi-container-toggledraw-sidebar {
|
|
626
|
+
background: var(--brand-default-bg);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.kiwi-container-toggledraw-statebrowser {
|
|
630
|
+
border-right: 1px solid var(--brand-midtone);
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.kiwi-container-toggledraw-sidebar {
|
|
634
|
+
border-left: 1px solid var(--brand-midtone);
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.kiwi-container-toggledraw-sidebar--disabled {
|
|
638
|
+
color: #b8babd;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.kiwi-container-toggledraw-statebrowser-messagecount {
|
|
642
|
+
background-color: var(--brand-primary);
|
|
643
|
+
color: var(--brand-default-bg);
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.kiwi-container-toggledraw-statebrowser-messagecount::after {
|
|
647
|
+
border: 0.6em solid transparent;
|
|
648
|
+
border-right-color: var(--brand-primary);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.kiwi-container-toggledraw-statebrowser-messagecount--highlight {
|
|
652
|
+
background-color: var(--brand-error);
|
|
653
|
+
color: var(--brand-default-bg);
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.kiwi-container-toggledraw-statebrowser-messagecount--highlight::after {
|
|
657
|
+
border-right-color: var(--brand-error);
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.kiwi-wrap--statebrowser-drawopen .kiwi-container-toggledraw-statebrowser-messagecount {
|
|
661
|
+
background-color: var(--brand-primary);
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.kiwi-wrap--statebrowser-drawopen .kiwi-container-toggledraw-statebrowser-messagecount::after {
|
|
665
|
+
border: 0.6em solid transparent;
|
|
666
|
+
border-left-color: var(--brand-primary);
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.kiwi-container-empty .u-button {
|
|
670
|
+
background-color: var(--brand-primary);
|
|
671
|
+
color: var(--brand-default-bg);
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
/* ---- Application settings ( AppSettings ) ---- */
|
|
675
|
+
.kiwi-appsettings {
|
|
676
|
+
background: var(--brand-default-bg);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.kiwi-appsettings-block {
|
|
680
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.kiwi-appsettings-block h3 {
|
|
684
|
+
background: var(--brand-primary);
|
|
685
|
+
color: var(--brand-default-bg);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.kiwi-appsettings-close {
|
|
689
|
+
background-color: var(--brand-primary);
|
|
690
|
+
color: var(--brand-default-bg);
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.kiwi-appsettings-close:hover {
|
|
694
|
+
background: var(--brand-error);
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
/* ---- Network Settings ( NetworkSettings ) ---- */
|
|
698
|
+
.kiwi-networksettings .kiwi-title {
|
|
699
|
+
background: var(--brand-primary);
|
|
700
|
+
color: var(--brand-default-bg);
|
|
701
|
+
border-top: 1px solid var(--brand-primary);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.kiwi-network-nicknamelabel {
|
|
705
|
+
color: rgb(128, 128, 128);
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.kiwi-networksettings .u-form {
|
|
709
|
+
border-color: var(--brand-midtone);
|
|
710
|
+
background: var(--brand-default-bg);
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.kiwi-networksettings .kiwi-title span {
|
|
714
|
+
color: var(--brand-primary);
|
|
715
|
+
background: var(--brand-default-bg);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.kiwi-networksettings-advanced h3:hover {
|
|
719
|
+
color: var(--brand-primary);
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.kiwi-networksettings .kiwi-customserver-tls {
|
|
723
|
+
color: var(--brand-midtone);
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.kiwi-networksettings .kiwi-customserver-tls--enabled {
|
|
727
|
+
color: var(--brand-primary);
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.kiwi-networksettings .kiwi-customserver-tls--enabled .kiwi-customserver-tls-lock {
|
|
731
|
+
color: var(--brand-primary);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.kiwi-networksettings .kiwi-customserver-tls-minus {
|
|
735
|
+
color: var(--brand-error);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.kiwi-networksettings-error {
|
|
739
|
+
border-color: var(--brand-error);
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.kiwi-networksettings .kiwi-connect-to-newnetwork {
|
|
743
|
+
background: var(--brand-primary);
|
|
744
|
+
color: var(--brand-default-bg);
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.kiwi-networksettings .kiwi-networksettings-server-types .kiwi-network-type-button {
|
|
748
|
+
border-color: var(--brand-primary);
|
|
749
|
+
color: var(--brand-primary);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.kiwi-networksettings .kiwi-networksettings-server-types .kiwi-network-type-button:hover,
|
|
753
|
+
.kiwi-networksettings .kiwi-networksettings-server-types .kiwi-network-type-button.kiwi-networksettings-server-type-active {
|
|
754
|
+
background: var(--brand-primary);
|
|
755
|
+
color: var(--brand-default-bg);
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.kiwi-networksettings .u-form span {
|
|
759
|
+
color: var(--brand-default-fg);
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.u-button.kiwi-channellist-refresh.u-button-secondary {
|
|
763
|
+
background: var(--brand-primary);
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
/* ---- Channel List ( ChannelList.vue ) ---- */
|
|
767
|
+
.kiwi-channellist-grid {
|
|
768
|
+
border-bottom: 1px solid var(--brand-midtone);
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.kiwi-channellist-grid:nth-child(even) {
|
|
772
|
+
background: rgba(128, 128, 128, 0.2);
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.kiwi-channellist-grid:first-of-type {
|
|
776
|
+
border-top: 1px solid var(--brand-midtone);
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.kiwi-channellist-topic a {
|
|
780
|
+
color: var(--brand-primary);
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
/* ---- Message list - ( MessageList.vue ) ---- */
|
|
784
|
+
.kiwi-messagelist {
|
|
785
|
+
scrollbar-color: #9e9e9e transparent;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.kiwi-messagelist::-webkit-scrollbar-thumb {
|
|
789
|
+
background-color: #9e9e9e;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.kiwi-messagelist-seperator {
|
|
793
|
+
color: var(--brand-darktone);
|
|
794
|
+
background: var(--brand-default-bg);
|
|
795
|
+
font-size: 0.9em;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.kiwi-messagelist-seperator > span {
|
|
799
|
+
background: var(--brand-default-bg);
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.kiwi-messagelist-message--info-open,
|
|
803
|
+
.kiwi-messagelist-message--authorrepeat.kiwi-messagelist-message--info-open {
|
|
804
|
+
background: var(--brand-midtone);
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.kiwi-messagelist-message-action .kiwi-messagelist-body {
|
|
808
|
+
color: var(--brand-primary);
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.kiwi-messagelist-message--highlight {
|
|
812
|
+
background-color: var(--brand-midtone);
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
/* Notice Message styling */
|
|
816
|
+
.kiwi-messagelist-message-notice {
|
|
817
|
+
background: #EFD1A4;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
/* Standard username and usertime styling */
|
|
821
|
+
.kiwi-messagelist-nick {
|
|
822
|
+
color: var(--brand-default-fg);
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
/* Unread user messages */
|
|
826
|
+
.kiwi-messagelist-message.kiwi-messagelist-message--unread {
|
|
827
|
+
border-left: 5px solid var(--brand-primary);
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
/* When hovering over a users messages */
|
|
831
|
+
.kiwi-messagelist-message--hover {
|
|
832
|
+
border-left-color: var(--brand-primary);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
/* Traditional message styling hover */
|
|
836
|
+
.kiwi-messagelist-message--compact .kiwi-messagelist-message-privmsg:hover,
|
|
837
|
+
.kiwi-messagelist-message--compact .kiwi-messagelist-message-action:hover,
|
|
838
|
+
.kiwi-messagelist-message--compact .kiwi-messagelist-message-notice:hover {
|
|
839
|
+
background: var(--brand-primary-hover);
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
/* The shadow over the main text area that displays when the sidebar is open */
|
|
843
|
+
.kiwi-container--sidebar-drawn .kiwi-messagelist::after {
|
|
844
|
+
background-color: var(--brand-default-fg);
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
/* Messagelayout inline */
|
|
848
|
+
.kiwi-messagelist-message--text .kiwi-messagelist-time,
|
|
849
|
+
.kiwi-messagelist-message--compact .kiwi-messagelist-time {
|
|
850
|
+
color: var(--brand-default-fg);
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
/* ---- Traffic Messages ---- */
|
|
854
|
+
.kiwi-messagelist-message-traffic-join,
|
|
855
|
+
.kiwi-messagelist-message-traffic-join_self {
|
|
856
|
+
color: var(--brand-primary);
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.kiwi-messagelist-message-traffic-quit,
|
|
860
|
+
.kiwi-messagelist-message-traffic-quit_self,
|
|
861
|
+
.kiwi-messagelist-message-traffic-part,
|
|
862
|
+
.kiwi-messagelist-message-traffic-part_self,
|
|
863
|
+
.kiwi-messagelist-message-traffic-kick,
|
|
864
|
+
.kiwi-messagelist-message-traffic-kick_self {
|
|
865
|
+
color: var(--brand-error);
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.kiwi-messagelist-message-traffic-quit .kiwi-nick::before,
|
|
869
|
+
.kiwi-messagelist-message-traffic-quit_self .kiwi-nick::before,
|
|
870
|
+
.kiwi-messagelist-message-traffic-part .kiwi-nick::before,
|
|
871
|
+
.kiwi-messagelist-message-traffic-part_self .kiwi-nick::before {
|
|
872
|
+
color: var(--brand-error);
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
/* ---- Modern Layout Styling ---- */
|
|
876
|
+
.kiwi-avatar-inner {
|
|
877
|
+
color: var(--brand-default-bg);
|
|
878
|
+
border-color: var(--brand-primary);
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.kiwi-avatar--default {
|
|
882
|
+
background-color: var(--brand-default-fg);
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.kiwi-messagelist .kiwi-messagelist-body a,
|
|
886
|
+
.kiwi-channellist-table-topic a,
|
|
887
|
+
.kiwi-aboutbuffer a {
|
|
888
|
+
color: var(--brand-link-normal);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.kiwi-messagelist .kiwi-messagelist-body a:hover,
|
|
892
|
+
.kiwi-channellist-table-topic a:hover,
|
|
893
|
+
.kiwi-aboutbuffer a:hover {
|
|
894
|
+
color: var(--brand-link--hover);
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.kiwi-messagelist-message--modern {
|
|
898
|
+
border-top-color: var(--brand-midtone);
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
/* Errors */
|
|
902
|
+
.kiwi-messagelist-message-error,
|
|
903
|
+
.kiwi-messagelist-message.kiwi-messagelist-message-error.kiwi-messagelist-message--highlight {
|
|
904
|
+
background: var(--brand-error);
|
|
905
|
+
color: var(--brand-default-bg);
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
/* ---- Messagelist Topic Styling ---- */
|
|
909
|
+
.kiwi-messagelist-message.kiwi-messagelist-message-topic {
|
|
910
|
+
border-top: 1px solid var(--brand-primary);
|
|
911
|
+
border-bottom: 1px solid var(--brand-primary);
|
|
912
|
+
color: var(--brand-default-fg);
|
|
913
|
+
background: var(--brand-default-bg);
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.kiwi-messagelist-message--modern.kiwi-messagelist-message--authorrepeat.kiwi-messagelist-message-topic {
|
|
917
|
+
border-top: 2px solid var(--brand-primary);
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.kiwi-messagelist-message--modern.kiwi-messagelist-message-topic,
|
|
921
|
+
.kiwi-messagelist-message--modern.kiwi-mesagelist-message-topic.kiwi-messagelist-message--highlight {
|
|
922
|
+
border: 2px solid var(--brand-primary);
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.kiwi-messagelist-message--modern.kiwi-messagelist-message-topic.kiwi-messagelist-message--unread {
|
|
926
|
+
border-left: 2px solid var(--brand-primary);
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.kiwi-header-buffersettings {
|
|
930
|
+
border-top: 1px solid var(--brand-midtone);
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.kiwi-header-topic > div {
|
|
934
|
+
color: var(--brand-default-fg);
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.kiwi-messagelist-message-whois {
|
|
938
|
+
background: var(--brand-midtone);
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.kiwi-messagelist-message-motd {
|
|
942
|
+
color: var(--brand-default-fg);
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
/* ---- MessageInfo ---- */
|
|
946
|
+
.kiwi-messagelist-message--info-open {
|
|
947
|
+
background-color: var(--brand-midtone);
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.kiwi-messageinfo-urls {
|
|
951
|
+
border-top-color: var(--brand-midtone);
|
|
952
|
+
border-bottom-color: var(--brand-midtone);
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.kiwi-messageinfo-actions .u-link {
|
|
956
|
+
border-color: var(--brand-default-fg);
|
|
957
|
+
color: var(--brand-default-fg);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.kiwi-messageinfo-actions .kiwi-messageinfo-reply {
|
|
961
|
+
background: var(--brand-primary);
|
|
962
|
+
color: var(--brand-default-bg);
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.kiwi-messageinfo-actions .kiwi-messageinfo-kick-user {
|
|
966
|
+
background: var(--brand-warning);
|
|
967
|
+
color: var(--brand-default-bg);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.kiwi-messageinfo-actions .kiwi-messageinfo-ban-user {
|
|
971
|
+
background: var(--brand-error);
|
|
972
|
+
color: var(--brand-default-bg);
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
/* ---- Not connected message ( NotConnected ) ---- */
|
|
976
|
+
.kiwi-warning-block {
|
|
977
|
+
color: var(--brand-default-bg);
|
|
978
|
+
background-color: var(--brand-error);
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.kiwi-warning-block.connecting {
|
|
982
|
+
background-color: var(--brand-primary);
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.kiwi-notconnected-button {
|
|
986
|
+
border-color: var(--brand-default-bg);
|
|
987
|
+
color: var(--brand-default-bg);
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.kiwi-notconnected-button:hover {
|
|
991
|
+
background-color: var(--brand-default-bg);
|
|
992
|
+
color: var(--brand-default-fg);
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.kiwi-notconnected-button-settings:hover {
|
|
996
|
+
background-color: transparent;
|
|
997
|
+
color: var(--brand-default-bg);
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
/* ---- Settings Aliases ( SettingsAliases ) ---- */
|
|
1001
|
+
.kiwi-settings-aliases-input {
|
|
1002
|
+
border-color: var(--brand-midtone);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.kiwi-settings-aliases-help em {
|
|
1006
|
+
color: var(--brand-primary);
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.kiwi-settings-advanced-notice {
|
|
1010
|
+
color: var(--brand-default-bg);
|
|
1011
|
+
background: var(--brand-error);
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
/* ---- Channel Banlist ( Channelbanlist ) ---- */
|
|
1015
|
+
.kiwi-channelbanlist-table tr {
|
|
1016
|
+
border-bottom-color: var(--brand-midtone);
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.kiwi-channelbanlist-table-actions:hover {
|
|
1020
|
+
background-color: var(--brand-error);
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.kiwi-channelbanlist-table-actions:hover i {
|
|
1024
|
+
color: var(--brand-default-bg);
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.kiwi-network-name-options {
|
|
1028
|
+
background-color: var(--brand-default-fg);
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.kiwi-network-name-option:hover,
|
|
1032
|
+
.kiwi-network-name-option.active {
|
|
1033
|
+
background-color: var(--brand-primary);
|
|
1034
|
+
color: var(--brand-default-bg);
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.kiwi-network-name-option {
|
|
1038
|
+
color: var(--brand-default-bg);
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
/* Global Close Icon */
|
|
1042
|
+
.kiwi-close-icon,
|
|
1043
|
+
.kiwi-close-icon:hover {
|
|
1044
|
+
background: var(--brand-error);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
/* Away Status Indicator */
|
|
1048
|
+
.kiwi-awaystatusindicator {
|
|
1049
|
+
border-color: var(--brand-default-bg);
|
|
1050
|
+
background-color: var(--brand-primary);
|
|
1051
|
+
}
|
|
1052
|
+
.kiwi-awaystatusindicator--away {
|
|
1053
|
+
background-color: var(--brand-error);
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
/* Buffer Key */
|
|
1057
|
+
.kiwi-bufferkey-button {
|
|
1058
|
+
border-color: var(--brand-default-bg);
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
/* Selected text */
|
|
1062
|
+
:root {
|
|
1063
|
+
--brand-selected: rgba(0, 0, 255, 0.3);
|
|
1064
|
+
}
|