updated cookie login and watched cases

This commit is contained in:
2021-11-03 08:24:54 +00:00
parent 30a7e426af
commit fa4c765799
20 changed files with 208 additions and 130 deletions
+1
View File
@@ -225,6 +225,7 @@ html[data-useragent*="MSIE 10.0"] .flex-container {
display: inline-flex;
flex-direction: column;
min-height: 30vh;
width: -webkit-fill-available;
.cardVieAll {
margin-top: auto;
+47
View File
@@ -712,6 +712,13 @@ textarea,
.results .govuk-summary-list__key {
&:last-of-type {
width: 30%;
&.govuk-summary-list__action {
width: 10%;
@media screen and (max-width: 768px) {
width: 100%;
}
}
}
}
@@ -1538,3 +1545,43 @@ ul#sharePageLinks.active {
display: none;
}
}
.govuk-summary-list__actionLink {
border: 1px solid $red;
padding: 5px;
height: 20px;
padding-top: 0px;
padding-bottom: 0px;
border-radius: 5px;
width: auto;
color: white !important;
font-weight: bold;
background-color: $red;
font-size: 15px;
cursor: pointer;
text-decoration: none;
&:active {
top: 2px;
}
&:hover {
background-color: $lightred;
color: $white;
}
&:focus {
border-color: #ffdd00;
outline: 3px solid transparent;
-webkit-box-shadow: inset 0 0 0 1px #ffdd00;
box-shadow: inset 0 0 0 1px #ffdd00;
}
&:focus:not(:active):not(:hover) {
border-color: #ffdd00;
color: #0b0c0c;
background-color: #ffdd00;
-webkit-box-shadow: 0 2px 0 #0b0c0c;
box-shadow: 0 2px 0 #0b0c0c;
}
}