2017-06-27 09:41:26 -05:00
|
|
|
|
/* To override inbuilt Green color for matchingbracket */
|
|
|
|
|
.cm-s-default .CodeMirror-matchingbracket {
|
2019-10-04 03:25:00 -05:00
|
|
|
|
color: $sql-bracket-match-fg !important;
|
|
|
|
|
background-color: $sql-bracket-match-bg !important;
|
2017-06-27 09:41:26 -05:00
|
|
|
|
}
|
2017-06-27 09:55:57 -05:00
|
|
|
|
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
.CodeMirror {
|
|
|
|
|
font-size: 1em;
|
2019-01-07 02:54:44 -06:00
|
|
|
|
font-family: monospace, monospace;
|
2021-10-04 07:30:09 -05:00
|
|
|
|
background-color: $color-editor-bg !important;
|
2019-11-07 07:21:03 -06:00
|
|
|
|
color: $color-editor-fg;
|
2022-02-10 23:06:24 -06:00
|
|
|
|
border-radius: inherit;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-27 09:55:57 -05:00
|
|
|
|
/* Ensure the codemirror editor displays full height gutters when resized */
|
|
|
|
|
.CodeMirror, .CodeMirror-gutter {
|
|
|
|
|
height: 100% !important;
|
|
|
|
|
min-height: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Remove border right from "CodeMirror-gutters"
|
2018-09-04 05:24:51 -05:00
|
|
|
|
* class because its height doesn't increase
|
2017-06-27 09:55:57 -05:00
|
|
|
|
* with every new line added, instead add border
|
|
|
|
|
* right to ".CodeMirror-linenumber" class which
|
|
|
|
|
* adds a new div for every new line added
|
|
|
|
|
*/
|
|
|
|
|
.sql_field_layout .CodeMirror-gutters {
|
|
|
|
|
border-right: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sql_field_layout .CodeMirror-linenumber {
|
2018-09-04 05:24:51 -05:00
|
|
|
|
border-right: 1px solid $color-gray-lighter;
|
2018-10-10 06:43:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-27 09:55:57 -05:00
|
|
|
|
/* class to disable Codemirror editor */
|
|
|
|
|
.cm_disabled {
|
2018-10-10 06:43:26 -05:00
|
|
|
|
background: $input-disabled-bg;
|
2017-06-27 09:55:57 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* make syntax-highlighting bold */
|
2019-11-07 07:21:03 -06:00
|
|
|
|
.cm-s-default {
|
|
|
|
|
& .cm-quote {color: #090;}
|
|
|
|
|
& .cm-keyword {color: $color-editor-keyword; font-weight: 600;}
|
|
|
|
|
& .cm-atom {color: $color-editor-fg;}
|
|
|
|
|
& .cm-number {color: $color-editor-number; font-weight: 600;}
|
|
|
|
|
& .cm-def {color: $color-editor-fg;}
|
|
|
|
|
& .cm-punctuation,
|
|
|
|
|
& .cm-property,
|
|
|
|
|
& .cm-operator { color: $color-editor-operator; }
|
|
|
|
|
& .cm-variable {color: $color-editor-variable; }
|
|
|
|
|
& .cm-variable-2,
|
|
|
|
|
& .cm-variable-3,
|
|
|
|
|
& .cm-type {color: $color-editor-variable-2;}
|
|
|
|
|
& .cm-comment {color: $color-editor-comment;}
|
|
|
|
|
& .cm-string {color: $color-editor-string;}
|
|
|
|
|
& .cm-string-2 {color: $color-editor-string;}
|
|
|
|
|
& .cm-meta {color: $color-editor-fg;}
|
|
|
|
|
& .cm-qualifier {color: $color-editor-fg;}
|
|
|
|
|
& .cm-builtin {color: $color-editor-builtin;}
|
|
|
|
|
& .cm-bracket {color: $color-editor-bracket;}
|
|
|
|
|
& .cm-tag {color: $color-editor-fg;}
|
|
|
|
|
& .cm-attribute {color: $color-editor-fg;}
|
|
|
|
|
& .cm-hr {color: $color-editor-fg;}
|
|
|
|
|
& .cm-link {color: $color-editor-fg;}
|
|
|
|
|
|
2020-04-07 01:21:19 -05:00
|
|
|
|
& :not(.cm-fat-cursor) .CodeMirror-cursor {
|
2020-06-24 05:46:12 -05:00
|
|
|
|
border-left: thin solid $color-editor-fg;
|
2020-04-07 01:21:19 -05:00
|
|
|
|
border-right: none;
|
|
|
|
|
width: 0;
|
2019-11-07 07:21:03 -06:00
|
|
|
|
}
|
2017-06-27 09:55:57 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Codemirror buttons */
|
|
|
|
|
.CodeMirror-dialog button {
|
2018-09-04 05:24:51 -05:00
|
|
|
|
font-family: $font-family-primary;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
color: $color-primary-fg;
|
2017-06-27 09:55:57 -05:00
|
|
|
|
font-size: 70%;
|
2018-09-04 05:24:51 -05:00
|
|
|
|
background-image: -webkit-linear-gradient(top, $color-primary-light 0%, $color-primary 100%);
|
|
|
|
|
background-image: -o-linear-gradient(top, $color-primary-light 0%, $color-primary 100%);
|
|
|
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from($color-primary-light), to($color-primary));
|
|
|
|
|
background-image: linear-gradient(to bottom, $color-primary-light 0%, $color-primary 100%);
|
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$color-primary-light}', endColorstr='#{$color-primary}', GradientType=0);
|
2017-06-27 09:55:57 -05:00
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
|
|
|
|
background-repeat: repeat-x;
|
2018-09-04 05:24:51 -05:00
|
|
|
|
border-color: $color-primary;
|
2017-06-27 09:55:57 -05:00
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-18 09:13:16 -05:00
|
|
|
|
.CodeMirror-gutters {
|
|
|
|
|
z-index: 2;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
background-color: $sql-gutters-bg;
|
|
|
|
|
border-right: none;
|
2017-09-13 10:01:14 -05:00
|
|
|
|
}
|
2017-10-12 04:07:18 -05:00
|
|
|
|
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
/* workaround for codemirrors 'readOnly' option which is set to true instead of 'noCursor' */
|
|
|
|
|
.hide-cursor-workaround .CodeMirror-cursors {
|
|
|
|
|
display: none;
|
2017-10-12 04:07:18 -05:00
|
|
|
|
}
|
|
|
|
|
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
.CodeMirror-linenumber {
|
2019-11-07 07:21:03 -06:00
|
|
|
|
color: $color-fg;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.debugger-container .breakpoints {
|
|
|
|
|
width: 0.9em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror, .CodeMirror-gutters {
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter {
|
|
|
|
|
width: .9em;
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-15 01:07:54 -05:00
|
|
|
|
.breakpoints {
|
|
|
|
|
width: .9em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
.CodeMirror-foldgutter-open,
|
|
|
|
|
.CodeMirror-foldgutter-folded {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-open:after {
|
|
|
|
|
content: "\25BC";
|
2020-08-13 01:34:00 -05:00
|
|
|
|
font-weight: 900;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-folded:after {
|
|
|
|
|
content: "\25B6";
|
2020-08-13 01:34:00 -05:00
|
|
|
|
font-weight: 900;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.CodeMirror-foldmarker {
|
|
|
|
|
color: $color-editor-foldmarker;
|
|
|
|
|
text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
|
|
|
|
|
font-family: $font-family-primary;
|
|
|
|
|
line-height: .3;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-hints {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
|
|
margin: 0;
|
2019-01-03 08:50:24 -06:00
|
|
|
|
padding: 0px;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
|
2019-01-03 08:50:24 -06:00
|
|
|
|
-webkit-box-shadow: $dropdown-box-shadow;
|
|
|
|
|
-moz-box-shadow: $dropdown-box-shadow;
|
|
|
|
|
box-shadow: $dropdown-box-shadow;
|
|
|
|
|
border-radius: $border-radius;
|
|
|
|
|
border: $panel-border;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
|
2019-01-03 08:50:24 -06:00
|
|
|
|
background: $sql-hint-bg;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
font-size: 90%;
|
2019-10-10 01:35:28 -05:00
|
|
|
|
font-family: $font-family-editor !important;
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 05:44:55 -06:00
|
|
|
|
|
|
|
|
|
max-height: 20em;
|
|
|
|
|
overflow-y: auto;
|
2019-01-03 08:50:24 -06:00
|
|
|
|
|
|
|
|
|
& li {
|
|
|
|
|
padding: 0.125rem;
|
|
|
|
|
border-radius: 0rem;
|
|
|
|
|
&.CodeMirror-hint-active {
|
|
|
|
|
background: $sql-hint-active-bg;
|
|
|
|
|
color: $sql-hint-active-fg;
|
|
|
|
|
}
|
2022-04-07 07:06:56 -05:00
|
|
|
|
& .sqleditor-hint {
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
}
|
2019-01-03 08:50:24 -06:00
|
|
|
|
}
|
2019-02-25 11:08:05 -06:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 02:41:00 -06:00
|
|
|
|
.CodeMirror .CodeMirror-selected {
|
2020-07-20 01:21:21 -05:00
|
|
|
|
background: $sql-editor-selection-bg !important;
|
2019-02-25 11:08:05 -06:00
|
|
|
|
}
|
2019-03-13 11:04:26 -05:00
|
|
|
|
|
|
|
|
|
.CodeMirror-activeline-background {
|
2021-05-04 02:04:03 -05:00
|
|
|
|
background: $color-editor-activeline !important;
|
2019-03-13 11:04:26 -05:00
|
|
|
|
}
|
2019-11-12 08:08:35 -06:00
|
|
|
|
|
|
|
|
|
.CodeMirror-simplescroll-horizontal {
|
|
|
|
|
height: $scrollbar-width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-simplescroll-vertical {
|
|
|
|
|
width: $scrollbar-width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-scrollbar-filler, .CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
|
2021-03-23 08:47:01 -05:00
|
|
|
|
background-color: lighten($scrollbar-base-color, 15%);
|
2019-11-12 08:08:35 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
|
|
|
|
|
|
|
|
|
|
& div {
|
|
|
|
|
border: 0.25rem solid transparent;
|
|
|
|
|
border-radius: $border-radius*2;
|
|
|
|
|
background-clip: content-box;
|
|
|
|
|
background-color: rgba($scrollbar-base-color, 0.7);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: $scrollbar-base-color;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-20 01:21:21 -05:00
|
|
|
|
|
|
|
|
|
.bg-gray-lighter {
|
|
|
|
|
background-color: $sql-editor-disable-bg !important;
|
|
|
|
|
}
|
2021-02-18 23:44:27 -06:00
|
|
|
|
|
2022-04-25 07:41:39 -05:00
|
|
|
|
.sql-editor-mark {
|
|
|
|
|
border-bottom: 2px dotted red;
|
|
|
|
|
}
|