sass.css 16.5 KB
Newer Older
1
/* styles for menu.html template (navbar etc) */
2 3 4 5 6
/* #dafixedtop .navbar-text, #graphsfixedtop .navbar-text */
/*     margin: 0 */
/*     padding-top: 15px */
/*     padding-bottom: 15px */
/*     float: none */
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
#corporatop.nav-tabs > li {
  padding-left: 1;
  padding-right: 1;
}

#corporatop.nav-tabs > li > a {
  padding-top: 8;
  padding-bottom: 8;
  line-height: 0.85;
  margin-bottom: -5px;
}

.spacing-class {
  margin-right: 10px;
}

.exportbtn {
  /* border: 1px solid #333 */
  margin-top: 17px;
}

.btn .glyphicon {
  /* glyphicons are always rendered too high within bootstrap buttons */
  vertical-align: middle;
}

/* graph name => editable input => submitName() => minimsg */
.editable {
  color: grey;
}

#graphname-edit {
  color: white;
  background-color: transparent;
  border: none;
  max-width: 8em;
}

.minimsg {
  font-size: 0.7em;
  padding: 7p0x 9px;
}

.minimsg * {
  line-height: 100%;
}

.context-menu {
  position: absolute;
  left: 96px;
  top: -64px;
  background-color: white;
  z-index: 1000;
}

.context-menu a.list-group-item {
  cursor: pointer;
}

.search-bar-container {
  margin-top: 11px;
  text-align: center;
  max-width: 800px;
  height: 33px;
  float: left;
  display: grid;
  grid-template-columns: auto auto auto;
}

.search-bar-toggle {
  padding: 2px;
  margin: 2px;
  border: 0;
}

.search-bar.closed {
  display: none;
}

86
#graph-explorer {
87 88
  margin-left: 20rem;
  margin-right: 20rem;
89
  padding-top: 0px;
90
}
91 92

.graph-container {
93 94 95 96 97 98 99 100
  /* #toggle-container */
  /*   position: fixed */
  /*   z-index: 999 // needs to appear above solid menu bar */
  /*   right: 25% */
  /*   top: 10px */
  /*   width: 50% */
  /*   .container-fluid */
  /*     padding-top: 90px */
101
}
102
.graph-container #sp-container {
103 104 105 106 107 108 109 110
  position: absolute;
  max-height: 600px;
  top: 170px;
  border: 1px white solid;
  background-color: white;
  width: 28%;
  z-index: 15;
}
111
.graph-container #sp-container #myTab {
112 113 114
  marginBottom: 18px;
  marginTop: 18px;
}
115
.graph-container #sp-container #myTabContent {
116 117 118
  borderBottom: 1px solid black;
  paddingBottom: 19px;
}
119
.graph-container #sp-container #horizontal-checkbox ul {
120 121 122
  display: inline;
  float: left;
}
123
.graph-container .lefthanded #sp-container {
124 125
  left: 0%;
}
126
.graph-container .righthanded #sp-container {
127 128
  left: 70%;
}
129 130 131 132 133 134 135 136 137 138 139 140 141 142
.graph-container .graph-tree {
  position: absolute;
  max-height: 600px;
  top: 170px;
  background-color: #fff;
  z-index: 1;
}
.graph-container .lefthanded .graph-tree {
  left: 80%;
}
.graph-container .righthanded .graph-tree {
  left: 0%;
}
.graph-container #controls-container {
143
  position: absolute;
144
  z-index: 900;
145 146 147 148 149 150
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.75);
  left: 0;
  right: 0;
  top: 60px;
}
151 152
.graph-container #controls-container .nav-item {
  padding-left: 0.8rem;
153
}
154
.graph-container .graph-row {
155
  height: 100vh;
156 157
}
.graph-container .graph-row #graph-view {
158
  height: 95vh;
159 160
}
.graph-container #tree {
161 162 163 164 165 166 167 168 169
  position: absolute;
  z-index: 1;
}

.input-with-autocomplete .completions {
  position: fixed;
  max-height: 300px;
  overflow-y: scroll;
  width: 300px;
170
  top: 50px;
171 172 173
}

#dafixedtop {
174
  z-index: 910;
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
}

#logo-designed {
  border: 15px;
}
#logo-designed img {
  height: 150px;
  border: 3px solid white;
}

#page-wrapper {
  margin-top: 96px;
}

#user-page-header {
  border-bottom: 1px solid black;
}

#user-page-info {
  margin-top: 38px;
}

.tableHeader {
  color: white;
}

#toolbar {
  display: inline;
}
#toolbar ul li {
  display: inline;
  margin-right: 19px;
}
#toolbar ul li form {
  display: inline;
}

#horizontal-checkbox ul li {
  display: inline;
  float: left;
  margin-top: 12px;
  margin-right: 21px;
}

li#rename #rename-a {
  display: none;
  position: absolute;
  left: 125px;
}

#node-popup-tooltip {
  background-color: white;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
#node-popup-tooltip:hover {
  border: none;
  text-decoration: none;
}
#node-popup-tooltip .popup-container {
  display: flex;
  flex-direction: colum;
}
240
#node-popup-tooltip .popup-container > .card {
241 242 243
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 0px;
244
  width: 34rem;
245
}
246
#node-popup-tooltip .popup-container > .card .fa-pencil {
247 248
  color: black;
}
249
#node-popup-tooltip .popup-container > .card .card-body {
250 251 252 253 254
  display: flex;
  justify-content: center;
  background-color: white;
  border: none;
}
255
#node-popup-tooltip .popup-container > .card .card-body .spacer {
256 257
  margin: 10px;
}
258
#node-popup-tooltip .popup-container .frame-search.card {
259 260 261 262 263 264 265 266 267 268 269 270 271
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  height: 600px;
  width: 1300px;
}

#create-node-tooltip {
  position: absolute;
  left: 96px;
  top: -64px;
  background-color: white;
  z-index: 1000;
}
272
#create-node-tooltip .card-body input {
273 274 275 276 277 278 279 280 281 282
  min-width: 200px;
}

#file-type-tooltip {
  position: absolute;
  left: 96px;
  top: -64px;
  background-color: white;
  z-index: 1000;
}
283
#file-type-tooltip .card-body select {
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
  min-width: 200px;
}

.glyphitem {
  top: 0;
  display: inline-block;
  float: right;
  opacity: 0.6;
  padding-right: 5px;
  cursor: pointer;
  transition: transform 0.1s ease-out 0s;
  font-size: 15px;
  text-align: center;
}
.glyphitem:hover {
  display: inline-block;
  opacity: 1;
  transform: scale(1.4);
}

#sp-container {
  -webkit-transition: width 2s;
  transition: width 2s;
}

.nooverflow {
  max-width: 300px;
  height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nooverflow:hover {
  overflow: visible;
  height: auto;
}

#graph-tree .tree {
  margin-top: 27px;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.tab-pane .reload-btn {
  padding-right: 6px;
}

.flex {
  display: flex;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-center {
  display: flex;
  flew-wrap: wrap;
  justify-content: center;
}

.flex-space-between, .flex-center {
  display: flex;
  justify-content: space-between;
}

a:focus, a:hover {
  cursor: pointer;
}

body > .tree ul > li:first-child::before {
  top: 12px;
}

li .leaf {
  display: flex;
  flex-direction: row;
364
  color: #005a9aff;
365 366 367
}
li .leaf .folder-icon {
  padding: 0 2 0 2;
368 369
  cursor: pointer;
}
370
li .leaf .node-link a {
371
  cursor: pointer;
372
}
373 374 375
li .leaf .node-link > .node-text {
  color: #000000;
}
376 377 378 379 380 381 382 383 384 385 386 387
li .leaf a.settings {
  cursor: pointer;
  display: block;
  padding: 0 2 0 2;
  text-decoration: none;
  visibility: hidden;
  z-index: 1;
}
li .leaf:hover a.settings {
  visibility: visible;
}

388
.forest > .tree {
389 390
  margin-top: 20px;
}
391

392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
.tree ul li {
  position: relative;
}
.tree ul li::after {
  content: " ";
  height: 1px;
  position: absolute;
  top: 12px;
}
.tree ul li::before {
  bottom: -12px;
  content: " ";
  height: 7px;
  position: absolute;
  top: 5px;
}
.tree ul li:not(:first-child):last-child::before {
  display: none;
}
.tree ul li:only-child::before {
  bottom: 7px;
  content: " ";
  display: list-item;
  position: absolute;
  width: 1px;
  top: 5px;
}
.tree ul li.with-children::after {
  background-color: #000;
}
.tree ul li.with-children::before {
  background-color: #000;
}
.tree .lefthanded .leaf {
  justify-content: flex-end;
}
.tree .lefthanded ul {
  margin-right: 5px;
}
.tree .lefthanded ul li {
  margin-right: 10px;
  padding-right: 5px;
}
.tree .lefthanded ul li.with-children::after {
  right: -10px;
  width: 5px;
}
.tree .lefthanded ul li.with-children::before {
  right: -10px;
  width: 1px;
}
.tree .righthanded .leaf {
  justify-content: flex-start;
}
.tree .righthanded ul {
  margin-left: 5px;
}
.tree .righthanded ul li {
  margin-left: 10px;
  padding-left: 5px;
}
.tree .righthanded ul li.with-children::after {
  left: -10px;
  width: 5px;
}
.tree .righthanded ul li.with-children::before {
  left: -10px;
  width: 1px;
}
.tree .righthanded ul li.with-children:only::before {
  background-color: #000;
  right: 10px;
}
.tree .file-dropped {
  background-color: #d8dfe5;
}
.tree .node-actions {
  padding-left: 5px;
}
.tree .node-actions .update-button.enabled {
  cursor: pointer;
}
.tree .node-actions .update-button.disabled {
  cursor: wait;
}
.tree .node {
  margin-top: 1px;
}
.tree .node.node-type-valid .text {
  text-decoration: underline;
}

.progress-pie {
  background: rgba(51, 122, 183, 0.1);
  border-radius: 100%;
  height: calc(var(--size, 14) * 1px);
  overflow: hidden;
  position: relative;
  width: calc(var(--size, 14) * 1px);
}
.progress-pie .progress-pie-segment {
  --a: calc(var(--over50, 0) * -100%);
  --b: calc((1 + var(--over50, 0)) * 100%);
  --degrees: calc((var(--offset, 0) / 100) * 360);
  -webkit-clip-path: polygon(var(--a) var(--a), var(--b) var(--a), var(--b) var(--b), var(--a) var(--b));
  clip-path: polygon(var(--a) var(--a), var(--b) var(--a), var(--b) var(--b), var(--a) var(--b));
  height: 100%;
  position: absolute;
  transform: translate(0, -50%) rotate(90deg) rotate(calc(var(--degrees) * 1deg));
  transform-origin: 50% 100%;
  width: 100%;
  z-index: calc(1 + var(--over50));
}
.progress-pie .progress-pie-segment:after, .progress-pie .progress-pie-segment:before {
  background: var(--bg, #337ab7);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.progress-pie .progress-pie-segment:before {
  --degrees: calc((var(--value, 45) / 100) * 360);
  transform: translate(0, 100%) rotate(calc(var(--degrees) * 1deg));
  transform-origin: 50% 0%;
}
.progress-pie .progress-pie-segment:after {
  opacity: var(--over50, 0);
}

#node-popup-tooltip .tree .node {
  margin-top: 5px;
}
#node-popup-tooltip .tree .children .node {
  padding-left: 15px;
}

528 529
.panel-actions .almost-useable {
  color: orange;
530
}
531 532
.panel-actions .development-in-progress {
  color: red;
533
}
534 535
.panel-actions .ok-to-use {
  color: black;
536 537
}

538 539 540 541 542
.forest-layout {
  background-color: #fff;
  position: fixed;
  top: 3.7em;
  width: 15%;
543
  z-index: 909;
544 545 546 547 548 549 550 551
}

.left-handed .forest-layout {
  left: 80%;
}

.right-handed .forest-layout {
  left: 2%;
552 553
}

554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
.code-editor .editor .code-area {
  flex-grow: 1;
  max-height: 200px;
  min-width: 25%;
  overflow: auto;
}
.code-editor .editor .code-area .code-container {
  background-color: #fafafa;
  box-sizing: border-box;
  position: relative;
  font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
  font-size: 12px;
  font-variant-ligatures: common-ligatures;
  line-height: 1.5;
  overflow: hidden;
  padding: 0px;
  text-align: left;
}
.code-editor .editor .code-area .code-container textarea {
  border: 0px;
  color: inherit;
  position: absolute;
  left: 0px;
  top: 0px;
  resize: none;
  height: 100%;
  overflow: hidden;
  width: 100%;
  -webkit-text-fill-color: transparent;
  box-sizing: inherit;
  display: inherit;
  margin: 0px;
  padding: 10px;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  word-break: keep-all;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-indent: inherit;
  text-rendering: inherit;
  text-transform: inherit;
}
.code-editor .editor .code-area .code-container pre {
  background: rgba(0, 0, 0, 0) none repeat scroll 0% 0%;
  border: 0px none;
  color: #000;
  pointer-events: none;
  position: relative;
  box-sizing: inherit;
  display: inherit;
  margin: 0px;
  padding: 10px;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  word-break: keep-all;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-indent: inherit;
  text-rendering: inherit;
  text-transform: inherit;
}
.code-editor .editor .v-divider {
  border-left: 1px solid gray;
  cursor: sw-resize;
  height: 100%;
  margin-left: 5px;
  margin-right: 5px;
  width: 1px;
}
.code-editor .editor .html {
  flex-grow: 2;
  margin-left: 25px;
  padding-left: 25px;
}
.code-editor .editor .html.language-haskell {
  font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
  white-space: pre;
}
.code-editor .editor .html.language-python {
  font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
  white-space: pre;
}
.code-editor .editor .html.language-json {
  font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
  white-space: pre;
}
.code-editor .editor .html.language-md ul li {
  list-style: disc !important;
}
.code-editor .editor .html.language-md ol li {
  list-style: decimal !important;
}

657
.cache-toggle {
658 659
  cursor: pointer;
}
660

661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
.left-handed .side-panel {
  left: 2%;
  padding: 0.3em;
  position: fixed;
  top: 3.7em;
  background-color: #fff;
  width: 28%;
}
.left-handed .side-panel .header {
  float: left;
}
.left-handed .side-panel .corpus-doc-view .annotated-field-wrapper .annotated-field-runs {
  max-height: 200px;
  overflow-y: scroll;
}
.left-handed .side-panel .corpus-doc-view .list-group .list-group-item-heading {
  display: inline-block;
  width: 60px;
}

.right-handed .side-panel {
682
  left: 70%;
683
  padding: 0.3em;
684
  position: fixed;
685
  top: 3.7em;
686
  background-color: #fff;
687 688
  width: 28%;
}
689
.right-handed .side-panel .header {
690 691
  float: right;
}
692
.right-handed .side-panel .corpus-doc-view .annotated-field-wrapper .annotated-field-runs {
693 694 695
  max-height: 200px;
  overflow-y: scroll;
}
696
.right-handed .side-panel .corpus-doc-view .list-group .list-group-item-heading {
697 698 699 700 701 702 703
  display: inline-block;
  width: 60px;
}

.simple-layout {
  height: 100%;
}
704 705 706
.simple-layout .license {
  padding-top: 10px;
}
707 708 709 710 711 712
.simple-layout .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
}

713 714 715
.table tr td {
  color: #005a9aff;
}
716 717 718 719 720 721 722 723 724 725 726 727 728 729
.table tr td .active {
  font-weight: bold;
  text-decoration: underline;
}
.table tr td .ngrams-selector {
  display: flex;
}
.table tr td .ngrams-selector .ngrams-chooser {
  padding: 3px;
}
.table tr td .trash {
  text-decoration: line-through;
}

730 731 732 733
.action-search {
  margin: 10px;
}

734 735 736 737
.context-menu {
  position: fixed;
}

738 739 740 741
.search-bar {
  margin: 10px;
}

Alexandre Delanoë's avatar
Alexandre Delanoë committed
742
/* */
743 744 745
.body ul li {
  color: #005a9aff;
}
Alexandre Delanoë's avatar
Alexandre Delanoë committed
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
.body ul .nav {
  color: #005a9aff;
}

.btn-primary {
  color: white;
  background-color: #005a9aff;
  border-color: black;
}

ul .nav {
  color: #005a9aff;
}
ul li {
  color: #005a9aff;
}
762

763 764 765
.frame {
  height: 100vh;
}
766 767 768 769
.frame iframe {
  border: 0;
}

770 771 772 773 774
.join-button {
  padding-bottom: 100px;
  padding-top: 100px;
}

775 776 777 778 779 780 781
.range {
  width: 400px;
  /* some space for the right knob */
  padding-right: 30px;
}
.range .range-slider {
  position: relative;
782
  width: 85%;
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
}
.range .range-slider .scale {
  position: absolute;
  width: 100%;
  height: 3px;
  margin-top: 2px;
  background-color: #d8d8d8;
}
.range .range-slider .scale-sel {
  position: absolute;
  background-color: #27c470;
  width: 100%;
  height: 7px;
}
.range .range-slider .knob {
  position: absolute;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
  margin-top: -4px;
  z-index: 1;
  box-shadow: 1px 1px 3px grey;
}
.range .range-slider .knob .button {
  margin-top: -3px;
  background: #eee;
  width: 30px;
  height: 20px;
}

816 817 818 819
.range-simple input {
  width: 85%;
}

820 821 822 823 824
.annotation-run {
  cursor: pointer;
}
.annotation-run.candidate-term.graph-term.stop-term {
  color: #000;
825
  background-image: linear-gradient(rgba(184, 184, 184, 0.34), rgba(184, 184, 184, 0.34)), linear-gradient(rgba(149, 210, 149, 0.33), rgba(149, 210, 149, 0.33)), linear-gradient(rgba(245, 148, 153, 0.33), rgba(245, 148, 153, 0.33));
826 827 828
}
.annotation-run.candidate-term.graph-term {
  color: #000;
829
  background-image: linear-gradient(rgba(184, 184, 184, 0.5), rgba(184, 184, 184, 0.5)), linear-gradient(rgba(149, 210, 149, 0.5), rgba(149, 210, 149, 0.5));
830 831 832
}
.annotation-run.candidate-term.stop-term {
  color: #000;
833
  background-image: linear-gradient(rgba(184, 184, 184, 0.5), rgba(184, 184, 184, 0.5)), linear-gradient(rgba(245, 148, 153, 0.5), rgba(245, 148, 153, 0.5));
834 835 836
}
.annotation-run.graph-term.stop-term {
  color: #000;
837
  background-image: linear-gradient(rgba(149, 210, 149, 0.5), rgba(149, 210, 149, 0.5)), linear-gradient(rgba(245, 148, 153, 0.5), rgba(245, 148, 153, 0.5));
838 839 840
}
.annotation-run.candidate-term {
  color: #000;
841
  background-color: #B8B8B876;
842 843 844
}
.annotation-run.graph-term {
  color: #000;
845
  background-color: #95D29593;
846 847 848
}
.annotation-run.stop-term {
  color: #000;
849
  background-color: #F5949931;
850 851 852 853
}

.context-menu .candidate-term {
  color: #000;
854
  background-color: #B8B8B876;
855 856 857
}
.context-menu .graph-term {
  color: #000;
858
  background-color: #95D29593;
859 860 861
}
.context-menu .stop-term {
  color: #000;
862
  background-color: #F5949931;
863 864
}

Karen Konou's avatar
Karen Konou committed
865
.fv.folders {
Karen Konou's avatar
Karen Konou committed
866 867
  display: grid;
  grid-template-columns: 100px 100px 100px;
868
  gap: 25px;
869
  margin: 20px 0px;
Karen Konou's avatar
Karen Konou committed
870 871
}

Karen Konou's avatar
Karen Konou committed
872 873
.fv.action {
  position: relative;
874 875 876 877 878 879 880 881
  left: 100px;
  top: -15px;
  color: blue;
}

.fv.btn {
  size: 100%;
  width: 100%;
Karen Konou's avatar
Karen Konou committed
882 883
}

884
/*# sourceMappingURL=sass.css.map */