Skip to content

Commit

Permalink
fix(tapis): to-v3 migration body and table
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Aug 10, 2023
1 parent e8adfb2 commit 7454407
Showing 1 changed file with 23 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,30 @@
So just fix major discrepencies found in:
https://confluence.tacc.utexas.edu/x/_YqkEQ */



/* BOOTSTRAP */

/* To restore font size of buttons (whose text appeared smaller than before) */
/* https://tapis-project.org/documentation/ */
.btn {
/* FAQ: Bootstrap 1rem = browser default html 16px, but TACC sets html 10px */
font-size: 16px;
font-size: 16px; /* Bootstrap: 1rem (browser default 16px) | TACC: html 10px. */
}

/* To restore darker text */
body {
color: #212529; /* Bootstrap: #212529 | TACC: var(--global-color-primary--x-dark) */
}

/* To restore table styles */
table {
border-collapse: collapse; /* Bootstrap: collapse | TACC: separate */
}
:is(td,th) {
color: usnet; /* Bootstrap: none (inherit) | TACC: var(--global-color-primary--dark) */
}
/* FAQ: Did not restore, because it makes table easier to scan *//*
tr:nth-child(2n) :is(th,td) {
background: unset; /* Bootstrap: none (inherit) | TACC: var(--global-color-primary--x-light) *\/
}
*/

0 comments on commit 7454407

Please sign in to comment.