hbase.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  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. .hbase-page {
  17. display: none;
  18. }
  19. .hbase-page.active {
  20. display: block;
  21. }
  22. ul#hbase-breadcrumbs li a {
  23. line-height: 18px;
  24. }
  25. .actionbar .well,.actionbar .well-small {
  26. line-height: 30px;
  27. }
  28. .isLoading {
  29. opacity: .5 !important;
  30. background: url(/static/art/spinner.gif) center center no-repeat;
  31. }
  32. .smartview {
  33. padding:0;
  34. }
  35. .smartview .smartview-row {
  36. padding:0;
  37. font-size:0;
  38. margin:0;
  39. border: 1px solid #ccc;
  40. margin-bottom: -1px;
  41. position: relative;
  42. }
  43. .smartview .smartview-row input[type="checkbox"] {
  44. border:solid 1px #ccc;
  45. border-radius: 0;
  46. margin: 0;
  47. padding: 0;
  48. }
  49. .smartview .smartview-row h5 {
  50. padding:0 10px;
  51. line-height: 40px;
  52. background:#ddd;
  53. margin:0;
  54. border-bottom: solid 1px #ccc;
  55. background-color: #f5f5f5;
  56. background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
  57. background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
  58. background-image: -o-linear-gradient(top,#fff,#e6e6e6);
  59. background-image: linear-gradient(to bottom,#fff,#e6e6e6);
  60. background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
  61. background-repeat: repeat-x;
  62. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
  63. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  64. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  65. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  66. box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
  67. cursor:pointer;
  68. font-weight: normal;
  69. }
  70. .smartview .smartview-row.selected h5 > code {
  71. color: #355EDB;
  72. border-color: #6872AD;
  73. }
  74. .smartview .smartview-row-controls {
  75. display: none;
  76. }
  77. .smartview .smartview-row-controls.controls-hover-bottom {
  78. position: absolute;
  79. bottom: 0;
  80. right:5px;
  81. z-index: 10;
  82. }
  83. .smartview .smartview-row.selected .smartview-row-controls, .smartview-row:hover .smartview-row-controls {
  84. display: inline;
  85. }
  86. .smartview .smartview-row.selected h5 > i {
  87. color: #355EDB;
  88. }
  89. .smartview ul.smartview-cells {
  90. border-top:solid 1px #ccc;
  91. width:100%;
  92. overflow-x:auto;
  93. overflow-y:hidden;
  94. height:auto;
  95. white-space: nowrap;
  96. list-style: none;
  97. margin: 0;
  98. padding:0;
  99. margin-right:-1px;
  100. display:block;
  101. background: #ddd;
  102. min-height: 68px;
  103. }
  104. .smartview ul.smartview-cells > li {
  105. position: relative;
  106. border-right:solid 1px #ccc;
  107. background: #efefef;
  108. color:#000;
  109. font-size:12px;
  110. overflow: hidden;
  111. padding:0;
  112. height:100%;
  113. max-width:200px;
  114. max-height: 200px;
  115. display:table-cell;
  116. min-width: 140px;
  117. border-top:0;
  118. }
  119. .smartview.gridView ul.smartview-cells > li {
  120. width: 200px;
  121. }
  122. .smartview ul.smartview-cells > li > div {
  123. position: relative;
  124. margin-bottom: 10px;
  125. height: 100%;
  126. }
  127. .smartview ul.smartview-cells > li.active {
  128. border-top:solid 3px #4C62E6;
  129. }
  130. .smartview ul.smartview-cells > li:hover, .smartview ul.smartview-cells > li.active {
  131. cursor: pointer;
  132. background: #fcfcfc;
  133. }
  134. .smartview ul.smartview-cells > li:hover .label.timestamp, .smartview ul.smartview-cells > li.active .label.timestamp {
  135. display: block;
  136. color:#555;
  137. border:solid 1px #ccc;
  138. }
  139. .smartview ul.smartview-cells > li:hover a.corner-btn {
  140. display: block;
  141. height: 12px !important;
  142. }
  143. .smartview ul.smartview-cells > li:hover a.corner-btn:hover {
  144. color:#000;
  145. }
  146. .smartview ul.smartview-cells > li h6 {
  147. padding:6px;
  148. margin:0;
  149. color:#3a3a3a;
  150. background:#fafafa;
  151. border-bottom: solid 1px #ccc;
  152. white-space: nowrap;
  153. }
  154. .smartview ul.smartview-cells > li.active h6 {
  155. color:#4C62E6;
  156. }
  157. .smartview ul.smartview-cells > li .timestamp {
  158. position: absolute;
  159. bottom:-12px;
  160. right:-2px;
  161. display: none;
  162. }
  163. .smartview ul.smartview-cells > li .corner-btn {
  164. position: absolute;
  165. top:5px;
  166. right:5px;
  167. font-size:12px;
  168. color:#333;
  169. text-decoration: none;
  170. display: none;
  171. padding:0 6px;
  172. }
  173. .smartview ul.smartview-cells > li pre {
  174. border-radius: 0;
  175. border:none;
  176. background:transparent;
  177. display:block;
  178. padding:5px;
  179. margin: 5px;
  180. height: 100%;
  181. font-size:11px;
  182. line-height: 13px;
  183. color: #777;
  184. border: dashed 1px #ccc;
  185. }
  186. .smartview ul.smartview-cells > li > div > textarea {
  187. display: block;
  188. border-radius: 0;
  189. outline: none;
  190. width: 100%;
  191. min-width: 200px;
  192. outline-color: transparent;
  193. outline-style: none;
  194. width: auto;
  195. border: none;
  196. }
  197. .smartview ul.smartview-cells > li pre:hover {
  198. background: #BAD0FF;
  199. }
  200. .smartview ul.smartview-cells > li > pre:hover, .smartview ul.smartview-cells > li.active pre {
  201. color:#333;
  202. }
  203. .smartview ul.smartview-cells > li .label {
  204. background:#ddd;
  205. font-size: 11px;
  206. text-shadow:none;
  207. font-weight: 400;
  208. }
  209. .smartview ul.smartview-cells li.new_column_cell {
  210. vertical-align:middle;
  211. width:120px;
  212. }
  213. .smartview ul.smartview-cells li.new_column_cell a {
  214. text-align: center;
  215. font-size:24px;
  216. display:block;
  217. width:100%;
  218. height:100%;
  219. text-decoration: none;
  220. }
  221. .subnav {
  222. padding:5px 0;
  223. line-height:30px;
  224. border:none;
  225. }
  226. .subnav select, .subnav input, .well input, .well select, .smartview select, .smartview .smartview-row-controls input {
  227. margin:0;
  228. }
  229. .ui-autocomplete {
  230. z-index:10000 !important;
  231. }
  232. .btn-group {
  233. display:inline-block;
  234. line-height: 1em;
  235. }
  236. .footer-slider {
  237. white-space: nowrap;
  238. overflow-x: auto;
  239. width: 70%;
  240. float:left;
  241. }
  242. .footer-slider code {
  243. cursor:pointer;
  244. }
  245. #searchbar-main {
  246. display: inline;
  247. background: #fff;
  248. line-height: 1em;
  249. margin-right: 10px;
  250. -webkit-appearance: none;
  251. -webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0 1px 1px 0 inset;
  252. -webkit-rtl-ordering: logical;
  253. -webkit-transition-delay: 0s, 0s;
  254. -webkit-transition-duration: 0.2s, 0.2s;
  255. -webkit-transition-property: border, box-shadow;
  256. -webkit-transition-timing-function: linear, linear;
  257. -webkit-user-select: text;
  258. -webkit-writing-mode: horizontal-tb;
  259. background-color: rgb(255, 255, 255);
  260. border-bottom-color: rgb(204, 204, 204);
  261. border-bottom-left-radius: 3px;
  262. border-bottom-style: solid;
  263. border-bottom-width: 1px;
  264. border-image-outset: 0;
  265. border-image-repeat: stretch;
  266. border-image-slice: 100%;
  267. border-image-source: none;
  268. border-image-width: 1;
  269. border-left-color: rgb(204, 204, 204);
  270. border-left-style: solid;
  271. border-left-width: 1px;
  272. border-right-color: rgb(204, 204, 204);
  273. border-right-style: solid;
  274. border-right-width: 1px;
  275. border-top-color: rgb(204, 204, 204);
  276. border-top-left-radius: 3px;
  277. border-top-style: solid;
  278. border-top-width: 1px;
  279. box-shadow: rgba(0, 0, 0, 0.0745098) 0 1px 1px 0 inset;
  280. color: rgb(85, 85, 85);
  281. cursor: auto;
  282. display: inline-block;
  283. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  284. font-size: 14px;
  285. font-weight: normal;
  286. height: 20px;
  287. letter-spacing: normal;
  288. line-height: 25px;
  289. margin-bottom: 0;
  290. margin-left: 0;
  291. margin-right: 0;
  292. margin-top: 0;
  293. padding-bottom: 4px;
  294. padding-left: 6px;
  295. padding-right: 6px;
  296. padding-top: 4px;
  297. text-align: start;
  298. text-indent: 0;
  299. text-shadow: rgba(0, 0, 0, 0) 0 0 1px;
  300. text-transform: none;
  301. transition-delay: 0s, 0s;
  302. transition-duration: 0.2s, 0.2s;
  303. transition-property: border, box-shadow;
  304. transition-timing-function: linear, linear;
  305. vertical-align: middle;
  306. height:36px;
  307. font-size: 18px;
  308. white-space: nowrap;
  309. position: relative;
  310. overflow: hidden;
  311. }
  312. #search-tags {
  313. display: block;
  314. margin: 0;
  315. padding: 0;
  316. outline: none;
  317. list-style: none;
  318. width: 100%;
  319. height: 100%;
  320. }
  321. #search-tags > span {
  322. color: #d14;
  323. }
  324. #search-tags span {
  325. margin: 1px;
  326. padding: 2px;
  327. }
  328. #search-tags span:hover {
  329. margin: 0;
  330. border: dashed 1px #5D6F8C;
  331. }
  332. #search-tags > span > span {
  333. padding: 0 3px;
  334. border-radius: 3px;
  335. }
  336. #search-tags span.columns {
  337. color: #fff;
  338. background: #3FA3D9;
  339. }
  340. #search-tags span.scan {
  341. color: #fff;
  342. background: #EDA11F;
  343. padding: 0 3px;
  344. border-radius: 3px;
  345. }
  346. #search-tags span.prefix, #search-tags span.range {
  347. color: #fff;
  348. background: #5EB568;
  349. }
  350. #search-tags span.filter
  351. {
  352. color: #2DA2E0;
  353. }
  354. #search-tags span.filter span.compare_op
  355. {
  356. color: #8746DB;
  357. }
  358. #search-tags span.filter span.arg
  359. {
  360. color: #8746DB;
  361. }
  362. #search-tags span.filter span.linker
  363. {
  364. color: #46A35C;
  365. }
  366. #search-tags span.selection, #search-typeahead span.selection
  367. {
  368. background: yellow;
  369. border: none;
  370. border-radius: 0;
  371. min-width: 1px;
  372. padding:0;
  373. }
  374. #search-typeahead {
  375. position: absolute;
  376. z-index: 10000;
  377. margin: 0;
  378. padding: 0;
  379. padding-top: 1px;
  380. list-style: none;
  381. margin-top: 40px;
  382. }
  383. #search-typeahead li:first-child a {
  384. overflow: auto;
  385. background: #fff;
  386. color: #3a3a3a;
  387. border-top: solid 1px #ccc;
  388. background: #eee;
  389. }
  390. #search-typeahead li a {
  391. padding: 5px;
  392. background: #fff;
  393. margin-top: -1px;
  394. border:solid 1px #ccc;
  395. text-decoration: none;
  396. display:block;
  397. width: 402px;
  398. cursor: pointer;
  399. }
  400. #search-typeahead li a.active {
  401. background: rgb(1, 99, 156);
  402. color: #fff;
  403. font-weight: bold;
  404. }
  405. #searchbar-main input[type=text].tag-searchbar {
  406. border: 0;
  407. background: transparent;
  408. box-shadow: none;
  409. border:none;
  410. msargin-right:15%;
  411. padding:0;
  412. display: inline-block;
  413. border-radius: 0;
  414. overflow: hidden;
  415. width:100%;
  416. }
  417. #searchbar-main input[type=text].tag-searchbar.active {
  418. color:#fff;
  419. width:1px;
  420. background: #fff;
  421. opacity: .1;
  422. }
  423. #searchbar-main small {
  424. color: #bbb;
  425. }
  426. #searchbar-main i.tagIndicator {
  427. color: #000;
  428. padding: 0 !important;
  429. border: 0;
  430. margin: 0;
  431. background: black !important;
  432. display: inline-block;
  433. width: 1px;
  434. height: 1em;
  435. border:none !important;
  436. animation: blink 1.5s steps(2, start) infinite;
  437. -webkit-animation: blink 1.5s steps(2, start) infinite;
  438. -moz-animation: blink 1.5s steps(2, start) infinite;
  439. font-weight: 100;
  440. }
  441. @keyframes blink {
  442. to {
  443. visibility: hidden;
  444. }
  445. }
  446. @-webkit-keyframes blink {
  447. to {
  448. visibility: hidden;
  449. }
  450. }
  451. #cluster-menu {
  452. font-size:14px;
  453. }
  454. #cell_edit_modal {
  455. margin-left: -40% !important;
  456. max-height:100%;
  457. width: 80%;
  458. left: 50%;
  459. top: 10%;
  460. margin-top:0;
  461. overflow: visible;
  462. }
  463. #cell_edit_modal iframe {
  464. min-height: 600px;
  465. }
  466. #cell_edit_modal .CodeMirror {
  467. height:100%;
  468. }
  469. #cell_edit_modal .modal-body {
  470. max-height: 600px;
  471. }
  472. textarea {
  473. -webkit-box-sizing: border-box;
  474. -moz-box-sizing: border-box;
  475. box-sizing: border-box;
  476. }
  477. #column-family-selectors {
  478. margin-left: 10px;
  479. line-height: 30px;
  480. display: inline-block;
  481. }
  482. .loader-main {
  483. font-size: 50px;
  484. }
  485. #new_table_modal ul, #new_row_field_list
  486. {
  487. list-style-type: none;
  488. padding: 0;
  489. margin: 0;
  490. }
  491. .add-on
  492. {
  493. border-radius: 1.5em;
  494. border-bottom-left-radius: 0;
  495. border-top-left-radius: 0;
  496. height: auto;
  497. display: inline-block;
  498. padding: 3px 12px 3px 8px;
  499. }
  500. .add-on i
  501. {
  502. font-size: 17px;
  503. }
  504. .search-remove
  505. {
  506. position: relative;
  507. right: 25px;
  508. top: 3px;
  509. text-decoration: none;
  510. cursor: pointer;
  511. color: #ccc;
  512. z-index: 100;
  513. width: 0;
  514. height: 0;
  515. overflow: visible;
  516. display: block;
  517. }
  518. .search-remove:hover
  519. {
  520. color: #777;
  521. text-decoration: none;
  522. }
  523. #search-typeahead .search-suggestion a
  524. {
  525. color: #eee;
  526. background: #333;
  527. border-color: #777;
  528. }
  529. #search-typeahead .search-suggestion.active a
  530. {
  531. background: #3CA3E8;
  532. border-color: #3CA3E8;
  533. color:#fff;
  534. }
  535. #search-typeahead .search-suggestion-header a
  536. {
  537. padding: 5px;
  538. color: #4DB8EA;
  539. font-weight: bold;
  540. background: #292b2d; /* Old browsers */
  541. background: -moz-linear-gradient(top, #292b2d 0%, #000000 100%); /* FF3.6+ */
  542. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292b2d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
  543. background: -webkit-linear-gradient(top, #292b2d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
  544. background: -o-linear-gradient(top, #292b2d 0%,#000000 100%); /* Opera 11.10+ */
  545. background: -ms-linear-gradient(top, #292b2d 0%,#000000 100%); /* IE10+ */
  546. background: linear-gradient(to bottom, #292b2d 0%,#000000 100%); /* W3C */
  547. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292b2d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  548. border-color: #333;
  549. box-shadow: 0 3px 5px rgba(0,0,0,.3);
  550. }