87 lines
2.1 KiB
CSS
87 lines
2.1 KiB
CSS
/*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This product is licensed for one customer to use on one installation (test stores and multishop included).
|
|
* Site developer has the right to modify this module to suit their needs, but can not redistribute the module in
|
|
* whole or in part. Any other use of this module constitutes a violation of the user agreement.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* NO WARRANTIES OF DATA SAFETY OR MODULE SECURITY
|
|
* ARE EXPRESSED OR IMPLIED. USE THIS MODULE IN ACCORDANCE
|
|
* WITH YOUR MERCHANT AGREEMENT, KNOWING THAT VIOLATIONS OF
|
|
* PCI COMPLIANCY OR A DATA BREACH CAN COST THOUSANDS OF DOLLARS
|
|
* IN FINES AND DAMAGE A STORES REPUTATION. USE AT YOUR OWN RISK.
|
|
*
|
|
* @author idnovate.com <info@idnovate.com>
|
|
* @copyright 2022 idnovate.com
|
|
* @license See above
|
|
*/
|
|
|
|
.CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div {
|
|
position: absolute;
|
|
background: #ccc;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
border: 1px solid #bbb;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
|
|
position: absolute;
|
|
z-index: 6;
|
|
background: #eee;
|
|
}
|
|
|
|
.CodeMirror-simplescroll-horizontal {
|
|
bottom: 0; left: 0;
|
|
height: 8px;
|
|
}
|
|
.CodeMirror-simplescroll-horizontal div {
|
|
bottom: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.CodeMirror-simplescroll-vertical {
|
|
right: 0; top: 0;
|
|
width: 8px;
|
|
}
|
|
.CodeMirror-simplescroll-vertical div {
|
|
right: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.CodeMirror-overlayscroll .CodeMirror-scrollbar-filler, .CodeMirror-overlayscroll .CodeMirror-gutter-filler {
|
|
display: none;
|
|
}
|
|
|
|
.CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div {
|
|
position: absolute;
|
|
background: #bcd;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.CodeMirror-overlayscroll-horizontal, .CodeMirror-overlayscroll-vertical {
|
|
position: absolute;
|
|
z-index: 6;
|
|
}
|
|
|
|
.CodeMirror-overlayscroll-horizontal {
|
|
bottom: 0; left: 0;
|
|
height: 6px;
|
|
}
|
|
.CodeMirror-overlayscroll-horizontal div {
|
|
bottom: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.CodeMirror-overlayscroll-vertical {
|
|
right: 0; top: 0;
|
|
width: 6px;
|
|
}
|
|
.CodeMirror-overlayscroll-vertical div {
|
|
right: 0;
|
|
width: 100%;
|
|
}
|