| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*
- 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.
- */
- .running {
- background-color: #faa732;
- border-left: 2px solid #faa732;
- }
- .succeeded {
- background-color: #5eb95e;
- border-left: 2px solid #5eb95e;
- }
- .failed {
- background-color: #dd514c;
- border-left: 2px solid #dd514c;
- }
- .sidebar-nav {
- padding: 9px 0;
- }
- .CodeMirror {
- border: 1px solid #eee;
- }
- .bottomAlert {
- position: fixed;
- bottom: 0;
- left: 0;
- margin: 0;
- width: 100%;
- text-align: center;
- display: none;
- z-index: 1000;
- }
- #logs .alert-modified {
- padding-right: 14px;
- }
- #logs pre {
- margin: 0;
- color: #666;
- border-color: #DDD;
- }
- .parameterTableCnt {
- background-color: #F5F5F5;
- }
- .parameterTable td {
- padding: 7px;
- }
- .span2 .pull-right {
- display: none;
- }
- #logsModal {
- width: 90%;
- left: 5%;
- margin-left: auto;
- margin-right: auto;
- }
- .scroll {
- overflow-y: scroll;
- height: 300px;
- }
- .widget-content {
- padding: 10px;
- }
- .editable {
- cursor: pointer;
- }
- .editable-container h3 {
- display: none;
- }
- #properties h4 {
- color: #3A87AD;
- }
- .mainAction {
- float: right;
- font-size: 48px;
- opacity: 0.4;
- color: #338bb8;
- cursor: pointer;
- margin-top: 6px;
- }
- .mainAction i {
- cursor: pointer;
- }
- .mainAction:hover {
- opacity: 0.88;
- text-decoration: none;
- }
- .unsaved {
- border-color: #C63D37!important;
- }
- .editorError {
- color: #B94A48;
- background-color: #F2DEDE;
- padding: 4px;
- font-size: 11px;
- }
|