Path: blob/master/src/packages/frontend/codemirror/addon/show-hint.css
1496 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45.CodeMirror-hints {6position: absolute;7z-index: 10;8overflow: hidden;9list-style: none;1011margin: 0;12padding: 2px;1314-webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);15-moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);16box-shadow: 2px 3px 5px rgba(0,0,0,.2);17border-radius: 3px;18border: 1px solid silver;1920background: white !important;21font-size: 90%;22font-family: monospace;2324max-height: 20em;25overflow-y: auto;26}2728.CodeMirror-hint {29margin: 0;30padding: 0 4px;31border-radius: 2px;32white-space: pre;33color: black;34cursor: pointer;35}3637li.CodeMirror-hint-active {38background: #08f;39color: white;40}414243