Commit 8152d268 authored by Alexandre Burgoni's avatar Alexandre Burgoni
Browse files

Merge branch 'latest' into 143-add-tool-version-in-the-readme

parents 51639c8e 3c65bac7
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -152,19 +152,19 @@ links_checker:
  allow_failure: true

# See https://docs.gitlab.com/ee/api/labels.html
job_labels:
job_gitlab_labels:
  image: python:3.9.1-alpine
  stage: project_setup
  variables:
    PIPENV_PIPFILE: tools/job_labels/Pipfile
    JOB_LOGFILE: "job_labels.log"
    PIPENV_PIPFILE: tools/job_gitlab_labels/Pipfile
    JOB_LOGFILE: "job_gitlab_labels.log"
  before_script:
    - pip install --ignore-installed distlib pipenv
    - pipenv install
  script:
    - pipenv run python3 tools/job_labels/job_labels.py
    - pipenv run python3 tools/job_gitlab_labels/job_gitlab_labels.py
  artifacts:
    expose_as: "job_labels"
    expose_as: "job_gitlab_labels"
    paths:
      - ${JOB_LOGFILE}
    expire_in: 30 days
+4 −6
Original line number Diff line number Diff line
@@ -215,11 +215,6 @@
    border-color: var(--md-primary-bg-color);
}

.z-index-1000{
  z-index: 1000;
}


.border-radius-10{
  border-radius: 10px !important;
}
@@ -241,7 +236,6 @@ button.md-button-center {
    display:block !important;
    margin:0 auto !important;
    padding-bottom:1em !important;
    padding-top:0.8em !important
    padding-top:0.8em !important;
}

@@ -286,3 +280,7 @@ a.banner-link:hover {
.labels_zone{
  font-size:0.6rem;
}

.md-header {
    z-index: 3;
}
+4 −4
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ div.jx-handle {
	height: 100%;
	width: 40px;
	cursor: col-resize;
	z-index: 15;
	z-index: 2;
	margin-left: -20px;
}

@@ -163,7 +163,7 @@ div.jx-image {

div.jx-image img {
	height: 100%;
	z-index: 3;
	z-index: 1;
	position: absolute;

	max-height: none;
@@ -225,7 +225,7 @@ div.jx-image div.jx-label {
	background-color: #000; /* IE 8 */
	background-color: rgba(0,0,0,.7);
	color: white;
	z-index: 10;
	z-index: 2;
	white-space: nowrap;
	line-height: 18px;
	vertical-align: middle;
@@ -293,7 +293,7 @@ a.jx-knightlab {
	position: absolute;
	right: 0;
	text-decoration: none;
	z-index: 10;
	z-index: 2;
}

a.jx-knightlab div.knightlab-logo {
+15.9 KiB
Loading image diff...
+1 −1
Original line number Diff line number Diff line
## Objective

Creates a versioned HTML documentation from API annotations in your source
code using [apiDoc](https://www.apidocjs.com/){:target="_blank"}.
code using [apiDoc](https://apidocjs.com/){:target="_blank"}.

## How to use it

Loading