/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at . */ .cm-highlight { position: relative; } .cm-highlight::before { position: absolute; border-top-style: solid; border-bottom-style: solid; border-top-color: var(--theme-text-color-inactive); border-bottom-color: var(--theme-text-color-inactive); border-top-width: 1px; border-bottom-width: 1px; top: -1px; bottom: 0; left: 0; right: 0; content: ""; margin-bottom: -1px; } .cm-highlight-full::before { border: 1px solid var(--theme-text-color-inactive); border-radius: 2px; margin: 0 -1px -1px -1px; }