| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /*
- Licensed to Cloudera, Inc. under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. Cloudera, Inc. 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.
- */
- .question {
- margin: 10px;
- }
- .snippet {
- border-bottom: 2px solid #F0F0F0;
- margin: 10px;
- }
- .results.hive-sql {
- max-height: 200px;
- overflow: auto;
- }
- .CodeMirror {
- border: 1px solid #DDD;
- border-top: none;
- }
- .codeMirror-overlaybtn {
- position: absolute;
- margin-top: -40px;
- margin-left: 35px;
- z-index: 3;
- opacity: 0.5;
- }
- .codeMirror-overlaybtn:hover {
- opacity: 1;
- }
- .nav {
- margin-bottom: 0;
- }
- .nav i {
- line-height: 20px !important;
- }
- .dropdown-menu li {
- font-size: 14px;
- }
- .dropdown a.dropdown-toggle {
- padding-left: 10px;
- padding-right: 10px;
- }
- .search-bar {
- background-color: #F5F5F5;
- margin: 0;
- padding-bottom: 0;
- padding-top: 4px;
- padding-left: 20px;
- padding-right: 20px;
- text-align: left;
- width: 100%;
- position: fixed;
- top: 28px;
- z-index: 1000;
- }
- .search-bar input {
- margin-left: 10px;
- padding-right: 20px;
- }
- .search-bar ul li {
- text-align: right;
- }
- .tab-content {
- background-color: #FFFFFF;
- border-left: 1px solid #dddddd;
- border-right: 1px solid #dddddd;
- }
- .snippet-icon {
- color: #338bb8;
- height: 16px;
- width: 16px;
- margin-left: 3px;
- margin-right: 3px;
- }
- .row-container.is-editing {
- border: none;
- }
- .ui-sortable {
- background-color: #FFF;
- min-height: 100px;
- }
- .assist {
- padding: 4px;
- position: fixed;
- }
- .assist-main {
- overflow-y: scroll;
- }
|