Merge pull request #1037 from GSA/Don't-show-empty-checkbox-if-there-are-no-templates#1010

Don't show empty checkbox if there are no templates#1010
This commit is contained in:
Carlo Costino
2023-12-20 00:07:10 -05:00
committed by GitHub

View File

@@ -45,12 +45,12 @@ i.e.
font-size: size("body", 4); font-size: size("body", 4);
} }
&> .usa-nav__primary-item:last-child { &> .usa-nav__primary-item:last-child {
margin-left: auto; margin-left: auto;
@include u-margin-right(-4); @include u-margin-right(-4);
} }
} }
.usa-nav__primary .usa-nav__primary
h1 { h1 {
@@ -132,11 +132,15 @@ td.table-empty-message {
box-shadow: none; box-shadow: none;
} }
.template-list-item-hidden-by-default {
display: none
}
.folder-heading a.folder-heading-folder, .folder-heading a.folder-heading-folder,
.template-list-folder { .template-list-folder {
background: url(../img/material-icons/folder.svg) no-repeat; background: url(../img/material-icons/folder.svg) no-repeat;
padding-left: units(4); padding-left: units(4);
display: inline-block; display: inline-block;
background-position: 0; background-position: 0;
} }
@@ -166,7 +170,7 @@ td.table-empty-message {
.template-list-template { .template-list-template {
background: url(../img/material-icons/description.svg) no-repeat; background: url(../img/material-icons/description.svg) no-repeat;
padding-left: units(4); padding-left: units(4);
display: inline-flex; display: inline-flex;
} }
.js-enabled .live-search { .js-enabled .live-search {
@@ -214,7 +218,7 @@ td.table-empty-message {
} }
.usa-hero { .usa-hero {
background-image: none; background-image: none;
} }
.usa-prose { .usa-prose {
@@ -232,7 +236,7 @@ td.table-empty-message {
} }
.navigation-service.usa-breadcrumb { .navigation-service.usa-breadcrumb {
-bottom: 0; -bottom: 0;
} }
// Dashboard // Dashboard
@@ -246,13 +250,13 @@ td.table-empty-message {
text-decoration: none; text-decoration: none;
&:hover{ &:hover{
background: color("blue-warm-70v"); background: color("blue-warm-70v");
} }
} }
span { span {
color: white; color: white;
} }
.big-number-smaller { .big-number-smaller {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.big-number-number { .big-number-number {
font-size: units(5); font-size: units(5);
@@ -264,15 +268,15 @@ td.table-empty-message {
} }
.big-number-status { .big-number-status {
background: color("green-cool-40v"); background: color("green-cool-40v");
display: flex; display: flex;
padding: units(1) units(2); padding: units(1) units(2);
&--failing { &--failing {
padding: 0; padding: 0;
a.usa-link { a.usa-link {
color: white; color: white;
background: color("red-warm-50v"); background: color("red-warm-50v");
padding: units(1) units(2); padding: units(1) units(2);
margin: 0; margin: 0;
width: 100%; width: 100%;
&:hover { &:hover {
background: color("red-warm-60v"); background: color("red-warm-60v");
@@ -282,12 +286,12 @@ td.table-empty-message {
} }
} }
.usa-table { .usa-table {
width: 100%; width: 100%;
caption { caption {
margin-bottom: 0; margin-bottom: 0;
} }
.table-field-center-aligned { .table-field-center-aligned {
text-align: center; text-align: center;
} }
.template-statistics-table-template-name { .template-statistics-table-template-name {
padding-left: units(4); padding-left: units(4);
@@ -300,32 +304,32 @@ td.table-empty-message {
.dashboard-table { .dashboard-table {
table { table {
width: 100%; width: 100%;
} }
.file-list-filename { .file-list-filename {
font-weight: bold; font-weight: bold;
} }
.file-list-hint { .file-list-hint {
margin: 0; margin: 0;
} }
.table-field, .table-field-right-aligned { .table-field, .table-field-right-aligned {
width: 50%; width: 50%;
} }
&.usage-table { &.usage-table {
.table-field, .table-field-left-aligned, .table-field-right-aligned { .table-field, .table-field-left-aligned, .table-field-right-aligned {
width: auto; width: auto;
} }
} }
} }
.usage-table { .usage-table {
ul { ul {
list-style: none; list-style: none;
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
.big-number-smallest { .big-number-smallest {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
} }
@@ -336,27 +340,27 @@ td.table-empty-message {
padding: units(1) 0 units(1) units(1); padding: units(1) 0 units(1) units(1);
margin: units(2) 0 units(5); margin: units(2) 0 units(5);
ul { ul {
padding: 0; padding: 0;
margin: 0; margin: 0;
list-style: none; list-style: none;
} }
} }
// Tabs // Tabs
.tabs { .tabs {
.pill { .pill {
display: flex; display: flex;
list-style: none; list-style: none;
padding: 0; padding: 0;
.pill-item__container { .pill-item__container {
border: 1px solid color("gray-cool-10"); border: 1px solid color("gray-cool-10");
flex: 1; flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
text-align: center; text-align: center;
font-size: units(2); font-size: units(2);
a { a {
padding: units(4); padding: units(4);
.big-number-smaller { .big-number-smaller {
font-size: units(5); font-size: units(5);
@@ -367,7 +371,7 @@ td.table-empty-message {
} }
&:not(.pill-item--selected):hover { &:not(.pill-item--selected):hover {
background: color("blue-warm-70v"); background: color("blue-warm-70v");
} }
&.pill-item--selected:hover { &.pill-item--selected:hover {
color: color("blue-60v"); color: color("blue-60v");
} }
@@ -379,12 +383,12 @@ td.table-empty-message {
// Etc // Etc
.email-brand, .browse-list { .email-brand, .browse-list {
padding: 0; padding: 0;
margin: 0; margin: 0;
list-style: none; list-style: none;
margin-bottom: units(2); margin-bottom: units(2);
li { li {
padding: 8px 0; padding: 8px 0;
} }
} }
@@ -392,7 +396,7 @@ details form {
box-sizing:border-box; box-sizing:border-box;
} }
// Textbox highlight // Textbox highlight
.textbox-highlight { .textbox-highlight {
@@ -440,7 +444,7 @@ details form {
.placeholder, .placeholder,
.placeholder-conditional { .placeholder-conditional {
background-color: #fff; background-color: #fff;
position: relative; position: relative;
&:after { &:after {
content: ""; content: "";
background-color: color("yellow-20v"); background-color: color("yellow-20v");
@@ -449,9 +453,9 @@ details form {
position: absolute; position: absolute;
top: 0; top: 0;
left: 5px; left: 5px;
right: 6px; right: 6px;
height: 100%; height: 100%;
border-radius: 7px; border-radius: 7px;
} }
} }