main.css 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055
  1. html, body {
  2. height: 100%;
  3. width: 100%;
  4. padding: 0;
  5. border: 0;
  6. font-size: 12px;
  7. font-family: Univers,Trebuchet MS,Helvetica,Arial,sans-serif;
  8. }
  9. .tundra .dijitDialogTitleBar {
  10. padding-right: 25px;
  11. }
  12. .jbrowseStandaloneDatasetSelector {
  13. margin-left: 2em;
  14. font-size: 120%;
  15. }
  16. /* styles for the about JBrowse dialog */
  17. .about-dialog .default_about {
  18. text-align: center;
  19. }
  20. .about-dialog .default_about * {
  21. margin: 0.5em 0;
  22. }
  23. .about-dialog .default_about h1 {
  24. margin-top: 0;
  25. }
  26. .about-dialog div.powered_by {
  27. margin-top: 0.5em;
  28. text-align: center;
  29. }
  30. /* styles for the highlight-setting dialog */
  31. .setHighlightDialog label {
  32. padding-right: 0.5em;
  33. }
  34. .track .global_highlight {
  35. position: absolute;
  36. background: rgba( 255, 255, 0, 0.7 );
  37. box-sizing: border-box;
  38. -moz-box-sizing: border-box;
  39. -webkit-box-sizing: border-box;
  40. -ms-box-sizing: border-box;
  41. border: 1px solid rgb(255, 178, 13);
  42. border-width: 0;
  43. }
  44. .track .global_highlight.left {
  45. border-left-width: 1px;
  46. }
  47. .track .global_highlight.right {
  48. border-right-width: 1px;
  49. }
  50. .tundra input {
  51. outline: none;
  52. }
  53. .ghosted {
  54. color: #aaa;
  55. }
  56. fieldset {
  57. padding-left: 1em;
  58. margin: 0.7em 0.5em;
  59. }
  60. fieldset > legend {
  61. font-weight: bold;
  62. margin-left: -1em;
  63. }
  64. .locString {
  65. font-family: Courier New,monospace;
  66. }
  67. .fasta {
  68. font-family: Courier New,monospace;
  69. font-size: 14px;
  70. }
  71. /* styles for the autocomplete menu */
  72. .dijitComboBoxMenu .locString, .dijitComboBoxMenu .multipleLocations {
  73. margin-left: 1em;
  74. }
  75. .dijitComboBoxMenu .multipleLocations {
  76. color: #333;
  77. }
  78. /* location choice dialog */
  79. .locationChoiceDialog div.prompt {
  80. margin: 0.3em 1em 1em 1em;
  81. }
  82. .locationChoiceDialog .dgrid-row .dijitButton {
  83. margin: 0 0.5em;
  84. }
  85. .locationChoiceDialog .goButtonColumn,
  86. .locationChoiceDialog .showButtonColumn {
  87. text-align: center;
  88. white-space: nowrap;
  89. }
  90. .tundra .dijitDialogCloseIcon {
  91. height: 25px;
  92. width: 25px;
  93. top: 0px;
  94. right: 0px;
  95. background: url("img/commonIconsEnabled.png") no-repeat -73px 6px;
  96. border-left: 1px inset #fcfcfc;
  97. }
  98. .tundra .dijitDialogCloseIcon:hover {
  99. background-position: -93px 6px;
  100. border-left-color: #ccc;
  101. }
  102. .dijitDialogCloseIcon:focus {
  103. outline: none;
  104. }
  105. .dijitDialogPaneActionBar {
  106. text-align: center;
  107. clear: both;
  108. padding-top: 1em;
  109. }
  110. .nav {
  111. vertical-align: middle;
  112. z-index: 10;
  113. }
  114. input.icon {
  115. display: -moz-inline-stack;
  116. display: inline-block;
  117. zoom: 1;
  118. }
  119. div.container {
  120. position: absolute;
  121. z-index: 0;
  122. }
  123. div.dragWindow {
  124. position:absolute;
  125. overflow: hidden;
  126. z-index: 1;
  127. }
  128. div.vertical_scrollbar {
  129. width: 6px;
  130. background: #eee;
  131. background: rgba(235, 235, 235, 0.62);
  132. border-left: 1px solid #DDD9D9;
  133. }
  134. div.vertical_scrollbar .vertical_position_marker {
  135. background: #555;
  136. opacity: 0.8;
  137. border-radius: 5px;
  138. width: 100%;
  139. border-right: 1px solid #ccc;
  140. }
  141. .draggable {
  142. cursor: move;
  143. }
  144. .rubberBandAvailable {
  145. cursor: crosshair;
  146. }
  147. #navbox {
  148. padding-top: 3px;
  149. position: relative;
  150. text-align: center;
  151. }
  152. #navbox .dijitButton, #navbox .dijitToggleButton, #navbox .dijitTextBox, #navbox .dijitSelect, #navbox .dojoxTriStateCheckBox {
  153. height: 20px;
  154. box-sizing: border-box;
  155. -moz-box-sizing: border-box;
  156. -webkit-box-sizing: border-box;
  157. -ms-box-sizing: border-box;
  158. }
  159. #navbox .dijitSelectLabel {
  160. padding: 0 2px;
  161. }
  162. #navbox .dijitTextBox .dijitInputField {
  163. padding-left: 2px;
  164. }
  165. #navbox * {
  166. font-size: 12px;
  167. font-family: sans-serif;
  168. }
  169. .moreMatches {
  170. font-style: italic;
  171. color: #aaa;
  172. }
  173. .moreMatches.dijitMenuItemSelected {
  174. background: none;
  175. color: #ccc;
  176. cursor: default;
  177. }
  178. div.locationTrapContainer {
  179. position: absolute;
  180. z-index: -11;
  181. height: 100%;
  182. width: 100%;
  183. top: 0;
  184. left: 0;
  185. background-color: white;
  186. }
  187. div.locationTrap {
  188. position: absolute;
  189. z-index: -10;
  190. height: 0;
  191. top: 0;
  192. left: 0;
  193. border-color: transparent;
  194. border-style: solid;
  195. border-bottom-color: #A9C6EB;
  196. border-top: 0px dotted transparent;
  197. }
  198. div.locationThumb {
  199. position: absolute;
  200. top: 0px;
  201. /* if you change this border from 2px, change GenomeView.showTrap */
  202. border: 2px solid red;
  203. margin: 0px -2px 0px -2px;
  204. height: 23px;
  205. cursor: move;
  206. background: rgba(0, 121, 245, 0.1);
  207. }
  208. div.locationThumb.dojoMoveItem {
  209. cursor: move;
  210. }
  211. div.topLink {
  212. position: absolute;
  213. right: 0;
  214. top: 0;
  215. z-index: 50;
  216. background: white;
  217. border: 1px solid #888;
  218. border-width: 0 0 1px 1px;
  219. }
  220. a.topLink {
  221. padding: 0 0.5ex 0 0.5ex;
  222. text-decoration: none;
  223. color: blue;
  224. }
  225. div.overview {
  226. position: relative;
  227. width: 100%;
  228. padding: 0;
  229. z-index: -5;
  230. display: block;
  231. height: 23px;
  232. background: #FAFAFA url(src/dijit/themes/tundra/images/titleBar.png) repeat-x top left;
  233. border-style: solid;
  234. border-width: 1px 0px 1px 0px;
  235. border-color: #555;
  236. color:#aaa;
  237. text-align: center;
  238. cursor: crosshair;
  239. }
  240. div.block {
  241. position: absolute;
  242. overflow: visible;
  243. top: 0px;
  244. height: 100%;
  245. }
  246. div.block.height_overflow .height_overflow_message {
  247. position: absolute;
  248. color: rgb(77,77,77);
  249. border-bottom: 2px solid rgb(77,77,77);
  250. text-shadow: white 0px 0px 1px;
  251. white-space: nowrap;
  252. width: 100%;
  253. font-weight: bold;
  254. text-align: center;
  255. z-index: 2000;
  256. box-sizing: border-box;
  257. -moz-box-sizing: border-box;
  258. -webkit-box-sizing: border-box;
  259. -ms-box-sizing: border-box;
  260. }
  261. div.block.timed_out {
  262. background: #ddd;
  263. background: rgba( 0,0,0, 0.1 );
  264. }
  265. div.track {
  266. position: absolute;
  267. left: 0px;
  268. width: 100%;
  269. padding: 0;
  270. margin: 0;
  271. z-index: 0;
  272. border-top: 1px solid #fafafa;
  273. box-sizing: border-box;
  274. -moz-box-sizing: border-box;
  275. -webkit-box-sizing: border-box;
  276. -ms-box-sizing: border-box;
  277. }
  278. div.pin_underlay {
  279. width: 100%;
  280. position: absolute;
  281. background: white;
  282. z-index: 6;
  283. -moz-box-shadow: 0 0 10px 0 rgba( 30, 30, 50, 0.9 );
  284. -webkit-box-shadow: 0 0 10px 0 rgba( 30, 30, 50, 0.9 );
  285. box-shadow: 0 0 10px 0 rgba( 30, 30, 50, 0.9 );
  286. }
  287. div.track.pinned {
  288. z-index: 20;
  289. }
  290. .track.dojoDndItemOver {
  291. cursor: inherit;
  292. background: inherit;
  293. }
  294. .track.dojoDndItemAnchor {
  295. background: inherit;
  296. }
  297. .track.dojoDndItemSelected {
  298. background: inherit;
  299. }
  300. .track.dojoDndItemBefore {
  301. border-top: 3px solid #999;
  302. margin-top: -3px;
  303. }
  304. .track.dojoDndItemAfter {
  305. border-bottom: 3px solid #999;
  306. margin-bottom: -3px;
  307. }
  308. div#static_track {
  309. top: 0px;
  310. position: absolute;
  311. background: #FAFAFA url(src/dijit/themes/tundra/images/titleBar.png) repeat-x top left;
  312. border-top: 1px solid #999;
  313. border-bottom: 1px solid #444;
  314. z-index: 20;
  315. }
  316. div.gridline {
  317. position: absolute;
  318. left: 0px;
  319. top: 0px;
  320. width: 0px;
  321. height: 100%;
  322. border-style: none none none solid;
  323. border-width: 1px;
  324. border-color: red;
  325. z-index: 0;
  326. }
  327. div.gridline_major {
  328. border-color: #bbb;
  329. }
  330. div.gridline_minor {
  331. border-color: #eee;
  332. }
  333. div.pos-label {
  334. position: absolute;
  335. left: -0.35em;
  336. top: 0px;
  337. z-index: 100;
  338. font-family: sans-serif;
  339. }
  340. div.overview-pos {
  341. position: absolute;
  342. left: 0px;
  343. top: 0.27em;
  344. color: black;
  345. padding-left: 4px;
  346. font-family: sans-serif;
  347. border: 0;
  348. z-index: 10;
  349. }
  350. div.overview-pos:first-child {
  351. margin-left: 1px;
  352. }
  353. div.blank-block {
  354. font-family: sans-serif;
  355. position: absolute;
  356. overflow: visible;
  357. top: 0px;
  358. height: 100%;
  359. background-color: white;
  360. z-index: 19;
  361. }
  362. div.track-border {
  363. background: #eee;
  364. width: 100%;
  365. height: 2px;
  366. top: -8px;
  367. }
  368. div.track-label, div.tracklist-label {
  369. z-index: 20;
  370. padding: 1px 6px;
  371. overflow: hidden;
  372. cursor: pointer;
  373. border-width: 1px;
  374. border-style: solid;
  375. border-color: #999;
  376. color: #111;
  377. font-weight: bold;
  378. }
  379. div.tracklist-label {
  380. white-space: nowrap;
  381. overflow: hidden;
  382. margin-top: -1px;
  383. }
  384. div.tracklist-label.collapsed {
  385. height: 3px;
  386. padding: 0;
  387. box-sizing: border-box;
  388. -moz-box-sizing: border-box;
  389. -webkit-box-sizing: border-box;
  390. -ms-box-sizing: border-box;
  391. }
  392. /* NOTE: browsers that don't support rgba colors will fall back to all
  393. track labels being #bcbcbc */
  394. .notfound-dialog .message {
  395. margin: 1em;
  396. text-align: center;
  397. }
  398. .track .loading {
  399. background: #fafafa;
  400. color: #777;
  401. margin: 0;
  402. font-weight: bold;
  403. height: 100%;
  404. width: 100%;
  405. z-index: 15;
  406. position: absolute;
  407. }
  408. .track .loading .text {
  409. display: inline;
  410. line-height: 40px;
  411. margin: 1em;
  412. }
  413. div.track-label {
  414. color: black;
  415. margin: -1px 0 0 -1px;
  416. overflow: visible;
  417. background: white;
  418. padding: 0 5px;
  419. height: 23px;
  420. line-height: 23px;
  421. z-index: 20;
  422. border-color: #eee;
  423. opacity: 0.7;
  424. /* setting white-space to "nowrap" prevents Chrome-specific bug with
  425. label text sometimes disappearing after zoom in Chrome was
  426. wrapping track-label text to next line, which falls outside of
  427. track-label fixed height and therefore not seen. see chromium
  428. bug report for more details on underlying issue:
  429. http://code.google.com/p/chromium/issues/detail?id=138918
  430. */
  431. white-space: nowrap;
  432. }
  433. div.track-label .track-label-text {
  434. display: inline-block;
  435. white-space: nowrap;
  436. }
  437. div.track-label .track-close-button {
  438. display: inline-block;
  439. vertical-align: top;
  440. position: relative;
  441. top: 50%;
  442. height: 20px;
  443. width: 25px;
  444. margin: -10px -3px -4px -6px;
  445. }
  446. div.track-label .track-menu-button {
  447. display: inline-block;
  448. position: relative;
  449. vertical-align: top;
  450. right: -5px;
  451. top: 0px;
  452. width: 24px;
  453. height: 100%;
  454. border-radius: 0 6px 6px 0;
  455. border-left: 1px inset transparent;
  456. }
  457. div.track-label .feature-density {
  458. font-size: 90%;
  459. font-weight: normal;
  460. }
  461. .tundra div.track-label:hover .track-menu-button div {
  462. height: 8px;
  463. width: 8px;
  464. position: absolute;
  465. left: 8px;
  466. top: 7px;
  467. background: url("img/spriteArrows.png") no-repeat -28px 0;
  468. }
  469. .tundra div.track-label:hover .track-menu-button:hover {
  470. background-color: rgba( 0, 0, 100, 0.05 );
  471. border-left-color: #ccc;
  472. }
  473. .tundra div.track-label .track-close-button {
  474. background: url("src/dijit/themes/tundra/images/tabClose.png") no-repeat 40% 50%;
  475. }
  476. .tundra div.track-label .track-close-button:hover {
  477. background-image: url("src/dijit/themes/tundra/images/tabCloseHover.png");
  478. }
  479. .tundra div.track-label:hover .track-menu-button:hover div {
  480. background-position-x: 0px;
  481. }
  482. div.track-label:hover {
  483. background: #FAFAFA url(src/dijit/themes/tundra/images/titleBar.png) repeat-x top left;
  484. border-width: 1px;
  485. border-color: #666;
  486. border-color: rgba( 0,0,0, 1);
  487. background-color: #ddd;
  488. opacity: 1.0;
  489. }
  490. div.tracklist-label {
  491. padding: 3px;
  492. background-color: #ddd;
  493. background-color: rgba( 220, 220, 220, 0.9 );
  494. }
  495. div.tracklist-label:hover {
  496. background-color: #396494;
  497. border: 1px solid black;
  498. }
  499. div.tracklist-container.dojoDndItemSelected {
  500. background-color: #396494;
  501. background-color: rgb(110, 132, 156)
  502. }
  503. div.tracklist-container.dojoDndItemSelected .tracklist-label {
  504. background-color: #b2c3d6;
  505. }
  506. .jbrowseSimpleTrackSelector {
  507. background: #f2f2f2;
  508. background-image: url('img/tracklist_bg.png');
  509. background-repeat: repeat-y;
  510. background-position: right;
  511. }
  512. .jbrowseSimpleTrackSelector h2 {
  513. margin: 0.5em 0 0 0.5em;
  514. }
  515. div.textfilter {
  516. margin: 0.5em 0 1em 0.3em;
  517. }
  518. div.textfilter input {
  519. padding: 2px 0 2px 18px;
  520. width: 100%;
  521. height: 100%;
  522. box-sizing: border-box;
  523. -moz-box-sizing: border-box;
  524. -webkit-box-sizing: border-box;
  525. -ms-box-sizing: border-box;
  526. }
  527. div.textfilter > div.jbrowseIconCancel {
  528. position: absolute;
  529. left: 5px;
  530. margin-top: -6px;
  531. top: 50%;
  532. }
  533. #trackPane_splitter {
  534. background: #dcdcdc;
  535. width: 5px;
  536. border-right: 1px solid #555;
  537. }
  538. div.tracklist-container {
  539. padding: 0 4px;
  540. }
  541. .tracklist-container.dojoDndItemBefore {
  542. border-top: 3px solid #999;
  543. padding-top: 2px;
  544. }
  545. .tracklist-container.dojoDndItemAfter {
  546. border-bottom: 3px solid #999;
  547. padding-bottom: 2px;
  548. }
  549. /* styles for feature labels */
  550. .feature-label {
  551. position: absolute;
  552. border: 0px;
  553. margin: -2px 0px 0px 0px;
  554. /* padding: 0px 0px 2px 0px; for more space below labels */
  555. padding: 0px 0px 0px 0px;
  556. /* font-size: 80%; */
  557. white-space: nowrap;
  558. z-index: 12;
  559. cursor: pointer;
  560. }
  561. a.feature-label {
  562. color: black;
  563. }
  564. .feature-description {
  565. color: blue;
  566. margin-top: -0.2em;
  567. }
  568. .feature-label.highlighted {
  569. background: rgba( 255, 255, 0, 0.7 );
  570. font-weight: bold;
  571. border: 1px solid red;
  572. padding: 0 2px;
  573. }
  574. .rubber-highlight {
  575. border: 1px solid black;
  576. height: 100%;
  577. border-color: rgba( 0, 0, 0, 0.6 );
  578. background-color: #8087ff;
  579. background-color: rgba( 128, 136, 255, 0.6 );
  580. padding: 0;
  581. margin: 0;
  582. overflow: hidden;
  583. cursor: crosshair;
  584. }
  585. .rubber-highlight div {
  586. color: white;
  587. padding: 0;
  588. margin-top: 30px;
  589. font-size: 160%;
  590. text-align: center;
  591. font-weight: bold;
  592. text-shadow: #6374AB 1px 1px 0;
  593. }
  594. div.overview .rubber-highlight {
  595. font-size: 0;
  596. height: 100%;
  597. border-top: none;
  598. border-bottom: none;
  599. }
  600. div.overview .rubber-highlight * {
  601. display: none;
  602. }
  603. .icon.nav {
  604. height: 30px !important;
  605. }
  606. #moveLeft, #moveRight, #bigZoomOut, #zoomOut, #bigZoomIn, #zoomIn, #moveLeftSmall, #moveRightSmall, #zoomInSmall, #zoomOutSmall{
  607. background: url(img/scroll_zoom_sprites.png) top left no-repeat;
  608. background-size: 50px 280px;
  609. cursor: pointer;
  610. }
  611. #moveLeft{
  612. background-position: 5px -35px;
  613. width:55px;
  614. }
  615. #moveLeftSmall {
  616. background-position: 0px -200px;
  617. height: 20px !important;
  618. width: 33px;
  619. }
  620. #moveRight{
  621. background-position: 0px -135px;
  622. width:55px;
  623. }
  624. #moveRightSmall {
  625. background-position: 0px -220px;
  626. height: 20px !important;
  627. width: 33px;
  628. }
  629. #bigZoomOut{
  630. background-position: 0px -168px;
  631. width:35px;
  632. }
  633. #zoomOut{
  634. background-position: 0px -100px;
  635. width: 30px;
  636. }
  637. #zoomOutSmall{
  638. background-position: 0px -240px;
  639. height: 20px !important;
  640. width: 20px;
  641. }
  642. #bigZoomIn{
  643. background-position: 0px -69px;
  644. width:35px;
  645. }
  646. #zoomIn{
  647. background-position: 0px -2.5px;
  648. width: 30px;
  649. }
  650. #zoomInSmall{
  651. background-position: 0px -260px;
  652. height: 20px !important;
  653. width: 20px;
  654. }
  655. input.nav {
  656. font-size: 9px !important;
  657. }
  658. .help_dialog ul {
  659. padding-left: 0;
  660. }
  661. .help_dialog div.main {
  662. }
  663. .help_dialog div.main > dl {
  664. width: 90%;
  665. margin: 0 auto 1em auto;
  666. }
  667. .help_dialog dt {
  668. font-weight: bold;
  669. margin-top: 1em;
  670. }
  671. .help_dialog dd {
  672. margin-left: 2em;
  673. }
  674. .help_dialog dl dl.searchexample dt,
  675. .help_dialog span.example {
  676. font-weight: normal;
  677. font-family: monospace;
  678. }
  679. .fatal_error {
  680. font-size: 14px;
  681. margin: 1em;
  682. }
  683. div.error, div.message {
  684. margin: 1px 1em;
  685. padding: 2px 6px;
  686. border: 1px outset rgba( 0, 0, 0, 0.3 );
  687. }
  688. div.error {
  689. background: #ff8888;
  690. }
  691. div.track > div.error {
  692. width: 30em;
  693. position: absolute;
  694. }
  695. div.error h2 {
  696. margin-top: 0;
  697. }
  698. div.error .codecaption {
  699. font-size: 90%;
  700. font-weight: bold;
  701. margin-top: 1em;
  702. margin-left: 0.2em;
  703. }
  704. div.error code {
  705. display: block;
  706. font-size: 10px;
  707. padding: 0.4em 1.2em;
  708. margin: 0 0.3em 0.3em 0.3em;
  709. overflow: auto;
  710. max-height: 6em;
  711. }
  712. div.message {
  713. background: #eee;
  714. }
  715. div.block > div.message {
  716. margin: 1em 0;
  717. position: absolute;
  718. }
  719. div.block:hover > div.message {
  720. z-index: 30000;
  721. }
  722. .tundra .dijitDialogPaneContent {
  723. border-top: 1px solid #acacac;
  724. font-family: sans-serif;
  725. }
  726. /* styles dealing with popups launched by clicking on features */
  727. .popup-dialog-iframe .dijitDialogPaneContent {
  728. padding: 0;
  729. }
  730. /* styles for popup dialogs */
  731. a.dialog-new-window {
  732. padding-left: 1em;
  733. font-size: 90%;
  734. }
  735. /* styles for popup feature detail dialogs from tracks */
  736. .feature-detail {
  737. width: 50em;
  738. color: #333;
  739. }
  740. .feature-detail .genotype_summary {
  741. padding: 1em;
  742. }
  743. .feature-detail .genotype_summary table {
  744. border-collapse: collapse;
  745. }
  746. .feature-detail .genotype_summary td {
  747. padding: 0 1em;
  748. }
  749. .feature-detail .genotype_summary td.total {
  750. font-weight: bold;
  751. border-top: 1px solid #444;
  752. }
  753. .feature-detail .genotype_summary td.count, .feature-detail .genotype_summary td.pct {
  754. text-align: right;
  755. }
  756. .feature-detail .genotype_summary td.category.level_1 {
  757. padding-left: 2em;
  758. }
  759. .feature-detail .genotype_summary td.category.level_2 {
  760. padding-left: 3em;
  761. }
  762. .feature-detail .genotype_summary td.category.level_3 {
  763. padding-left: 4em;
  764. }
  765. .feature-detail .genotype_summary td.category.level_4 {
  766. padding-left: 5em;
  767. }
  768. .feature-detail .subfeature-detail {
  769. background: #fafafa;
  770. background: rgba( 0, 0, 0, 0.1 );
  771. border: 1px outset #B9B9B9;
  772. padding: 0.6em;
  773. margin-bottom: 0.8em;
  774. }
  775. .feature-detail .fastaView {
  776. padding: 0;
  777. border: 1px solid #aaa;
  778. }
  779. .feature-detail .fastaView .dijitToolbar {
  780. text-align: right;
  781. }
  782. .feature-detail .fastaView textarea {
  783. padding: 1em 1.5em;
  784. margin: 0;
  785. border: none;
  786. }
  787. .feature-detail div.core {
  788. font-size: 110%;
  789. }
  790. .feature-detail div.core h2.sectiontitle {
  791. margin-top: 0;
  792. }
  793. .feature-detail h2.sectiontitle {
  794. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  795. margin: 1em 0 0.7em 0;
  796. }
  797. .detail .value_container {
  798. display: inline-block;
  799. max-height: 20em;
  800. overflow-y: auto;
  801. box-sizing: border-box;
  802. -moz-box-sizing: border-box;
  803. -webkit-box-sizing: border-box;
  804. -ms-box-sizing: border-box;
  805. }
  806. .detail .value_container.big, .detail .value_container.dgrid {
  807. border: 1px solid rgba(0,0,50,0.1);
  808. margin-left: 1em;
  809. margin-top: 0.3em;
  810. }
  811. .detail .multi_value .value {
  812. border: 1px solid #ddd;
  813. box-sizing: border-box;
  814. -moz-box-sizing: border-box;
  815. -webkit-box-sizing: border-box;
  816. -ms-box-sizing: border-box;
  817. }
  818. .detail .value {
  819. display: inline-block;
  820. vertical-align: top;
  821. font-family: sans-serif;
  822. padding: 0 0.7em;
  823. line-height: 1.8;
  824. }
  825. .detail .field {
  826. margin: 0;
  827. display: inline-block;
  828. min-width: 90px;
  829. vertical-align: top;
  830. padding: 2px 0.5em;
  831. background: rgba( 50, 85, 255,0.1 );
  832. border-bottom: 1px solid #D2D4E4;
  833. border-bottom-color: rgba( 0, 0, 0, 0.1 );
  834. font-size: 1.1667em;
  835. }
  836. /* field names that have tooltips */
  837. .detail .field[title], .detail .dgrid-cell[title] {
  838. background: rgba( 255,245,50,0.3 );
  839. }
  840. .detail .field[title]:hover, .detail .dgrid-cell[title]:hover {
  841. background: rgba( 255,255,50,0.7 );
  842. }
  843. /*
  844. force long sequences in feature and alignment detail dialogs to
  845. wrap at 45em
  846. */
  847. .detail .value.seq,
  848. .detail .value.sequence {
  849. word-wrap: break-word;
  850. width: 45em;
  851. }
  852. .detail .field_container {
  853. margin-left: 1em;
  854. margin-bottom: 2px;
  855. }
  856. .detail hr {
  857. margin: 0.8em 4em 0.5em 0.7em;
  858. }
  859. .sharePane input {
  860. padding: 1px 0 2px 1px;
  861. }
  862. .sharePane .copyReminder {
  863. background-color: #396494;
  864. text-align: center;
  865. width: 50%;
  866. margin: 0 auto;
  867. color: white;
  868. padding: 2px;
  869. font-weight: bold;
  870. }
  871. .tundra .sharePane input {
  872. border: 1px solid #ccc;
  873. }
  874. /*styles for vertical line and BP label*/
  875. .basePairLabel {
  876. color: black;
  877. position: fixed;
  878. font-weight: bold;
  879. font-size: 9px;
  880. display: none;
  881. background: #fefefe;
  882. padding: 0 0.7em;
  883. z-index: 1000;
  884. text-align: center;
  885. cursor: crosshair;
  886. border: 1px solid #888;
  887. }
  888. .basePairLabel.rubber {
  889. z-index: 25;
  890. }
  891. .trackVerticalPositionIndicatorMain {
  892. position: fixed;
  893. display: none;
  894. cursor: crosshair;
  895. left: -2px;
  896. height: 100%;
  897. width: 1px;
  898. background-color: #FF0000;
  899. z-index: 15;
  900. top: 0;
  901. }
  902. /* styles for per-base quality table in alignment detail pages */
  903. .baseQuality {
  904. font-family: Courier New, monospace;
  905. }
  906. table.baseQuality {
  907. margin-bottom: 1em;
  908. }
  909. table.baseQuality td {
  910. padding: 0 0.2em;
  911. line-height: 0.95;
  912. text-align: center;
  913. }
  914. .baseQuality .basePosition {
  915. display: inline-block;
  916. padding: 0 0.3em 0.4em 0.3em;
  917. }
  918. .baseQuality .basePosition:hover {
  919. background: #ccc;
  920. }
  921. .baseQuality span.seq {
  922. display: block;
  923. text-align: center;
  924. font-weight: bold;
  925. }
  926. .baseQuality span.qual {
  927. display: block;
  928. text-align: center;
  929. }