Wider Aviator

Set the width of the Aviator sidebar to 580px.

2024-09-06 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name         Wider Aviator
// @namespace    http://prantlf.me/
// @version      1.0
// @description  Set the width of the Aviator sidebar to 580px.
// @author       [email protected]
// @match        https://otcs.dev.ollie.opentext.ai/cs/cs/*
// @match        https://ollie.opentext.ai/cs/cs/*
// @grant        none
// ==/UserScript==

// based on https://greasyfork.org/en/scripts/408637-tall-tiles-in-ollie/
(function () {
  'use strict'

  function addStyle (content) {
    const element = document.createElement('style')
    element.type = 'text/css'
    element.innerHTML = content
    element.setAttribute('data-csui-theme-overrides', 'true')
    document.head.appendChild(element)
  }

  addStyle(`
.binf-widgets .csui-sidepanel.aie-chat-panel .aie-viewer {
  width: calc(100% - 580px);
  inset-inline-end: 580px;
}

.binf-widgets .aie-chat-messages::before {
  width: calc(580px - 23px + var(--aie-scrollbar-width, 16px) - 24px + 11px);
}

@supports (-moz-appearance:none) {
  .binf-widgets .aie-chat-messages::before {
    width: calc(580px - 23px + var(--aie-scrollbar-width, 16px) - 24px + 18px);
  }
}

.binf-widgets .aie-chat-post .aie-chat-text .aie-plain {
  max-width: calc(580px - 24px - 48px - 16px - 16px - 7px - 16px);
}

.binf-widgets .aie-chat-prompt::after {
  width: calc(580px - 16px - 49px + 24px + 16px + 3px);
}

.binf-widgets .aie-chat-panel .csui-sidepanel-container {
  width: 580px;
  max-width: 580px;
  min-width: 580px;
}
`)
}());