| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- textarea:focus {
- outline: 1.5px solid var(--vscode-focusBorder, #007fd4);
- }
- vscode-button::part(control):focus {
- outline: none;
- }
- /*
- Use vscode native scrollbar styles
- https://github.com/gitkraken/vscode-gitlens/blob/b1d71d4844523e8b2ef16f9e007068e91f46fd88/src/webviews/apps/home/home.scss
- */
- html {
- height: 100%;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- body {
- margin: 0;
- }
- body, body * {
- line-height: 1.5em;
- }
- body.scrollable,
- .scrollable,
- body.code-block-scrollable,
- .code-block-scrollable {
- border-color: transparent;
- transition: border-color 0.7s linear;
- }
- body:hover.scrollable,
- body:hover .scrollable,
- body:focus-within.scrollable,
- body:focus-within .scrollable,
- body:hover.code-block-scrollable,
- body:hover .code-block-scrollable,
- body:focus-within.code-block-scrollable,
- body:focus-within .code-block-scrollable {
- border-color: var(--vscode-scrollbarSlider-background);
- transition: none;
- }
- .scrollable::-webkit-scrollbar-corner {
- background-color: transparent !important;
- }
- .scrollable::-webkit-scrollbar-thumb {
- background-color: transparent;
- border-color: inherit;
- border-right-style: inset;
- border-right-width: calc(100vw + 100vh);
- border-radius: unset !important;
- }
- .scrollable::-webkit-scrollbar-thumb:hover {
- border-color: var(--vscode-scrollbarSlider-hoverBackground);
- }
- .scrollable::-webkit-scrollbar-thumb:active {
- border-color: var(--vscode-scrollbarSlider-activeBackground);
- }
- /*
- Fix VSCode ignoring webkit scrollbar modifiers
- https://github.com/microsoft/vscode/issues/213045
- */
- @supports selector(::-webkit-scrollbar) {
- html {
- scrollbar-color: unset;
- }
- }
- /*
- The above scrollbar styling uses some transparent background color magic to accomplish its animation. However this doesn't play nicely with SyntaxHighlighter, so we need to set a background color for the code blocks' horizontal scrollbar. This actually has the unintended consequence of always showing the scrollbar which I prefer since it makes it more obvious that there is more content to scroll to.
- */
- .code-block-scrollable::-webkit-scrollbar-track {
- background: transparent;
- }
- .code-block-scrollable::-webkit-scrollbar-thumb {
- background-color: var(--vscode-scrollbarSlider-background);
- border-radius: 5px;
- border: 2px solid transparent;
- background-clip: content-box;
- }
- .code-block-scrollable::-webkit-scrollbar-thumb:hover {
- background-color: var(--vscode-scrollbarSlider-hoverBackground);
- }
- .code-block-scrollable::-webkit-scrollbar-thumb:active {
- background-color: var(--vscode-scrollbarSlider-activeBackground);
- }
- .code-block-scrollable::-webkit-scrollbar-corner {
- background-color: transparent;
- }
- /*
- Dropdown label
- https://github.com/microsoft/vscode-webview-ui-toolkit/tree/main/src/dropdown#with-label
- */
- .dropdown-container {
- box-sizing: border-box;
- display: flex;
- flex-flow: column nowrap;
- align-items: flex-start;
- justify-content: flex-start;
- }
- .dropdown-container label {
- display: block;
- color: var(--vscode-foreground);
- cursor: pointer;
- font-size: var(--vscode-font-size);
- line-height: normal;
- margin-bottom: 2px;
- }
- /* Fix scrollbar in dropdown */
- vscode-dropdown::part(listbox) {
- border-color: var(--vscode-scrollbarSlider-background);
- transition: none;
- scrollbar-color: var(--vscode-scrollbarSlider-background) transparent;
- }
- /* Faded icon buttons in textfields */
- .input-icon-button {
- cursor: pointer;
- opacity: 0.65;
- }
- .input-icon-button:hover {
- opacity: 1;
- }
- .input-icon-button.disabled {
- cursor: not-allowed;
- opacity: 0.4;
- }
- .input-icon-button.disabled:hover {
- opacity: 0.4;
- }
- /* Context mentions */
- .mention-context-textarea-highlight {
- background-color: color-mix(in srgb, var(--vscode-badge-foreground) 30%, transparent);
- border-radius: 3px;
- box-shadow: 0 0 0 0.5px color-mix(in srgb, var(--vscode-badge-foreground) 30%, transparent);
- color: transparent;
- /* padding: 0.5px;
- margin: -0.5px;
- position: relative;
- bottom: -0.5px; */
- }
- .mention-context-highlight {
- background-color: color-mix(in srgb, var(--vscode-badge-foreground) 30%, transparent);
- border-radius: 3px;
- }
- .mention-context-highlight-with-shadow {
- background-color: color-mix(in srgb, var(--vscode-badge-foreground) 30%, transparent);
- border-radius: 3px;
- box-shadow: 0 0 0 0.5px color-mix(in srgb, var(--vscode-badge-foreground) 30%, transparent);
- }
|