Skip to content

Commit

Permalink
Merge pull request #80 from internetstandards/50
Browse files Browse the repository at this point in the history
clean up unused build options to remove confusion
  • Loading branch information
stitch authored Dec 11, 2024
2 parents 16fdb92 + 08b0344 commit 282b735
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 19 deletions.
2 changes: 0 additions & 2 deletions .env.production

This file was deleted.

2 changes: 0 additions & 2 deletions .env.staging

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ADD package-lock.json package-lock.json
RUN make setup

ADD . /src/
RUN make build-gui-deploy
RUN make build

# Copy all compiled content into simple http server container
FROM nginx
Expand Down
16 changes: 4 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,12 @@ vue-cli: | $(vue-cli)
run: vue-cli
npm run dev

# run-csp: vue-cli
# npm run serve -- --mode production

build-gui-staging: vue-cli
npm run build -- --mode staging

build-gui-production: vue-cli
npm run build -- --mode production

build-gui-deploy: vue-cli
# This option takes the env.deploy file and applies it during build.
build: vue-cli
npm run build -- --mode deploy

build: vue-cli
npm run build
build-local: vue-cli
npm run build -- --mode development

pull_image:
# optimize build by caching previously build image
Expand Down
5 changes: 3 additions & 2 deletions src/components/reports/ReportTableVirtualList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ div.rotate > span {


#report-template .testresultcell span {
display: none; /* This is a fix for popups that inject a span after every usage! */
float: left; /* This is a fix for popups that inject a span after every usage! */
width: 0px;
}

/* first-of-type: This is a fix for popups that inject a span after every usage! */
Expand All @@ -170,7 +171,7 @@ div.rotate > span {
*/
width: 32px; /* Needs to be 32 px for comparison to be visible.*/
height: 20px;
display: block;
display: inline-block;
color: transparent;

/** While hidden, can a screen reader still find it? */
Expand Down

0 comments on commit 282b735

Please sign in to comment.