Web console: clean up styling imports (#10410)

* fix styling for importing

* fix quotes
This commit is contained in:
Vadim Ogievetsky 2020-09-21 17:30:25 -07:00 committed by GitHub
parent 49a09302f3
commit 7cc0a7be68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 56 additions and 8 deletions

View File

@ -0,0 +1,19 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@import 'common/colors';

View File

@ -0,0 +1,23 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
$blue1: #0e5a8a;
$blue2: #106ba3;
$blue3: #137cbe; // Changed as a proof of concept
$blue4: #2b95d6;
$blue5: #48aff0;

View File

@ -17,8 +17,8 @@
*/ */
.auto-form { .auto-form {
.ace_scroller { .ace-solarized-dark {
background-color: #212c36; background-color: #212e37;
} }
// Popover in info label // Popover in info label

View File

@ -33,7 +33,7 @@
margin-bottom: 5px; margin-bottom: 5px;
} }
.ace_scroller { .ace-solarized-dark {
background-color: #232c35; background-color: #232c35;
} }

View File

@ -26,7 +26,7 @@
background-color: #232c35; background-color: #232c35;
margin-bottom: 10px; margin-bottom: 10px;
.ace_gutter { .ace-solarized-dark {
background-color: #232c35; background-color: #232c35;
} }
} }

View File

@ -17,8 +17,9 @@
*/ */
@import '../node_modules/normalize.css/normalize'; @import '../node_modules/normalize.css/normalize';
@import '../node_modules/@blueprintjs/core/lib/css/blueprint'; @import './blueprint-overrides';
@import '../node_modules/@blueprintjs/datetime/lib/css/blueprint-datetime'; @import '~@blueprintjs/core/src/blueprint';
@import '~@blueprintjs/datetime/src/blueprint-datetime';
@import '../lib/react-table'; @import '../lib/react-table';
@import '../node_modules/react-splitter-layout/lib/index.css'; @import '../node_modules/react-splitter-layout/lib/index.css';

View File

@ -16,6 +16,7 @@
* limitations under the License. * limitations under the License.
*/ */
@import '~@blueprintjs/core/src/common/colors';
@import '../../variables'; @import '../../variables';
.load-data-view { .load-data-view {
@ -258,7 +259,7 @@
} }
.edit-controls { .edit-controls {
background: #30404c; background: rgba($gray3, 0.15);
padding: 10px; padding: 10px;
border-radius: 2px; border-radius: 2px;
margin-bottom: 15px; margin-bottom: 15px;
@ -283,4 +284,8 @@
width: 100%; width: 100%;
height: 100% !important; height: 100% !important;
} }
.ace-solarized-dark {
background-color: #232c35;
}
} }

View File

@ -24,7 +24,7 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
.ace_scroller { .ace-solarized-dark {
background-color: #232c35; background-color: #232c35;
} }