hue3.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929
  1. /*
  2. Licensed to Cloudera, Inc. under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. Cloudera, Inc. licenses this file
  6. to you under the Apache License, Version 2.0 (the
  7. "License"); you may not use this file except in compliance
  8. with the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. .subnav {
  17. background-color: #EEEEEE;
  18. background-image: -moz-linear-gradient(center top, #F5F5F5 0%, #EEEEEE 100%);
  19. background-repeat: repeat-x;
  20. border: 1px solid #E5E5E5;
  21. border-radius: 4px;
  22. -webkit-border-radius: 4px;
  23. -moz-border-radius: 4px;
  24. height: 36px;
  25. width: 100%;
  26. }
  27. .subnav .nav {
  28. margin-bottom: 0;
  29. }
  30. .subnav .nav > li > a {
  31. border-left: 1px solid #F5F5F5;
  32. border-radius: 0;
  33. -webkit-border-radius: 0;
  34. -moz-border-radius: 0;
  35. border-right: 1px solid #E5E5E5;
  36. margin: 0;
  37. padding-bottom: 11px;
  38. padding-top: 11px;
  39. }
  40. .subnav .nav > li > a:hover {
  41. border-right: 1px solid #E5E5E5;
  42. border-left: 1px solid #F5F5F5;
  43. }
  44. .subnav .nav > .active > a, .subnav .nav > .active > a:hover {
  45. background-color: #E9E9E9;
  46. border-left: 0 none;
  47. border-right-color: #DDDDDD;
  48. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05) inset;
  49. color: #777777;
  50. padding-left: 13px;
  51. }
  52. .subnav .nav > .active > a .caret, .subnav .nav > .active > a:hover .caret {
  53. border-top-color: #777777;
  54. }
  55. .subnav .nav > li:first-child > a, .subnav .nav > li:first-child > a:hover {
  56. border-left: 0 none;
  57. border-radius: 4px 0 0 4px;
  58. -webkit-border-radius: 4px 0 0 4px;
  59. -moz-border-radius: 4px 0 0 4px;
  60. padding-left: 12px;
  61. }
  62. .subnav .nav > li:last-child > a {
  63. border-right: 0 none;
  64. }
  65. .subnav .dropdown-menu {
  66. border-radius: 0 0 4px 4px;
  67. -webkit-border-radius: 0 0 4px 4px;
  68. -moz-border-radius: 0 0 4px 4px;
  69. }
  70. .subnav-fixed {
  71. border-color: #D5D5D5;
  72. border-radius: 0;
  73. -webkit-border-radius: 0;
  74. -moz-border-radius: 0;
  75. border-width: 0 0 1px;
  76. box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 5px rgba(0, 0, 0, 0.1);
  77. left: 0;
  78. position: fixed;
  79. right: 0;
  80. top: 48px;
  81. z-index: 1020;
  82. }
  83. .subnav-fixed .nav {
  84. margin: 0 auto;
  85. padding: 0 1px;
  86. }
  87. .subnav .nav > li:first-child > a, .subnav .nav > li:first-child > a:hover {
  88. border-radius: 0;
  89. -webkit-border-radius: 0;
  90. -moz-border-radius: 0;
  91. }
  92. .form-stacked {
  93. margin: 0;
  94. }
  95. .form-inline input, .form-inline a {
  96. vertical-align: baseline;
  97. }
  98. .pagination p {
  99. padding-top: 6px;
  100. }
  101. .right {
  102. text-align: right !important;
  103. }
  104. .center {
  105. text-align: center !important;
  106. }
  107. .left {
  108. text-align: left !important;
  109. }
  110. .nowrap, .no-wrap {
  111. white-space: nowrap;
  112. }
  113. a.toggle-display-link:link {
  114. color: black;
  115. text-decoration: none;
  116. }
  117. a.toggle-display-link:active {
  118. color: black;
  119. text-decoration: none;
  120. }
  121. a.toggle-display-link:visited {
  122. color: black;
  123. text-decoration: none;
  124. }
  125. a.toggle-display-link:hover {
  126. color: black;
  127. text-decoration: none;
  128. }
  129. .withTitle {
  130. top: 60px !important;
  131. }
  132. .clear {
  133. clear: both;
  134. }
  135. .sectionbar {
  136. background-color: #E5E5E5;
  137. background-image: linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  138. background-image: -o-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  139. background-image: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  140. background-image: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  141. background-image: -ms-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  142. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(255, 255, 255)), color-stop(1, rgb(229, 229, 229)));
  143. height: 40px;
  144. border-bottom: 1px solid #CBCBCB;
  145. padding-top: 10px;
  146. }
  147. .sectionbar h2 {
  148. font-size: 20px;
  149. font-weight: 400;
  150. padding-left: 20px;
  151. float: left;
  152. }
  153. .sectionbar h2.selected {
  154. color: #01639C;
  155. }
  156. .sectionbar h2.subsection, .sectionbar h2.subsubsection {
  157. padding-left: 6px;
  158. }
  159. .sectionbar h3 {
  160. float: left;
  161. padding-left: 6px;
  162. color: #CCC;
  163. font-size: 12px;
  164. }
  165. .sectionbar a {
  166. float: right;
  167. margin-right: 14px;
  168. color: #1F92D8;
  169. padding-top: 7px;
  170. text-shadow: 0 -1px 0 #E5E5E5;
  171. }
  172. .toolbar {
  173. float: right;
  174. }
  175. .toolbar ul {
  176. list-style: none outside none;
  177. display: inline;
  178. }
  179. .toolbar li {
  180. display: inline;
  181. }
  182. .wordbreak {
  183. max-width: 500px;
  184. word-wrap: break-word;
  185. }
  186. .menubar {
  187. height: 30px;
  188. left: 0;
  189. overflow: visible;
  190. position: fixed;
  191. right: 0;
  192. top: 40px;
  193. z-index: 9999;
  194. }
  195. .menubar-inner, .menubar .fill {
  196. background-color: #d0e1f4;
  197. background-image: -moz-linear-gradient(center top, #d0e1f4, #d0e1f4);
  198. background-image: -webkit-linear-gradient(top, #d0e1f4, #d0e1f4);
  199. background-repeat: repeat-x;
  200. }
  201. .menubar-inner a {
  202. color: #333;
  203. font-weight: bold;
  204. }
  205. .menubar-inner a:hover {
  206. color: #01639C;
  207. }
  208. .menubar-inner a.selected {
  209. color: #FFFFFF;
  210. padding: 2px;
  211. padding-left: 10px;
  212. padding-right: 10px;
  213. margin-top: 8px;
  214. background-color: #01639C;
  215. background-image: -moz-linear-gradient(center top, #01639C, #015382);
  216. background-repeat: repeat-x;
  217. box-shadow: 0 0 3px #015382 inset;
  218. -moz-box-shadow: 0 0 3px #015382 inset;
  219. -webkit-box-shadow: 0 0 3px #015382 inset;
  220. border-radius: 30px;
  221. }
  222. .menubar-inner a.disabled {
  223. cursor: default;
  224. opacity: 0.65;
  225. }
  226. .menubar-inner a.disabled:hover {
  227. color: #333;
  228. }
  229. .widget-box {
  230. background: none repeat scroll 0 0 #F9F9F9;
  231. border-top: 1px solid #CDCDCD;
  232. border-left: 1px solid #CDCDCD;
  233. border-right: 1px solid #CDCDCD;
  234. clear: both;
  235. margin-top: 10px;
  236. margin-bottom: 16px;
  237. position: relative;
  238. }
  239. .widget-title {
  240. background-color: #efefef;
  241. background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#fdfdfd), to(#eaeaea));
  242. background-image: -webkit-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
  243. background-image: -moz-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
  244. background-image: -ms-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
  245. background-image: -o-linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
  246. background-image: -linear-gradient(top, #fdfdfd 0%, #eaeaea 100%);
  247. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#eaeaea', GradientType=0); /* IE6-9 */
  248. border-bottom: 1px solid #CDCDCD;
  249. height: 36px;
  250. }
  251. .widget-title span.icon {
  252. border-right: 1px solid #cdcdcd;
  253. padding: 9px 10px 7px 11px;
  254. float: left;
  255. opacity: .7;
  256. }
  257. .widget-title h5 {
  258. color: #666666;
  259. text-shadow: 0 1px 0 #ffffff;
  260. float: left;
  261. font-size: 16px;
  262. font-weight: bold;
  263. padding: 10px;
  264. line-height: 16px;
  265. margin: 0;
  266. }
  267. .widget-content {
  268. padding-top: 15px;
  269. padding-bottom: 15px;
  270. border-bottom: 1px solid #cdcdcd;
  271. }
  272. .widget-content ul {
  273. margin: 0;
  274. padding: 0;
  275. list-style: none;
  276. }
  277. .widget-content ul li {
  278. margin: 0;
  279. padding: 0;
  280. }
  281. .widget-content a {
  282. padding: 5px 15px;
  283. display: block;
  284. font-size: 14px;
  285. font-weight: bold;
  286. }
  287. .widget-content a i {
  288. color: #999999;
  289. }
  290. .widget-content a:hover {
  291. background-color: #EEEEEE;
  292. text-decoration: none;
  293. }
  294. .widget-content a:hover i {
  295. color: #333333;
  296. }
  297. code {
  298. line-height: 1.4em;
  299. }
  300. .noPadding {
  301. padding: 0;
  302. }
  303. .contextMenu {
  304. display: none;
  305. }
  306. .contextItem {
  307. cursor: pointer;
  308. }
  309. .fieldError {
  310. border-color: #EE5F5B;
  311. color: #B94A48;
  312. }
  313. ul.errorlist {
  314. list-style: none outside none;
  315. margin: 0;
  316. }
  317. ul.errorlist li {
  318. color: #B94A48;
  319. padding: 2px;
  320. font-weight: bold;
  321. font-style: italic;
  322. }
  323. .homeLink,
  324. .trashLink,
  325. .historyLink {
  326. font-size: 1.25em;
  327. line-height: 18px;
  328. }
  329. .hueBreadcrumb {
  330. font-size: 1.25em;
  331. list-style: none outside none;
  332. padding: 9px 9px;
  333. }
  334. .hueBreadcrumb li {
  335. display: inline-block;
  336. text-shadow: 0 1px 0 #FFFFFF;
  337. }
  338. .hueBreadcrumb .divider {
  339. color: #999999;
  340. padding: 0 5px;
  341. }
  342. .hueBreadcrumb .active a {
  343. color: #333333;
  344. }
  345. .hueBreadcrumb a.nounderline:hover {
  346. text-decoration: none;
  347. }
  348. .hueBreadcrumb > li:last-child > a {
  349. font-weight: bold;
  350. color: #333333;
  351. }
  352. .hueBreadcrumb > li:last-child > span {
  353. display: none;
  354. }
  355. .hueWell {
  356. padding-bottom: 0;
  357. }
  358. .hueBreadcrumbBar {
  359. padding: 8px 15px;
  360. margin: 0 0 20px;
  361. list-style: none;
  362. }
  363. .ribbon-wrapper {
  364. width: 85px;
  365. height: 88px;
  366. overflow: hidden;
  367. position: fixed;
  368. top: 26px;
  369. right: -3px;
  370. z-index: 10001;
  371. }
  372. .ribbon {
  373. font: bold 15px sans-serif;
  374. text-align: center;
  375. text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
  376. -webkit-transform: rotate(45deg);
  377. -moz-transform: rotate(45deg);
  378. -ms-transform: rotate(45deg);
  379. -o-transform: rotate(45deg);
  380. position: relative;
  381. padding: 7px 0;
  382. left: -5px;
  383. top: 15px;
  384. width: 120px;
  385. background-color: #da4f49;
  386. *background-color: #bd362f;
  387. background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  388. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  389. background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  390. background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  391. background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  392. background-repeat: repeat-x;
  393. color: #ffffff;
  394. -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  395. -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  396. box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  397. }
  398. .ribbon:before, .ribbon:after {
  399. content: "";
  400. border-top: 3px solid #c09853;
  401. border-left: 3px solid transparent;
  402. border-right: 3px solid transparent;
  403. position: absolute;
  404. bottom: -3px;
  405. }
  406. .ribbon:before {
  407. left: 0;
  408. }
  409. .ribbon:after {
  410. right: 0;
  411. }
  412. /*********************************************************
  413. * From: http://datatables.net/blog/Twitter_Bootstrap
  414. */
  415. div.dataTables_length label {
  416. width: 460px;
  417. float: left;
  418. text-align: left;
  419. }
  420. div.dataTables_length select {
  421. width: 75px;
  422. }
  423. div.dataTables_filter label {
  424. float: right;
  425. width: 460px;
  426. }
  427. div.dataTables_info {
  428. padding-top: 8px;
  429. }
  430. div.dataTables_paginate {
  431. float: right;
  432. margin: 0;
  433. }
  434. /*
  435. *********************************************************/
  436. /* Pagination nested */
  437. .paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
  438. height: 19px;
  439. width: 19px;
  440. margin-left: 3px;
  441. float: left;
  442. }
  443. .paginate_disabled_previous {
  444. background-image: url('../art/datatables/back_disabled.jpg');
  445. }
  446. .paginate_enabled_previous {
  447. background-image: url('../art/datatables/back_enabled.jpg');
  448. }
  449. .paginate_disabled_next {
  450. background-image: url('../art/datatables/forward_disabled.jpg');
  451. }
  452. .paginate_enabled_next {
  453. background-image: url('../art/datatables/forward_enabled.jpg');
  454. }
  455. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  456. * DataTables display
  457. */
  458. table.display {
  459. margin: 0 auto;
  460. clear: both;
  461. width: 100%;
  462. /* Note Firefox 3.5 and before have a bug with border-collapse
  463. * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
  464. * border-spacing: 0; is one possible option. Conditional-css.com is
  465. * useful for this kind of thing
  466. *
  467. * Further note IE 6/7 has problems when calculating widths with border width.
  468. * It subtracts one px relative to the other browsers from the first column, and
  469. * adds one to the end...
  470. *
  471. * If you want that effect I'd suggest setting a border-top/left on th/td's and
  472. * then filling in the gaps with other borders.
  473. */
  474. }
  475. table.display thead th {
  476. padding: 3px 18px 3px 10px;
  477. border-bottom: 1px solid black;
  478. font-weight: bold;
  479. cursor: pointer;
  480. *cursor: hand;
  481. }
  482. table.display tfoot th {
  483. padding: 3px 18px 3px 10px;
  484. border-top: 1px solid black;
  485. font-weight: bold;
  486. }
  487. table.display tr.heading2 td {
  488. border-bottom: 1px solid #aaa;
  489. }
  490. table.display td {
  491. padding: 3px 10px;
  492. }
  493. table.display td.center {
  494. text-align: center;
  495. }
  496. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  497. * DataTables sorting
  498. */
  499. .dataTables_wrapper table {
  500. border-collapse: separate;
  501. *border-collapse: collapsed;
  502. }
  503. .sorting_asc {
  504. cursor: pointer;
  505. background: url('../art/datatables/sort_asc.png') no-repeat center left;
  506. border-top: 3px solid #FFFFFF !important;
  507. padding-left: 20px !important;
  508. vertical-align: middle!important;
  509. }
  510. .sorting_desc {
  511. cursor: pointer;
  512. background: url('../art/datatables/sort_desc.png') no-repeat center left;
  513. border-top: 3px solid #FFFFFF !important;
  514. padding-left: 20px !important;
  515. vertical-align: middle!important;
  516. }
  517. .sorting {
  518. cursor: pointer;
  519. background: url('../art/datatables/sort_both.png') no-repeat center left;
  520. border-top: 3px solid #FFFFFF !important;
  521. padding-left: 20px !important;
  522. vertical-align: middle!important;
  523. }
  524. .sorting_disabled {
  525. vertical-align: middle!important;
  526. }
  527. .sorting:hover, .sorting_asc:hover, .sorting_desc:hover {
  528. border-top: 3px solid #EEEEEE !important;
  529. }
  530. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  531. * Misc
  532. */
  533. .dataTables_scroll {
  534. clear: both;
  535. }
  536. .dataTables_scrollBody {
  537. *margin-top: -1px;
  538. }
  539. .top .dataTables_info {
  540. float: none;
  541. }
  542. .clear {
  543. clear: both;
  544. }
  545. .dataTables_empty {
  546. text-align: center;
  547. }
  548. tfoot input {
  549. margin: 0.5em 0;
  550. width: 100%;
  551. color: #444;
  552. }
  553. tfoot input.search_init {
  554. color: #999;
  555. }
  556. td.group {
  557. background-color: #d1cfd0;
  558. border-bottom: 2px solid #A19B9E;
  559. border-top: 2px solid #A19B9E;
  560. }
  561. td.details {
  562. background-color: #d1cfd0;
  563. border: 2px solid #A19B9E;
  564. }
  565. .example_alt_pagination div.dataTables_info {
  566. width: 40%;
  567. }
  568. .paging_full_numbers {
  569. width: 400px;
  570. height: 22px;
  571. line-height: 22px;
  572. }
  573. .paging_full_numbers span.paginate_button,
  574. .paging_full_numbers span.paginate_active {
  575. border: 1px solid #aaa;
  576. -webkit-border-radius: 5px;
  577. -moz-border-radius: 5px;
  578. padding: 2px 5px;
  579. margin: 0 3px;
  580. cursor: pointer;
  581. *cursor: hand;
  582. }
  583. .paging_full_numbers span.paginate_button {
  584. background-color: #ddd;
  585. }
  586. .paging_full_numbers span.paginate_button:hover {
  587. background-color: #ccc;
  588. }
  589. .paging_full_numbers span.paginate_active {
  590. background-color: #99B3FF;
  591. }
  592. table.display tr.even.row_selected td {
  593. background-color: #B0BED9;
  594. }
  595. table.display tr.odd.row_selected td {
  596. background-color: #9FAFD1;
  597. }
  598. tr.odd.gradeA td.sorting_1 {
  599. background-color: #c4ffc4;
  600. }
  601. tr.odd.gradeA td.sorting_2 {
  602. background-color: #d1ffd1;
  603. }
  604. tr.odd.gradeA td.sorting_3 {
  605. background-color: #d1ffd1;
  606. }
  607. tr.even.gradeA td.sorting_1 {
  608. background-color: #d5ffd5;
  609. }
  610. tr.even.gradeA td.sorting_2 {
  611. background-color: #e2ffe2;
  612. }
  613. tr.even.gradeA td.sorting_3 {
  614. background-color: #e2ffe2;
  615. }
  616. tr.odd.gradeC td.sorting_1 {
  617. background-color: #c4c4ff;
  618. }
  619. tr.odd.gradeC td.sorting_2 {
  620. background-color: #d1d1ff;
  621. }
  622. tr.odd.gradeC td.sorting_3 {
  623. background-color: #d1d1ff;
  624. }
  625. tr.even.gradeC td.sorting_1 {
  626. background-color: #d5d5ff;
  627. }
  628. tr.even.gradeC td.sorting_2 {
  629. background-color: #e2e2ff;
  630. }
  631. tr.even.gradeC td.sorting_3 {
  632. background-color: #e2e2ff;
  633. }
  634. tr.odd.gradeX td.sorting_1 {
  635. background-color: #ffc4c4;
  636. }
  637. tr.odd.gradeX td.sorting_2 {
  638. background-color: #ffd1d1;
  639. }
  640. tr.odd.gradeX td.sorting_3 {
  641. background-color: #ffd1d1;
  642. }
  643. tr.even.gradeX td.sorting_1 {
  644. background-color: #ffd5d5;
  645. }
  646. tr.even.gradeX td.sorting_2 {
  647. background-color: #ffe2e2;
  648. }
  649. tr.even.gradeX td.sorting_3 {
  650. background-color: #ffe2e2;
  651. }
  652. tr.odd.gradeU td.sorting_1 {
  653. background-color: #c4c4c4;
  654. }
  655. tr.odd.gradeU td.sorting_2 {
  656. background-color: #d1d1d1;
  657. }
  658. tr.odd.gradeU td.sorting_3 {
  659. background-color: #d1d1d1;
  660. }
  661. tr.even.gradeU td.sorting_1 {
  662. background-color: #d5d5d5;
  663. }
  664. tr.even.gradeU td.sorting_2 {
  665. background-color: #e2e2e2;
  666. }
  667. tr.even.gradeU td.sorting_3 {
  668. background-color: #e2e2e2;
  669. }
  670. /*
  671. * Row highlighting example
  672. */
  673. .ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
  674. background-color: #ECFFB3;
  675. }
  676. .ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
  677. background-color: #E6FF99;
  678. }
  679. .ex_highlight_row #example tr.even:hover {
  680. background-color: #ECFFB3;
  681. }
  682. .ex_highlight_row #example tr.even:hover td.sorting_1 {
  683. background-color: #DDFF75;
  684. }
  685. .ex_highlight_row #example tr.even:hover td.sorting_2 {
  686. background-color: #E7FF9E;
  687. }
  688. .ex_highlight_row #example tr.even:hover td.sorting_3 {
  689. background-color: #E2FF89;
  690. }
  691. .ex_highlight_row #example tr.odd:hover {
  692. background-color: #E6FF99;
  693. }
  694. .ex_highlight_row #example tr.odd:hover td.sorting_1 {
  695. background-color: #D6FF5C;
  696. }
  697. .ex_highlight_row #example tr.odd:hover td.sorting_2 {
  698. background-color: #E0FF84;
  699. }
  700. .ex_highlight_row #example tr.odd:hover td.sorting_3 {
  701. background-color: #DBFF70;
  702. }
  703. /*
  704. * KeyTable
  705. */
  706. table.KeyTable td {
  707. border: 3px solid transparent;
  708. }
  709. table.KeyTable td.focus {
  710. border: 3px solid #3366FF;
  711. }
  712. table.display tr.gradeA {
  713. background-color: #eeffee;
  714. }
  715. table.display tr.gradeC {
  716. background-color: #ddddff;
  717. }
  718. table.display tr.gradeX {
  719. background-color: #ffdddd;
  720. }
  721. table.display tr.gradeU {
  722. background-color: #ddd;
  723. }
  724. div.box {
  725. height: 100px;
  726. padding: 10px;
  727. overflow: auto;
  728. border: 1px solid #8080FF;
  729. background-color: #E5E5FF;
  730. }
  731. /*
  732. * jHueFileChooser
  733. */
  734. .jHueFilechooserActions {
  735. margin-top: 14px;
  736. padding-top: 10px;
  737. border-top: 1px dashed #EEEEEE;
  738. }
  739. .pathChooser, .pathChooserKo, .pathFolderChooserKo {
  740. border-radius: 3px 0 0 3px !important;
  741. border-right: 0 !important;
  742. }
  743. .fileChooserBtn {
  744. border-radius: 0 3px 3px 0 !important;
  745. }
  746. /*
  747. * jHueSelector
  748. */
  749. .jHueSelector {
  750. border: 1px solid #F1F1F1;
  751. padding: 0;
  752. margin: 0;
  753. width: 300px;
  754. }
  755. .jHueSelectorHeader {
  756. background-color: #F1F1F1;
  757. padding: 4px;
  758. }
  759. .jHueSelector label {
  760. float: none;
  761. padding-left: 4px;
  762. }
  763. .jHueSelector label input[type=checkbox] {
  764. display: inline;
  765. margin-top: -2px;
  766. margin-right: 6px;
  767. }
  768. .jHueSelectorHeader input[type=text] {
  769. position: absolute;
  770. margin-left: 180px;
  771. width: 100px;
  772. height: 20px;
  773. min-height: 20px;
  774. border: 1px solid #CCCCCC;
  775. border-radius: 10px;
  776. -webkit-border-radius: 10px;
  777. -moz-border-radius: 10px;
  778. color: #555555;
  779. font-size: 10px;
  780. padding-left: 4px;
  781. }
  782. .jHueSelectorBody {
  783. height: 150px;
  784. overflow: auto;
  785. }
  786. .jHueSelector ul, li {
  787. margin: 0;
  788. padding: 0;
  789. }
  790. .jHueSelector ul {
  791. padding: 4px;
  792. list-style: none;
  793. }
  794. .jHueSelector li.selectorDivider {
  795. border-bottom: 1px solid #E5E5E5;
  796. padding: 4px;
  797. color: #338BB8;
  798. }
  799. .modal-body iframe {
  800. border: 0;
  801. width: 100%;
  802. height: 100%;
  803. overflow: hidden;
  804. }
  805. .modal-body iframe.scroll {
  806. overflow: auto;
  807. }
  808. .form-padding-fix {
  809. display: inline;
  810. padding: 0;
  811. margin: 0;
  812. }
  813. .table tbody tr:hover td, .table tbody tr:hover th {
  814. background-color: #EFEFEF;
  815. }
  816. .nounderline:hover {
  817. text-decoration: none;
  818. }
  819. .bar-label {
  820. text-align: center;
  821. color: #FFFFFF;
  822. font-size: 12px;
  823. text-shadow: -1px 0 1px #333, 0 1px 1px #333, 1px 0 1px #333, 0 -1px 1px #333;
  824. }
  825. .jHueNotify {
  826. position: fixed;
  827. top: 20px;
  828. left: 50%;
  829. margin-left: -200px;
  830. width: 400px;
  831. text-align: center;
  832. z-index: 8000;
  833. word-break: break-word;
  834. }
  835. .jHueNotify .close {
  836. right: -27px;
  837. }
  838. .empty-wrapper {
  839. margin-top: 50px;
  840. color: #BBB;
  841. line-height: 60px;
  842. }
  843. .empty-wrapper i {
  844. font-size: 148px;
  845. }
  846. /*
  847. * Advanced options
  848. */
  849. #advanced-btn {
  850. center: right
  851. }
  852. a#advanced-btn:link {
  853. color: black;
  854. text-decoration: none;
  855. }
  856. a#advanced-btn:active {
  857. color: black;
  858. text-decoration: none;
  859. }
  860. a#advanced-btn:visited {
  861. color: black;
  862. text-decoration: none;
  863. }
  864. a#advanced-btn:hover {
  865. color: black;
  866. text-decoration: none;
  867. }
  868. .hand {
  869. cursor: pointer;
  870. }
  871. .hueCheckbox {
  872. width: 15px;
  873. height: 15px;
  874. border: 1px solid #CCCCCC;
  875. margin-top: 2px !important;
  876. padding: 0 !important;
  877. display: block !important;
  878. cursor: default;
  879. }
  880. .hueCheckbox:hover {
  881. border-color: #999999;
  882. }
  883. .hueCheckboxText {
  884. left: 3px;
  885. position: relative;
  886. top: -3px;
  887. }
  888. .hueCheckbox.hide {
  889. display: none!important;
  890. }
  891. .modal form {
  892. margin: 0;
  893. }
  894. /*
  895. * jHueTableExtender
  896. */
  897. .rowSelected {
  898. background-color: #EEEEEE !important;
  899. }
  900. .columnSelected {
  901. background-color: #EEEEEE !important;
  902. }
  903. .cellSelected {
  904. background-color: #DDDDDD !important;
  905. }
  906. #jHueTableExtenderNavigator {
  907. position: absolute;
  908. left: 0;
  909. top: 0;
  910. z-index: 1000;
  911. display: none;
  912. min-width: 160px;
  913. padding: 10px 20px 2px 10px;
  914. margin: 2px 0 0;
  915. background-color: #ffffff;
  916. border: 1px solid #ccc;
  917. -webkit-border-radius: 6px;
  918. -moz-border-radius: 6px;
  919. border-radius: 6px;
  920. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  921. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  922. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  923. -webkit-background-clip: padding-box;
  924. -moz-background-clip: padding;
  925. background-clip: padding-box;
  926. white-space: nowrap;
  927. }
  928. #jHueTableExtenderNavigator a {
  929. margin-left: 10px;
  930. margin-right: -14px;
  931. margin-top: -12px;
  932. }
  933. #jHueScrollUpAnchor {
  934. color: #FFFFFF;
  935. opacity: 0.65;
  936. filter: alpha(opacity=65);
  937. display: none;
  938. position: fixed;
  939. z-index: 2147483647;
  940. bottom: 20px;
  941. right: 20px;
  942. -webkit-border-radius: 6px;
  943. -moz-border-radius: 6px;
  944. border-radius: 6px;
  945. background-color: #333333;
  946. padding: 10px;
  947. padding-left: 14px;
  948. padding-right: 14px;
  949. }
  950. #jHueScrollUpAnchor:hover {
  951. text-decoration: none;
  952. opacity: 0.85;
  953. filter: alpha(opacity=85);
  954. }
  955. #jHueTourMask {
  956. position: absolute;
  957. display: none;
  958. top: 0;
  959. left: 0;
  960. z-index: 9998;
  961. background-color: #FFFFFF;
  962. opacity: 0.9;
  963. filter: alpha(opacity=90);
  964. }
  965. .jHueTourBadge {
  966. background-color: #2c7fb3;
  967. background-image: -moz-linear-gradient(bottom, #2c7fb3, #01639c);
  968. background-image: -ms-linear-gradient(bottom, #2c7fb3, #01639c);
  969. background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#2c7fb3), to(#01639c));
  970. background-image: -webkit-linear-gradient(bottom, #2c7fb3, #01639c);
  971. background-image: -o-linear-gradient(bottom, #2c7fb3, #01639c);
  972. background-image: linear-gradient(bottom, #2c7fb3, #01639c);
  973. background-repeat: repeat-x;
  974. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01639c', endColorstr='#2c7fb3', GradientType=0);
  975. border: 1px solid #01639C;
  976. border-right: none;
  977. color: #FFFFFF;
  978. padding: 4px;
  979. padding-left: 8px;
  980. -webkit-border-top-left-radius: 4px;
  981. -webkit-border-bottom-left-radius: 4px;
  982. -moz-border-radius-topleft: 4px;
  983. -moz-border-radius-bottomleft: 4px;
  984. border-top-left-radius: 4px;
  985. border-bottom-left-radius: 4px;
  986. position: fixed;
  987. top: 100px;
  988. z-index: 10000;
  989. right: 0;
  990. cursor: pointer;
  991. }
  992. .jHueTourBadgeLeft {
  993. right: auto !important;
  994. left: 0;
  995. padding-left: 4px;
  996. padding-right: 8px;
  997. border-left: none;
  998. border-right: 1px solid #01639C;
  999. -webkit-border-top-left-radius: 0;
  1000. -webkit-border-bottom-left-radius: 0;
  1001. -moz-border-radius-topleft: 0;
  1002. -moz-border-radius-bottomleft: 0;
  1003. border-top-left-radius: 0;
  1004. border-bottom-left-radius: 0;
  1005. -webkit-border-top-right-radius: 4px;
  1006. -webkit-border-bottom-right-radius: 4px;
  1007. -moz-border-radius-topright: 4px;
  1008. -moz-border-radius-bottomright: 4px;
  1009. border-top-right-radius: 4px;
  1010. border-bottom-right-radius: 4px;
  1011. }
  1012. .jHueTourBadge:hover {
  1013. background-color: #2C7FB3;
  1014. }
  1015. .jHueTourExposed {
  1016. z-index: 9999;
  1017. }
  1018. .popover-inner {
  1019. text-align: left;
  1020. }
  1021. .popover {
  1022. z-index: 10000;
  1023. }
  1024. .CodeMirror-hints {
  1025. position: absolute;
  1026. z-index: 10000 !important;
  1027. overflow: hidden;
  1028. list-style: none;
  1029. margin: 0;
  1030. padding: 2px;
  1031. -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  1032. -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  1033. box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  1034. border-radius: 3px;
  1035. border: 1px solid silver;
  1036. background: white;
  1037. font-size: 90%;
  1038. font-family: monospace;
  1039. max-height: 20em;
  1040. overflow-y: auto;
  1041. }
  1042. .CodeMirror-hint {
  1043. margin: 0;
  1044. padding: 0 4px;
  1045. border-radius: 2px;
  1046. overflow: hidden;
  1047. white-space: pre;
  1048. color: black;
  1049. cursor: pointer;
  1050. }
  1051. .CodeMirror-hint-active, .CodeMirror-hint:hover {
  1052. background: #08f;
  1053. color: white;
  1054. }
  1055. .CodeMirror-spinner {
  1056. position: absolute;
  1057. z-index: 9999;
  1058. }
  1059. .tooltip {
  1060. border: 0;
  1061. z-index: 1032;
  1062. }
  1063. .nav i {
  1064. line-height: 24px!important;
  1065. }
  1066. .navbar .nav > li > a {
  1067. margin-right: 0!important;
  1068. padding-right: 5px;
  1069. padding-left: 5px;
  1070. }
  1071. .brand {
  1072. padding: 10px 20px!important;
  1073. margin-top: 4px!important;
  1074. }
  1075. .card-home {
  1076. padding-top: 4px;
  1077. }
  1078. .card-small {
  1079. margin-top: 0;
  1080. padding-top: 4px;
  1081. }
  1082. .card-listcontent ul {
  1083. margin: 0;
  1084. padding: 0;
  1085. list-style: none;
  1086. }
  1087. .card-listcontent ul li {
  1088. margin: 0;
  1089. padding: 0;
  1090. }
  1091. .card-listcontent a {
  1092. padding: 5px 15px;
  1093. display: block;
  1094. font-size: 14px;
  1095. font-weight: bold;
  1096. }
  1097. .card-listcontent a i {
  1098. color: #999999;
  1099. }
  1100. .card-listcontent a:hover {
  1101. background-color: #EEEEEE;
  1102. text-decoration: none;
  1103. }
  1104. .card-listcontent a:hover i {
  1105. color: #333333;
  1106. }
  1107. .card-tab {
  1108. margin-top: 0;
  1109. border-bottom: 1px solid #D8D8D8;
  1110. border-top: 0;
  1111. }
  1112. .card-tab-bordertop {
  1113. border-top: 1px solid #D8D8D8;
  1114. }
  1115. .card-marginbottom {
  1116. margin-bottom: 20px!important;
  1117. }
  1118. .card-heading-blue {
  1119. color: #338BB8!important;
  1120. }
  1121. .card-heading-nopadding {
  1122. padding-left: 0!important;
  1123. }
  1124. .card-heading-noborder {
  1125. border-bottom: none!important;
  1126. }
  1127. .dt-records {
  1128. margin-left: 10px;
  1129. }
  1130. .dt-pages {
  1131. margin-right: 10px;
  1132. float: right;
  1133. }
  1134. .progress {
  1135. height: 20px;
  1136. margin-bottom: 0;
  1137. padding: 0;
  1138. border: none;
  1139. }
  1140. .nav-list > li.white {
  1141. margin-left: -15px;
  1142. margin-right: -15px;
  1143. background-color: #FFFFFF;
  1144. border-left: 2px solid transparent;
  1145. margin-top: 1px;
  1146. padding: 9px 18px;
  1147. text-shadow: none;
  1148. transition: border 0.218s ease 0s;
  1149. }
  1150. .input-append.date .add-on i, .input-prepend.date .add-on i {
  1151. line-height: 28px;
  1152. }
  1153. .modal {
  1154. padding: 25px 20px!important;
  1155. margin-left: -290px!important;
  1156. }
  1157. #jHueTourVideoPlayer {
  1158. margin-left: -320px!important;
  1159. width: 640px;
  1160. }
  1161. .navigator {
  1162. position: fixed;
  1163. top: 0;
  1164. width: 100%;
  1165. background-color: #338BB8;
  1166. height: 28px;
  1167. z-index: 1033;
  1168. min-width: 740px;
  1169. }
  1170. .navigator .brand {
  1171. padding-top: 0 !important;
  1172. }
  1173. @media (max-width: 1180px) {
  1174. .navigator .nav-tabs > li > a, .navigator .nav-pills > li > a {
  1175. padding-right: 6px;
  1176. padding-left: 6px;
  1177. }
  1178. }
  1179. @media (max-width: 1024px) {
  1180. .navigator .hideable {
  1181. display: none;
  1182. }
  1183. }
  1184. @media (max-width: 830px) {
  1185. .brand {
  1186. display: none;
  1187. }
  1188. }
  1189. .navbar-fixed-top {
  1190. top: 28px;
  1191. }
  1192. .navigator .dropdown-menu {
  1193. z-index: 20000;
  1194. box-shadow: none;
  1195. margin-top: -4px;
  1196. margin-left: -1px;
  1197. border-top: 2px solid #EEE;
  1198. }
  1199. .navigator .nav-pills > li > a {
  1200. color: #DBE8F1;
  1201. font-weight: bold;
  1202. margin-bottom: 2px;
  1203. margin-top: 2px;
  1204. padding-bottom: 4px !important;
  1205. padding-top: 6px;
  1206. }
  1207. .navigator .dropdown-menu > li > a > .fa {
  1208. color: #267CC3;
  1209. font-size: 19px;
  1210. padding-left: 5px;
  1211. padding-right: 8px;
  1212. }
  1213. .navigator .dropdown-menu > li > a {
  1214. padding-left: 5px;
  1215. padding-right: 30px;
  1216. }
  1217. .navigator .dropdown-menu > li > a > img {
  1218. padding-right: 6px;
  1219. }
  1220. .navigator .nav-pills > li.dropdown > a {
  1221. padding-bottom: 2px !important;
  1222. }
  1223. .navigator .nav-pills > li > a:hover, .navigator .nav-pills > li > a:focus {
  1224. color: #FFF;
  1225. border-color: #EEE !important;
  1226. }
  1227. .navigator .nav i {
  1228. line-height: 14px !important;
  1229. }
  1230. .navigator .nav-pills .open .dropdown-toggle, .navigator .nav > li.dropdown.open.active > a:hover, .navigator .nav > li.dropdown.open.active > a:focus {
  1231. color: #FFFFFF;
  1232. }
  1233. .currentApp {
  1234. font-size: 20px;
  1235. padding-top: 13px;
  1236. padding-left: 0;
  1237. color: #338BB8;
  1238. cursor: pointer;
  1239. }
  1240. .currentApp a {
  1241. font-size: 20px !important;
  1242. color: #338BB8 !important;
  1243. padding: 0 !important;
  1244. margin-top: -4px !important;
  1245. border: none !important;
  1246. max-width: none!important;
  1247. }
  1248. .currentApp a:focus, .currentApp a:hover {
  1249. color: #338BB8 !important;
  1250. }
  1251. .currentApp img {
  1252. margin-top: -3px;
  1253. }
  1254. .navbar-fixed-top.nokids .navbar-inner {
  1255. height: 45px;
  1256. }
  1257. a, a:hover, a:active, a:focus {
  1258. outline: 0;
  1259. }
  1260. #jHueTourVideoPlayer .modal-body {
  1261. max-height: 460px;
  1262. }
  1263. .hueOverlay {
  1264. top: 28px;
  1265. left: 0;
  1266. right: 0;
  1267. bottom: 0;
  1268. position: fixed;
  1269. z-index: 100500;
  1270. background-color: #FFF;
  1271. color: #333;
  1272. font-size: 60px;
  1273. opacity: 0.7;
  1274. text-align: center;
  1275. vertical-align: middle;
  1276. padding-top: 70px;
  1277. }
  1278. #jHueBlueprintTooltip {
  1279. position: absolute;
  1280. display: none;
  1281. border: 1px solid #61AE36;
  1282. padding: 2px;
  1283. background-color: #C2E0B0;
  1284. opacity: 0.80;
  1285. }
  1286. .btn.active, .btn:active {
  1287. border-color: rgba(0, 0, 0, 0.1);
  1288. outline: 0;
  1289. -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
  1290. -moz-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
  1291. box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3) inset;
  1292. }
  1293. .side-labels {
  1294. -webkit-transform: rotate(-90deg);
  1295. -moz-transform: rotate(-90deg);
  1296. -o-transform: rotate(-90deg);
  1297. -ms-transform: rotate(-90deg);
  1298. -sand-transform: rotate(90deg);
  1299. -webkit-transform-origin: 100% 0;
  1300. -moz-transform-origin: 100% 0;
  1301. -ms-transform-origin: 100% 0;
  1302. -o-transform-origin: 100% 0;
  1303. transform-origin: 100% 0;
  1304. display: block;
  1305. position: fixed;
  1306. top: 270px;
  1307. right: 30px;
  1308. }
  1309. .side-labels li {
  1310. font-size: 1em;
  1311. padding: 4px 16px !important;
  1312. cursor: pointer;
  1313. font-weight: 500;
  1314. border-top: 2px solid #FFF;
  1315. }
  1316. .side-labels li a {
  1317. color: #F0F0F0!important;
  1318. }
  1319. .side-labels li:hover a {
  1320. color: #FFF!important;
  1321. text-decoration: none;
  1322. }
  1323. .side-labels .feedback {
  1324. background-color: #338BB8;
  1325. }
  1326. .side-labels .feedback:hover {
  1327. border-top-color: #338BB8;
  1328. }
  1329. body.modal-open {
  1330. overflow: hidden;
  1331. }
  1332. .demi-modal {
  1333. position: fixed;
  1334. top: 0;
  1335. left: 0;
  1336. z-index: 1050;
  1337. width: 100%;
  1338. margin: -1px;
  1339. padding: 0;
  1340. background-color: #ffffff;
  1341. min-height: 210px;
  1342. border: 1px solid #999;
  1343. border: 1px solid rgba(0, 0, 0, 0.3);
  1344. *border: 1px solid #999;
  1345. -webkit-border-bottom-right-radius: 0px;
  1346. -webkit-border-bottom-left-radius: 0px;
  1347. -moz-border-radius-bottomright: 0px;
  1348. -moz-border-radius-bottomleft: 0px;
  1349. border-bottom-right-radius: 0px;
  1350. border-bottom-left-radius: 0px;
  1351. outline: none;
  1352. -webkit-box-shadow: none;
  1353. -moz-box-shadow: none;
  1354. box-shadow: none;
  1355. -webkit-background-clip: padding-box;
  1356. -moz-background-clip: padding-box;
  1357. background-clip: padding-box;
  1358. }
  1359. .demi-modal-half {
  1360. width: 500px;
  1361. left: 50%;
  1362. margin-left: -250px;
  1363. }
  1364. .demi-modal.fade {
  1365. top: -25%;
  1366. -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  1367. -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  1368. -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  1369. transition: opacity 0.3s linear, top 0.3s ease-out;
  1370. }
  1371. .demi-modal.fade.in {
  1372. top: 0;
  1373. }
  1374. .demi-modal .modal-header {
  1375. padding: 9px 15px;
  1376. border-bottom: 1px solid #eee;
  1377. }
  1378. .demi-modal .modal-header .close {
  1379. margin-top: 2px;
  1380. }
  1381. .demi-modal .modal-body {
  1382. position: relative;
  1383. max-height: 400px;
  1384. padding: 15px;
  1385. overflow-y: auto;
  1386. }
  1387. .demi-modal .modal-footer {
  1388. padding: 10px;
  1389. }
  1390. .control-group.error .input-prepend .add-on i, .control-group.error .input-append .add-on i {
  1391. color: #fff;
  1392. }
  1393. .app-icon {
  1394. width: 24px;
  1395. height: 24px;
  1396. }
  1397. .brand img {
  1398. width: 60px;
  1399. height: 16px;
  1400. }
  1401. /*********************************************************
  1402. *
  1403. * Sharing styles
  1404. *
  1405. ********************************************************/
  1406. .baseShared {
  1407. color: #999;
  1408. }
  1409. .isShared {
  1410. color: #338bb8!important;
  1411. }
  1412. #documentShareModal .modal-body {
  1413. overflow-y: initial;
  1414. }
  1415. .trash-share, .share-link {
  1416. cursor: pointer;
  1417. }
  1418. /*********************************************************
  1419. *
  1420. * Misc styles that can be reused as needed
  1421. * - from admin_collections.mako template
  1422. *
  1423. ********************************************************/
  1424. .spinner {
  1425. color: #ddd;
  1426. font-size: 60px;
  1427. }
  1428. .pointer {
  1429. cursor: pointer;
  1430. }
  1431. .inline {
  1432. display: inline;
  1433. }
  1434. .actionbar-creation {
  1435. margin: 0;
  1436. }
  1437. .actionbar-actions {
  1438. margin: 0px 0px 10px 0px;
  1439. }
  1440. .jHueAutocomplete {
  1441. -webkit-border-radius: 0;
  1442. -moz-border-radius: 0;
  1443. border-radius: 0;
  1444. -webkit-box-shadow: none;
  1445. -moz-box-shadow: none;
  1446. box-shadow: none;
  1447. border-top: none;
  1448. }
  1449. .jHueAutocomplete .popover-content {
  1450. padding: 0;
  1451. max-height: 200px;
  1452. overflow-y: auto;
  1453. }
  1454. .jHueAutocomplete .popover-content ul li {
  1455. cursor: pointer;
  1456. margin: 3px;
  1457. padding: 2px;
  1458. }
  1459. .jHueAutocomplete .popover-content ul li:hover, .jHueAutocomplete .popover-content ul li.active {
  1460. color: #FFFFFF;
  1461. background: #338BB8;
  1462. }
  1463. .fa-1halfx {
  1464. font-size: 1.5em;
  1465. }
  1466. input.no-margin, select.no-margin {
  1467. margin-bottom: 0;
  1468. }
  1469. /****************************************************
  1470. *
  1471. * Styles for opaque layover messages
  1472. * Example is "Drop files anywhere" layover
  1473. *
  1474. *****************************************************/
  1475. @-webkit-keyframes bounceInDown {
  1476. 0%, 60%, 75%, 90%, 100% {
  1477. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  1478. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  1479. }
  1480. 0% {
  1481. opacity: 0;
  1482. -webkit-transform: translate3d(0, -3000px, 0);
  1483. transform: translate3d(0, -3000px, 0);
  1484. }
  1485. 60% {
  1486. opacity: 1;
  1487. -webkit-transform: translate3d(0, 25px, 0);
  1488. transform: translate3d(0, 25px, 0);
  1489. }
  1490. 75% {
  1491. -webkit-transform: translate3d(0, -10px, 0);
  1492. transform: translate3d(0, -10px, 0);
  1493. }
  1494. 90% {
  1495. -webkit-transform: translate3d(0, 5px, 0);
  1496. transform: translate3d(0, 5px, 0);
  1497. }
  1498. 100% {
  1499. -webkit-transform: none;
  1500. transform: none;
  1501. }
  1502. }
  1503. @keyframes bounceInDown {
  1504. 0%, 60%, 75%, 90%, 100% {
  1505. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  1506. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  1507. }
  1508. 0% {
  1509. opacity: 0;
  1510. -webkit-transform: translate3d(0, -3000px, 0);
  1511. -ms-transform: translate3d(0, -3000px, 0);
  1512. transform: translate3d(0, -3000px, 0);
  1513. }
  1514. 60% {
  1515. opacity: 1;
  1516. -webkit-transform: translate3d(0, 25px, 0);
  1517. -ms-transform: translate3d(0, 25px, 0);
  1518. transform: translate3d(0, 25px, 0);
  1519. }
  1520. 75% {
  1521. -webkit-transform: translate3d(0, -10px, 0);
  1522. -ms-transform: translate3d(0, -10px, 0);
  1523. transform: translate3d(0, -10px, 0);
  1524. }
  1525. 90% {
  1526. -webkit-transform: translate3d(0, 5px, 0);
  1527. -ms-transform: translate3d(0, 5px, 0);
  1528. transform: translate3d(0, 5px, 0);
  1529. }
  1530. 100% {
  1531. -webkit-transform: none;
  1532. -ms-transform: none;
  1533. transform: none;
  1534. }
  1535. }
  1536. .break-word {
  1537. word-wrap: break-word
  1538. }
  1539. .jHueHdfsTree .content {
  1540. margin-left: 14px;
  1541. }
  1542. .jHueHdfsTree a.selected {
  1543. font-weight: bold;
  1544. }
  1545. .modal-header .close {
  1546. position: inherit;
  1547. margin-top: -10px;
  1548. }
  1549. form.form-inline .modal-header .close {
  1550. margin-top: 0;
  1551. margin-right: -10px;
  1552. }
  1553. .margin-top-10 {
  1554. margin-top: 10px;
  1555. }
  1556. .margin-top-20 {
  1557. margin-top: 20px;
  1558. }
  1559. .margin-top-30 {
  1560. margin-top: 30px;
  1561. }
  1562. .margin-left-10 {
  1563. margin-left: 10px;
  1564. }
  1565. .margin-left-20 {
  1566. margin-left: 20px;
  1567. }
  1568. .margin-left-30 {
  1569. margin-left: 30px;
  1570. }
  1571. .margin-bottom-10 {
  1572. margin-bottom: 10px;
  1573. }
  1574. .margin-bottom-20 {
  1575. margin-bottom: 20px;
  1576. }
  1577. .margin-bottom-30 {
  1578. margin-bottom: 30px;
  1579. }
  1580. .margin-right-10 {
  1581. margin-right: 10px;
  1582. }
  1583. .margin-right-20 {
  1584. margin-right: 20px;
  1585. }
  1586. .margin-right-30 {
  1587. margin-right: 30px;
  1588. }
  1589. .no-margin {
  1590. margin: 0;
  1591. }