| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896 |
- /*
- 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.
- */
- .subnav {
- background-color: #EEEEEE;
- background-image: -moz-linear-gradient(center top, #F5F5F5 0%, #EEEEEE 100%);
- background-repeat: repeat-x;
- border: 1px solid #E5E5E5;
- border-radius: 4px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- height: 36px;
- width: 100%;
- }
- .subnav .nav {
- margin-bottom: 0;
- }
- .subnav .nav > li > a {
- border-left: 1px solid #F5F5F5;
- border-radius: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-right: 1px solid #E5E5E5;
- margin: 0;
- padding-bottom: 11px;
- padding-top: 11px;
- }
- .subnav .nav > li > a:hover {
- border-right: 1px solid #E5E5E5;
- border-left: 1px solid #F5F5F5;
- }
- .subnav .nav > .active > a, .subnav .nav > .active > a:hover {
- background-color: #E9E9E9;
- border-left: 0 none;
- border-right-color: #DDDDDD;
- box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05) inset;
- color: #777777;
- padding-left: 13px;
- }
- .subnav .nav > .active > a .caret, .subnav .nav > .active > a:hover .caret {
- border-top-color: #777777;
- }
- .subnav .nav > li:first-child > a, .subnav .nav > li:first-child > a:hover {
- border-left: 0 none;
- border-radius: 4px 0 0 4px;
- -webkit-border-radius: 4px 0 0 4px;
- -moz-border-radius: 4px 0 0 4px;
- padding-left: 12px;
- }
- .subnav .nav > li:last-child > a {
- border-right: 0 none;
- }
- .subnav .dropdown-menu {
- border-radius: 0 0 4px 4px;
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- }
- .subnav-fixed {
- border-color: #D5D5D5;
- border-radius: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-width: 0 0 1px;
- box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 5px rgba(0, 0, 0, 0.1);
- left: 0;
- position: fixed;
- right: 0;
- top: 48px;
- z-index: 1020;
- }
- .subnav-fixed .nav {
- margin: 0 auto;
- padding: 0 1px;
- }
- .subnav .nav > li:first-child > a, .subnav .nav > li:first-child > a:hover {
- border-radius: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- }
- .form-stacked {
- margin: 0;
- }
- .form-inline input, .form-inline a {
- vertical-align: baseline;
- }
- .pagination p {
- padding-top: 6px;
- }
- .right {
- text-align: right !important;
- }
- .center {
- text-align: center !important;
- }
- .left {
- text-align: left !important;
- }
- .nowrap {
- white-space: nowrap;
- }
- a.toggle-display-link:link {
- color: black;
- text-decoration: none;
- }
- a.toggle-display-link:active {
- color: black;
- text-decoration: none;
- }
- a.toggle-display-link:visited {
- color: black;
- text-decoration: none;
- }
- a.toggle-display-link:hover {
- color: black;
- text-decoration: none;
- }
- .withTitle {
- top: 60px !important;
- }
- .clear {
- clear: both;
- }
- .sectionbar {
- background-color: #E5E5E5;
- background-image: linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
- background-image: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
- background-image: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
- background-image: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
- background-image: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(255, 255, 255)), color-stop(1, rgb(229, 229, 229)));
- height: 40px;
- border-bottom: 1px solid #CBCBCB;
- padding-top: 10px;
- }
- .sectionbar h2 {
- font-size: 20px;
- font-weight: 400;
- padding-left: 20px;
- float: left;
- }
- .sectionbar h2.selected {
- color: #01639C;
- }
- .sectionbar h2.subsection, .sectionbar h2.subsubsection {
- padding-left: 6px;
- }
- .sectionbar h3 {
- float: left;
- padding-left: 6px;
- color: #CCC;
- font-size: 12px;
- }
- .sectionbar a {
- float: right;
- margin-right: 14px;
- color: #1F92D8;
- padding-top: 7px;
- text-shadow: 0 -1px 0 #E5E5E5;
- }
- .toolbar {
- float: right;
- }
- .toolbar ul {
- list-style: none outside none;
- display: inline;
- }
- .toolbar li {
- display: inline;
- }
- .wordbreak {
- max-width: 500px;
- word-wrap: break-word;
- }
- .menubar {
- height: 30px;
- left: 0;
- overflow: visible;
- position: fixed;
- right: 0;
- top: 40px;
- z-index: 9999;
- }
- .menubar-inner, .menubar .fill {
- background-color: #d0e1f4;
- background-image: -moz-linear-gradient(center top, #d0e1f4, #d0e1f4);
- background-image: -webkit-linear-gradient(top, #d0e1f4, #d0e1f4);
- background-repeat: repeat-x;
- }
- .menubar-inner a {
- color: #333;
- font-weight: bold;
- }
- .menubar-inner a:hover {
- color: #01639C;
- }
- .menubar-inner a.selected {
- color: #FFFFFF;
- padding: 2px;
- padding-left: 10px;
- padding-right: 10px;
- margin-top: 8px;
- background-color: #01639C;
- background-image: -moz-linear-gradient(center top, #01639C, #015382);
- background-repeat: repeat-x;
- box-shadow: 0 0 3px #015382 inset;
- -moz-box-shadow: 0 0 3px #015382 inset;
- -webkit-box-shadow: 0 0 3px #015382 inset;
- border-radius: 30px;
- }
- .menubar-inner a.disabled {
- cursor: default;
- opacity: 0.65;
- }
- .menubar-inner a.disabled:hover {
- color: #333;
- }
- .widget-box {
- background: none repeat scroll 0 0 #F9F9F9;
- border-top: 1px solid #CDCDCD;
- border-left: 1px solid #CDCDCD;
- border-right: 1px solid #CDCDCD;
- clear: both;
- margin-top: 10px;
- margin-bottom: 16px;
- position: relative;
- }
- .widget-title {
- background-color: #efefef;
- background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#fdfdfd), to(#eaeaea));
- background-image: -webkit-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
- background-image: -moz-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
- background-image: -ms-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
- background-image: -o-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
- background-image: -linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#eaeaea', GradientType=0); /* IE6-9 */
- border-bottom: 1px solid #CDCDCD;
- height: 36px;
- }
- .widget-title span.icon {
- border-right: 1px solid #cdcdcd;
- padding: 9px 10px 7px 11px;
- float: left;
- opacity: .7;
- }
- .widget-title h5 {
- color: #666666;
- text-shadow: 0 1px 0 #ffffff;
- float: left;
- font-size: 16px;
- font-weight: bold;
- padding: 10px;
- line-height: 16px;
- margin: 0;
- }
- .widget-content {
- padding-top: 15px;
- padding-bottom: 15px;
- border-bottom: 1px solid #cdcdcd;
- }
- .widget-content ul {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .widget-content ul li {
- margin: 0;
- padding: 0;
- }
- .widget-content a {
- padding: 5px 15px;
- display: block;
- font-size: 14px;
- font-weight: bold;
- }
- .widget-content a i {
- color: #999999;
- }
- .widget-content a:hover {
- background-color: #EEEEEE;
- text-decoration: none;
- }
- .widget-content a:hover i {
- color: #333333;
- }
- code {
- line-height: 1.4em;
- }
- .noPadding {
- padding: 0;
- }
- .contextMenu {
- display: none;
- }
- .contextItem {
- cursor: pointer;
- }
- .fieldError {
- border-color: #EE5F5B;
- color: #B94A48;
- }
- ul.errorlist {
- list-style: none outside none;
- margin: 0;
- }
- ul.errorlist li {
- color: #B94A48;
- padding: 2px;
- font-weight: bold;
- font-style: italic;
- }
- .homeLink,
- .trashLink,
- .historyLink {
- font-size: 1.25em;
- line-height: 18px;
- }
- .hueBreadcrumb {
- font-size: 1.25em;
- list-style: none outside none;
- padding: 9px 9px;
- }
- .hueBreadcrumb li {
- display: inline-block;
- text-shadow: 0 1px 0 #FFFFFF;
- }
- .hueBreadcrumb .divider {
- color: #999999;
- padding: 0 5px;
- }
- .hueBreadcrumb .active a {
- color: #333333;
- }
- .hueBreadcrumb a.nounderline:hover {
- text-decoration: none;
- }
- .hueBreadcrumb > li:last-child > a {
- font-weight: bold;
- color: #333333;
- }
- .hueBreadcrumb > li:last-child > span {
- display: none;
- }
- .hueWell {
- padding-bottom: 0;
- }
- .hueBreadcrumbBar {
- padding: 8px 15px;
- margin: 0 0 20px;
- list-style: none;
- }
- .ribbon-wrapper {
- width: 85px;
- height: 88px;
- overflow: hidden;
- position: fixed;
- top: 26px;
- right: -3px;
- z-index: 10001;
- }
- .ribbon {
- font: bold 15px sans-serif;
- text-align: center;
- text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- position: relative;
- padding: 7px 0;
- left: -5px;
- top: 15px;
- width: 120px;
- background-color: #da4f49;
- *background-color: #bd362f;
- background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
- background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
- background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
- background-repeat: repeat-x;
- color: #ffffff;
- -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
- -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
- }
- .ribbon:before, .ribbon:after {
- content: "";
- border-top: 3px solid #c09853;
- border-left: 3px solid transparent;
- border-right: 3px solid transparent;
- position: absolute;
- bottom: -3px;
- }
- .ribbon:before {
- left: 0;
- }
- .ribbon:after {
- right: 0;
- }
- /*********************************************************
- * From: http://datatables.net/blog/Twitter_Bootstrap
- */
- div.dataTables_length label {
- width: 460px;
- float: left;
- text-align: left;
- }
- div.dataTables_length select {
- width: 75px;
- }
- div.dataTables_filter label {
- float: right;
- width: 460px;
- }
- div.dataTables_info {
- padding-top: 8px;
- }
- div.dataTables_paginate {
- float: right;
- margin: 0;
- }
- /*
- *********************************************************/
- /* Pagination nested */
- .paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
- height: 19px;
- width: 19px;
- margin-left: 3px;
- float: left;
- }
- .paginate_disabled_previous {
- background-image: url('../art/datatables/back_disabled.jpg');
- }
- .paginate_enabled_previous {
- background-image: url('../art/datatables/back_enabled.jpg');
- }
- .paginate_disabled_next {
- background-image: url('../art/datatables/forward_disabled.jpg');
- }
- .paginate_enabled_next {
- background-image: url('../art/datatables/forward_enabled.jpg');
- }
- /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
- table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
- }
- table.display thead th {
- padding: 3px 18px 3px 10px;
- border-bottom: 1px solid black;
- font-weight: bold;
- cursor: pointer;
- *cursor: hand;
- }
- table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
- }
- table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
- }
- table.display td {
- padding: 3px 10px;
- }
- table.display td.center {
- text-align: center;
- }
- /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables sorting
- */
- .dataTables_wrapper table {
- border-collapse: separate;
- *border-collapse: collapsed;
- }
- .sorting_asc {
- cursor: pointer;
- background: url('../art/datatables/sort_asc.png') no-repeat center left;
- border-top: 3px solid #FFFFFF !important;
- padding-left: 20px !important;
- vertical-align: middle!important;
- }
- .sorting_desc {
- cursor: pointer;
- background: url('../art/datatables/sort_desc.png') no-repeat center left;
- border-top: 3px solid #FFFFFF !important;
- padding-left: 20px !important;
- vertical-align: middle!important;
- }
- .sorting {
- cursor: pointer;
- background: url('../art/datatables/sort_both.png') no-repeat center left;
- border-top: 3px solid #FFFFFF !important;
- padding-left: 20px !important;
- vertical-align: middle!important;
- }
- .sorting_disabled {
- vertical-align: middle!important;
- }
- .sorting:hover, .sorting_asc:hover, .sorting_desc:hover {
- border-top: 3px solid #EEEEEE !important;
- }
- /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
- .dataTables_scroll {
- clear: both;
- }
- .dataTables_scrollBody {
- *margin-top: -1px;
- }
- .top .dataTables_info {
- float: none;
- }
- .clear {
- clear: both;
- }
- .dataTables_empty {
- text-align: center;
- }
- tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
- }
- tfoot input.search_init {
- color: #999;
- }
- td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
- }
- td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
- }
- .example_alt_pagination div.dataTables_info {
- width: 40%;
- }
- .paging_full_numbers {
- width: 400px;
- height: 22px;
- line-height: 22px;
- }
- .paging_full_numbers span.paginate_button,
- .paging_full_numbers span.paginate_active {
- border: 1px solid #aaa;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- padding: 2px 5px;
- margin: 0 3px;
- cursor: pointer;
- *cursor: hand;
- }
- .paging_full_numbers span.paginate_button {
- background-color: #ddd;
- }
- .paging_full_numbers span.paginate_button:hover {
- background-color: #ccc;
- }
- .paging_full_numbers span.paginate_active {
- background-color: #99B3FF;
- }
- table.display tr.even.row_selected td {
- background-color: #B0BED9;
- }
- table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
- }
- tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
- }
- tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
- }
- tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
- }
- tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
- }
- tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
- }
- tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
- }
- tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
- }
- tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
- }
- tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
- }
- tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
- }
- tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
- }
- tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
- }
- tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
- }
- tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
- }
- tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
- }
- tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
- }
- tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
- }
- tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
- }
- tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
- }
- tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
- }
- tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
- }
- tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
- }
- tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
- }
- tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
- }
- /*
- * Row highlighting example
- */
- .ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
- }
- .ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
- }
- .ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
- }
- .ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
- }
- .ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
- }
- .ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
- }
- .ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
- }
- .ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
- }
- .ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
- }
- .ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
- }
- /*
- * KeyTable
- */
- table.KeyTable td {
- border: 3px solid transparent;
- }
- table.KeyTable td.focus {
- border: 3px solid #3366FF;
- }
- table.display tr.gradeA {
- background-color: #eeffee;
- }
- table.display tr.gradeC {
- background-color: #ddddff;
- }
- table.display tr.gradeX {
- background-color: #ffdddd;
- }
- table.display tr.gradeU {
- background-color: #ddd;
- }
- div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
- }
- /*
- * jHueFileChooser
- */
- .jHueFilechooserActions {
- margin-top: 14px;
- padding-top: 10px;
- border-top: 1px dashed #EEEEEE;
- }
- .pathChooser, .pathChooserKo, .pathFolderChooserKo {
- border-radius: 3px 0 0 3px !important;
- border-right: 0 !important;
- }
- .fileChooserBtn {
- border-radius: 0 3px 3px 0 !important;
- }
- /*
- * jHueSelector
- */
- .jHueSelector {
- border: 1px solid #F1F1F1;
- padding: 0;
- margin: 0;
- width: 300px;
- }
- .jHueSelectorHeader {
- background-color: #F1F1F1;
- padding: 4px;
- }
- .jHueSelector label {
- float: none;
- padding-left: 4px;
- }
- .jHueSelector label input[type=checkbox] {
- display: inline;
- margin-top: -2px;
- margin-right: 6px;
- }
- .jHueSelectorHeader input[type=text] {
- position: absolute;
- margin-left: 180px;
- width: 100px;
- height: 20px;
- min-height: 20px;
- border: 1px solid #CCCCCC;
- border-radius: 10px;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- color: #555555;
- font-size: 10px;
- padding-left: 4px;
- }
- .jHueSelectorBody {
- height: 150px;
- overflow: auto;
- }
- .jHueSelector ul, li {
- margin: 0;
- padding: 0;
- }
- .jHueSelector ul {
- padding: 4px;
- list-style: none;
- }
- .jHueSelector li.selectorDivider {
- border-bottom: 1px solid #E5E5E5;
- padding: 4px;
- color: #338BB8;
- }
- .modal-body iframe {
- border: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .modal-body iframe.scroll {
- overflow: auto;
- }
- .form-padding-fix {
- display: inline;
- padding: 0;
- margin: 0;
- }
- .table tbody tr:hover td, .table tbody tr:hover th {
- background-color: #EFEFEF;
- }
- .nounderline:hover {
- text-decoration: none;
- }
- .bar-label {
- text-align: center;
- color: #FFFFFF;
- font-size: 12px;
- text-shadow: -1px 0 1px #333, 0 1px 1px #333, 1px 0 1px #333, 0 -1px 1px #333;
- }
- .jHueNotify {
- position: fixed;
- top: 20px;
- left: 50%;
- margin-left: -200px;
- width: 400px;
- text-align: center;
- z-index: 8000;
- word-break: break-word;
- }
- .jHueNotify .close {
- right: -27px;
- }
- .empty-wrapper {
- margin-top: 50px;
- color: #BBB;
- line-height: 60px;
- }
- .empty-wrapper i {
- font-size: 148px;
- }
- /*
- * Advanced options
- */
- #advanced-btn {
- center: right
- }
- a#advanced-btn:link {
- color: black;
- text-decoration: none;
- }
- a#advanced-btn:active {
- color: black;
- text-decoration: none;
- }
- a#advanced-btn:visited {
- color: black;
- text-decoration: none;
- }
- a#advanced-btn:hover {
- color: black;
- text-decoration: none;
- }
- .hand {
- cursor: pointer;
- }
- .hueCheckbox {
- width: 15px;
- height: 15px;
- border: 1px solid #CCCCCC;
- margin-top: 2px !important;
- padding: 0 !important;
- display: block !important;
- cursor: default;
- }
- .hueCheckbox:hover {
- border-color: #999999;
- }
- .hueCheckboxText {
- left: 3px;
- position: relative;
- top: -3px;
- }
- .hueCheckbox.hide {
- display: none!important;
- }
- .modal form {
- margin: 0;
- }
- /*
- * jHueTableExtender
- */
- .rowSelected {
- background-color: #EEEEEE !important;
- }
- .columnSelected {
- background-color: #EEEEEE !important;
- }
- .cellSelected {
- background-color: #DDDDDD !important;
- }
- #jHueTableExtenderNavigator {
- position: absolute;
- left: 0;
- top: 0;
- z-index: 1000;
- display: none;
- min-width: 160px;
- padding: 10px 20px 2px 10px;
- margin: 2px 0 0;
- background-color: #ffffff;
- border: 1px solid #ccc;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
- white-space: nowrap;
- }
- #jHueTableExtenderNavigator a {
- margin-left: 10px;
- margin-right: -14px;
- margin-top: -12px;
- }
- #jHueScrollUpAnchor {
- color: #FFFFFF;
- opacity: 0.65;
- filter: alpha(opacity=65);
- display: none;
- position: fixed;
- z-index: 2147483647;
- bottom: 20px;
- right: 20px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
- background-color: #333333;
- padding: 10px;
- padding-left: 14px;
- padding-right: 14px;
- }
- #jHueScrollUpAnchor:hover {
- text-decoration: none;
- opacity: 0.85;
- filter: alpha(opacity=85);
- }
- #jHueTourMask {
- position: absolute;
- display: none;
- top: 0;
- left: 0;
- z-index: 9998;
- background-color: #FFFFFF;
- opacity: 0.9;
- filter: alpha(opacity=90);
- }
- .jHueTourBadge {
- background-color: #2c7fb3;
- background-image: -moz-linear-gradient(bottom, #2c7fb3, #01639c);
- background-image: -ms-linear-gradient(bottom, #2c7fb3, #01639c);
- background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#2c7fb3), to(#01639c));
- background-image: -webkit-linear-gradient(bottom, #2c7fb3, #01639c);
- background-image: -o-linear-gradient(bottom, #2c7fb3, #01639c);
- background-image: linear-gradient(bottom, #2c7fb3, #01639c);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01639c', endColorstr='#2c7fb3', GradientType=0);
- border: 1px solid #01639C;
- border-right: none;
- color: #FFFFFF;
- padding: 4px;
- padding-left: 8px;
- -webkit-border-top-left-radius: 4px;
- -webkit-border-bottom-left-radius: 4px;
- -moz-border-radius-topleft: 4px;
- -moz-border-radius-bottomleft: 4px;
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
- position: fixed;
- top: 100px;
- z-index: 10000;
- right: 0;
- cursor: pointer;
- }
- .jHueTourBadgeLeft {
- right: auto !important;
- left: 0;
- padding-left: 4px;
- padding-right: 8px;
- border-left: none;
- border-right: 1px solid #01639C;
- -webkit-border-top-left-radius: 0;
- -webkit-border-bottom-left-radius: 0;
- -moz-border-radius-topleft: 0;
- -moz-border-radius-bottomleft: 0;
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- -webkit-border-top-right-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- -moz-border-radius-topright: 4px;
- -moz-border-radius-bottomright: 4px;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- }
- .jHueTourBadge:hover {
- background-color: #2C7FB3;
- }
- .jHueTourExposed {
- z-index: 9999;
- }
- .popover-inner {
- text-align: left;
- }
- .popover {
- z-index: 10000;
- }
- .CodeMirror-hints {
- position: absolute;
- z-index: 10000 !important;
- overflow: hidden;
- list-style: none;
- margin: 0;
- padding: 2px;
- -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
- -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
- box-shadow: 2px 3px 5px rgba(0,0,0,.2);
- border-radius: 3px;
- border: 1px solid silver;
- background: white;
- font-size: 90%;
- font-family: monospace;
- max-height: 20em;
- overflow-y: auto;
- }
- .CodeMirror-hint {
- margin: 0;
- padding: 0 4px;
- border-radius: 2px;
- overflow: hidden;
- white-space: pre;
- color: black;
- cursor: pointer;
- }
- .CodeMirror-hint-active, .CodeMirror-hint:hover {
- background: #08f;
- color: white;
- }
- .CodeMirror-spinner {
- position: absolute;
- z-index: 9999;
- }
- .tooltip {
- border: 0;
- z-index: 1032;
- }
- .nav i {
- line-height: 24px!important;
- }
- .navbar .nav > li > a {
- margin-right: 0!important;
- padding-right: 5px;
- padding-left: 5px;
- }
- .brand {
- padding: 10px 20px!important;
- margin-top: 4px!important;
- }
- .card-home {
- padding-top: 4px;
- }
- .card-small {
- margin-top: 0;
- padding-top: 4px;
- }
- .card-listcontent ul {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .card-listcontent ul li {
- margin: 0;
- padding: 0;
- }
- .card-listcontent a {
- padding: 5px 15px;
- display: block;
- font-size: 14px;
- font-weight: bold;
- }
- .card-listcontent a i {
- color: #999999;
- }
- .card-listcontent a:hover {
- background-color: #EEEEEE;
- text-decoration: none;
- }
- .card-listcontent a:hover i {
- color: #333333;
- }
- .card-tab {
- margin-top: 0;
- border-bottom: 1px solid #D8D8D8;
- border-top: 0;
- }
- .card-tab-bordertop {
- border-top: 1px solid #D8D8D8;
- }
- .card-marginbottom {
- margin-bottom: 20px!important;
- }
- .card-heading-blue {
- color: #338BB8!important;
- }
- .card-heading-nopadding {
- padding-left: 0!important;
- }
- .card-heading-noborder {
- border-bottom: none!important;
- }
- .dt-records {
- margin-left: 10px;
- }
- .dt-pages {
- margin-right: 10px;
- float: right;
- }
- .progress {
- height: 20px;
- margin-bottom: 0;
- padding: 0;
- border: none;
- }
- .nav-list > li.white {
- margin-left: -15px;
- margin-right: -15px;
- background-color: #FFFFFF;
- border-left: 2px solid transparent;
- margin-top: 1px;
- padding: 9px 18px;
- text-shadow: none;
- transition: border 0.218s ease 0s;
- }
- .input-append.date .add-on i, .input-prepend.date .add-on i {
- line-height: 28px;
- }
- .modal {
- padding: 25px 20px!important;
- margin-left: -290px!important;
- }
- #jHueTourVideoPlayer {
- margin-left: -320px!important;
- width: 640px;
- }
- .navigator {
- position: fixed;
- top: 0;
- width: 100%;
- background-color: #338BB8;
- height: 28px;
- z-index: 1033;
- min-width: 740px;
- }
- .navigator .brand {
- padding-top: 0 !important;
- }
- @media (max-width: 1180px) {
- .navigator .nav-tabs > li > a, .navigator .nav-pills > li > a {
- padding-right: 6px;
- padding-left: 6px;
- }
- }
- @media (max-width: 1024px) {
- .navigator .hideable {
- display: none;
- }
- }
- @media (max-width: 830px) {
- .brand {
- display: none;
- }
- }
- .navbar-fixed-top {
- top: 28px;
- }
- .navigator .dropdown-menu {
- z-index: 20000;
- box-shadow: none;
- margin-top: -4px;
- margin-left: -1px;
- border-top: 2px solid #EEE;
- }
- .navigator .nav-pills > li > a {
- color: #DBE8F1;
- font-weight: bold;
- margin-bottom: 2px;
- margin-top: 2px;
- padding-bottom: 4px !important;
- padding-top: 6px;
- }
- .navigator .dropdown-menu > li > a > .fa {
- color: #267CC3;
- font-size: 19px;
- padding-left: 5px;
- padding-right: 8px;
- }
- .navigator .dropdown-menu > li > a {
- padding-left: 5px;
- padding-right: 30px;
- }
- .navigator .dropdown-menu > li > a > img {
- padding-right: 6px;
- }
- .navigator .nav-pills > li.dropdown > a {
- padding-bottom: 2px !important;
- }
- .navigator .nav-pills > li > a:hover, .navigator .nav-pills > li > a:focus {
- color: #FFF;
- border-color: #EEE !important;
- }
- .navigator .nav i {
- line-height: 14px !important;
- }
- .navigator .nav-pills .open .dropdown-toggle, .navigator .nav > li.dropdown.open.active > a:hover, .navigator .nav > li.dropdown.open.active > a:focus {
- color: #FFFFFF;
- }
- .currentApp {
- font-size: 20px;
- padding-top: 13px;
- padding-left: 0;
- color: #338BB8;
- cursor: pointer;
- }
- .currentApp a {
- font-size: 20px !important;
- color: #338BB8 !important;
- padding: 0 !important;
- margin-top: -4px !important;
- border: none !important;
- max-width: none!important;
- }
- .currentApp a:focus, .currentApp a:hover {
- color: #338BB8 !important;
- }
- .currentApp img {
- margin-top: -3px;
- }
- .navbar-fixed-top.nokids .navbar-inner {
- height: 45px;
- }
- a, a:hover, a:active, a:focus {
- outline: 0;
- }
- #jHueTourVideoPlayer .modal-body {
- max-height: 460px;
- }
- .hueOverlay {
- top: 28px;
- left: 0;
- right: 0;
- bottom: 0;
- position: fixed;
- z-index: 100500;
- background-color: #FFF;
- color: #333;
- font-size: 60px;
- opacity: 0.7;
- text-align: center;
- vertical-align: middle;
- padding-top: 70px;
- }
- #jHueBlueprintTooltip {
- position: absolute;
- display: none;
- border: 1px solid #61AE36;
- padding: 2px;
- background-color: #C2E0B0;
- opacity: 0.80;
- }
- .btn.active, .btn:active {
- border-color: rgba(0, 0, 0, 0.1);
- outline: 0;
- -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
- -moz-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
- box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
- }
- .side-labels {
- -webkit-transform: rotate(-90deg);
- -moz-transform: rotate(-90deg);
- -o-transform: rotate(-90deg);
- -ms-transform: rotate(-90deg);
- -sand-transform: rotate(90deg);
- -webkit-transform-origin: 100% 0;
- -moz-transform-origin: 100% 0;
- -ms-transform-origin: 100% 0;
- -o-transform-origin: 100% 0;
- transform-origin: 100% 0;
- display: block;
- position: fixed;
- top: 270px;
- right: 30px;
- }
- .side-labels li {
- font-size: 1em;
- padding: 4px 16px !important;
- cursor: pointer;
- font-weight: 500;
- border-top: 2px solid #FFF;
- }
- .side-labels li a {
- color: #F0F0F0!important;
- }
- .side-labels li:hover a {
- color: #FFF!important;
- text-decoration: none;
- }
- .side-labels .feedback {
- background-color: #338BB8;
- }
- .side-labels .feedback:hover {
- border-top-color: #338BB8;
- }
- body.modal-open {
- overflow: hidden;
- }
- .demi-modal {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1050;
- width: 100%;
- margin: -1px;
- padding: 0;
- background-color: #ffffff;
- min-height: 210px;
- border: 1px solid #999;
- border: 1px solid rgba(0, 0, 0, 0.3);
- *border: 1px solid #999;
- -webkit-border-bottom-right-radius: 0px;
- -webkit-border-bottom-left-radius: 0px;
- -moz-border-radius-bottomright: 0px;
- -moz-border-radius-bottomleft: 0px;
- border-bottom-right-radius: 0px;
- border-bottom-left-radius: 0px;
- outline: none;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding-box;
- background-clip: padding-box;
- }
- .demi-modal.fade {
- top: -25%;
- -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
- -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
- -o-transition: opacity 0.3s linear, top 0.3s ease-out;
- transition: opacity 0.3s linear, top 0.3s ease-out;
- }
- .demi-modal.fade.in {
- top: 0;
- }
- .demi-modal .modal-header {
- padding: 9px 15px;
- border-bottom: 1px solid #eee;
- }
- .demi-modal .modal-header .close {
- margin-top: 2px;
- }
- .demi-modal .modal-body {
- position: relative;
- max-height: 400px;
- padding: 15px;
- overflow-y: auto;
- }
- .demi-modal .modal-footer {
- padding: 10px;
- }
- .control-group.error .input-prepend .add-on i, .control-group.error .input-append .add-on i {
- color: #fff;
- }
- .app-icon {
- width: 24px;
- height: 24px;
- }
- .brand img {
- width: 60px;
- height: 16px;
- }
- /*********************************************************
- *
- * Misc styles that can be reused as needed
- * - from admin_collections.mako template
- *
- ********************************************************/
- .spinner {
- color: #ddd;
- font-size: 60px;
- }
- .pointer {
- cursor: pointer;
- }
- .inline {
- display: inline;
- }
- .actionbar-creation {
- margin: 0;
- }
- .actionbar-actions {
- margin: 0px 0px 10px 0px;
- }
- .jHueAutocomplete {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- border-top: none;
- }
- .jHueAutocomplete .popover-content {
- padding: 0;
- max-height: 200px;
- overflow-y: auto;
- }
- .jHueAutocomplete .popover-content ul li {
- cursor: pointer;
- margin: 3px;
- padding: 2px;
- }
- .jHueAutocomplete .popover-content ul li:hover, .jHueAutocomplete .popover-content ul li.active {
- color: #FFFFFF;
- background: #338BB8;
- }
- .fa-1halfx {
- font-size: 1.5em;
- }
- input.no-margin, select.no-margin {
- margin-bottom: 0;
- }
- /****************************************************
- *
- * Styles for opaque layover messages
- * Example is "Drop files anywhere" layover
- *
- *****************************************************/
- @-webkit-keyframes bounceInDown {
- 0%, 60%, 75%, 90%, 100% {
- -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
- transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
- }
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(0, -3000px, 0);
- transform: translate3d(0, -3000px, 0);
- }
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(0, 25px, 0);
- transform: translate3d(0, 25px, 0);
- }
- 75% {
- -webkit-transform: translate3d(0, -10px, 0);
- transform: translate3d(0, -10px, 0);
- }
- 90% {
- -webkit-transform: translate3d(0, 5px, 0);
- transform: translate3d(0, 5px, 0);
- }
- 100% {
- -webkit-transform: none;
- transform: none;
- }
- }
- @keyframes bounceInDown {
- 0%, 60%, 75%, 90%, 100% {
- -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
- transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
- }
- 0% {
- opacity: 0;
- -webkit-transform: translate3d(0, -3000px, 0);
- -ms-transform: translate3d(0, -3000px, 0);
- transform: translate3d(0, -3000px, 0);
- }
- 60% {
- opacity: 1;
- -webkit-transform: translate3d(0, 25px, 0);
- -ms-transform: translate3d(0, 25px, 0);
- transform: translate3d(0, 25px, 0);
- }
- 75% {
- -webkit-transform: translate3d(0, -10px, 0);
- -ms-transform: translate3d(0, -10px, 0);
- transform: translate3d(0, -10px, 0);
- }
- 90% {
- -webkit-transform: translate3d(0, 5px, 0);
- -ms-transform: translate3d(0, 5px, 0);
- transform: translate3d(0, 5px, 0);
- }
- 100% {
- -webkit-transform: none;
- -ms-transform: none;
- transform: none;
- }
- }
- .break-word {
- word-wrap: break-word
- }
- .jHueHdfsTree .content {
- margin-left: 14px;
- }
- .jHueHdfsTree a.selected {
- font-weight: bold;
- }
- .modal-header .close {
- position: inherit;
- margin-top: -10px;
- }
- form.form-inline .modal-header .close {
- margin-top: 0;
- margin-right: -10px;
- }
- .margin-top-10 {
- margin-top: 10px;
- }
- .margin-top-20 {
- margin-top: 20px;
- }
- .margin-top-30 {
- margin-top: 30px;
- }
- .margin-left-10 {
- margin-left: 10px;
- }
- .margin-left-20 {
- margin-left: 20px;
- }
- .margin-left-30 {
- margin-left: 30px;
- }
- .margin-bottom-10 {
- margin-bottom: 10px;
- }
- .margin-bottom-20 {
- margin-bottom: 20px;
- }
- .margin-bottom-30 {
- margin-bottom: 30px;
- }
- .margin-right-10 {
- margin-right: 10px;
- }
- .margin-right-20 {
- margin-right: 20px;
- }
- .margin-right-30 {
- margin-right: 30px;
- }
|