| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /*
- 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.
- */
- .form-search {
- margin: 0;
- padding-top: 5px;
- }
- .object-name {
- font-size: 20px;
- font-weight: 300;
- }
- .object-description {
- margin-left: 10px;
- font-size: 14px;
- }
- .editable-click {
- cursor: pointer;
- }
- .editable-empty, .editable-empty:hover {
- color: #666!important;
- opacity: .55;
- }
- .tooltip {
- z-index: 1051;
- }
- .demi-modal {
- z-index: 1033;
- }
- input[type="text"].filechooser-input {
- border-right: none;
- margin-bottom: 0;
- }
- input[type="text"].filechooser-input, input[type="text"].half {
- width: 50%;
- }
- input[type="text"].seventy {
- width: 70%;
- }
- .fileChooserBtn {
- height: 31px;
- }
- input[type="text"].filechooser-input.input-xlarge {
- width: 270px;
- }
- #file-uploader {
- float: left;
- margin-right: 3px;
- margin-top: 10px;
- }
- .qq-upload-button {
- display: inline-block;
- height: 29px;
- min-height: 29px;
- padding: 0 8px;
- margin: 0;
- font-size: 13px;
- font-weight: bold;
- line-height: 29px;
- color: #444;
- text-align: center;
- text-shadow: none;
- vertical-align: middle;
- cursor: pointer;
- background-color: #f9f9f9;
- background-image: -moz-linear-gradient(top,#fff,#f1f1f1);
- background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f1f1f1));
- background-image: -webkit-linear-gradient(top,#fff,#f1f1f1);
- background-image: -o-linear-gradient(top,#fff,#f1f1f1);
- background-image: linear-gradient(to bottom,#fff,#f1f1f1);
- background-repeat: repeat-x;
- border: 1px solid rgba(0,0,0,0.1);
- border-color: #f1f1f1 #f1f1f1 #cbcbcb;
- border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
- border-color: rgba(0,0,0,0.1);
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff1f1f1',GradientType=0);
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
- ul.with-margin li {
- margin-bottom: 4px;
- }
- .dropdown-menu li {
- font-size: 14px;
- }
- .dropdown a.dropdown-toggle {
- padding-left: 10px;
- padding-right: 10px;
- }
- .search-bar {
- background-color: #F5F5F5;
- border-bottom: 1px solid #e3e3e3;
- -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
- -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
- margin: 0;
- padding: 10px;
- padding-left: 20px;
- padding-right: 20px;
- text-align: left;
- width: 100%;
- position: fixed;
- top: 28px;
- z-index: 1000;
- }
- .fields-chooser li {
- cursor: pointer;
- margin-bottom: 10px;
- }
- .fields-chooser li .badge {
- font-weight: normal;
- font-size: 12px;
- }
- .demi-modal {
- min-height: 80px;
- }
- #settingsModal h4 {
- margin-top: 30px;
- }
- #settingsModal ul.unstyled li {
- margin-bottom: 4px;
- }
- .submit-modal .dropdown-menu {
- box-shadow: 0 5px 10px rgba(0,0,0,0.2) !important;
- }
|