3278 - Disallow claim creation for a ticket delivered more than seven days ago #791

Merged
carlosjr merged 4 commits from 3278-create_claim into dev 2021-11-19 11:58:56 +00:00
2 changed files with 29 additions and 4 deletions
Showing only changes of commit 28888fc667 - Show all commits

View File

@ -199,7 +199,7 @@
} }
&.standout { &.standout {
border-radius: 1px; border-radius: 1px;
background-color: rgba(255, 255, 255, .1); background-color: rgba(161, 161, 161, 0.1);
padding: 0 12px; padding: 0 12px;
transition-property: background-color, color; transition-property: background-color, color;
transition-duration: 200ms; transition-duration: 200ms;
@ -209,6 +209,17 @@
& > .underline { & > .underline {
display: none; display: none;
} }
& > .infix > .control > input {
&:-internal-autofill-selected {
&,
&:hover,
&:active,
&:valid {
box-shadow: 0 0 0 40px #474747 inset;
-webkit-text-fill-color: $color-font-dark
}
}
}
& > .infix > .control > * { & > .infix > .control > * {
color: $color-font-dark; color: $color-font-dark;
@ -226,6 +237,17 @@
background-color: $color-font-dark; background-color: $color-font-dark;
& > .container { & > .container {
& > .infix > .control > input {
&:-internal-autofill-selected {
&,
&:hover,
&:active,
&:valid {
box-shadow: 0 0 0 40px $color-font-dark inset;
-webkit-text-fill-color: $color-font-bg
}
}
}
& > .infix > .control > * { & > .infix > .control > * {
color: $color-marginal; color: $color-marginal;

View File

@ -23,10 +23,13 @@ vn-layout {
padding-right: 16px; padding-right: 16px;
overflow: hidden; overflow: hidden;
& > .logo > img { & > .logo {
outline: 0;
& > img {
height: 32px; height: 32px;
display: block; display: block;
} }
}
& > .main-title { & > .main-title {
font-size: 1.56rem; font-size: 1.56rem;
text-overflow: ellipsis; text-overflow: ellipsis;