fix(client): duplicates and zero length units (#45909)

Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com>
pull/45923/head
Muhammed Mustafa 2022-05-11 20:20:39 +02:00 committed by GitHub
parent 5aa1ab8b0a
commit 8da87f4d58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 15 deletions

View File

@ -29,7 +29,7 @@ body {
display: block; display: block;
height: calc(100vh - var(--header-height, 0px)); height: calc(100vh - var(--header-height, 0px));
width: 100%; width: 100%;
border: 0px; border: 0;
} }
.btn-cta-big { .btn-cta-big {
@ -54,7 +54,7 @@ body {
.default-layout { .default-layout {
flex: 1 0 auto; flex: 1 0 auto;
margin-top: var(--header-height, 0px); margin-top: var(--header-height, 0);
background: var(--secondary-background); background: var(--secondary-background);
} }
@ -174,7 +174,7 @@ button.close:focus {
.modal-content { .modal-content {
background-color: var(--secondary-background); background-color: var(--secondary-background);
border-radius: 0px; border-radius: 0;
border: 1px solid var(--secondary-color); border: 1px solid var(--secondary-color);
} }
@ -190,7 +190,7 @@ input[type='submit'],
border-width: 3px; border-width: 3px;
border-color: var(--secondary-color); border-color: var(--secondary-color);
color: var(--secondary-color); color: var(--secondary-color);
border-radius: 0px; border-radius: 0;
text-decoration: none; text-decoration: none;
white-space: pre-line; white-space: pre-line;
} }
@ -391,7 +391,7 @@ strong {
-webkit-box-shadow: none !important; -webkit-box-shadow: none !important;
-moz-box-shadow: none !important; -moz-box-shadow: none !important;
box-shadow: none !important; box-shadow: none !important;
border-radius: 0px; border-radius: 0;
} }
input { input {
@ -400,7 +400,7 @@ input {
-webkit-box-shadow: none !important; -webkit-box-shadow: none !important;
-moz-box-shadow: none !important; -moz-box-shadow: none !important;
box-shadow: none !important; box-shadow: none !important;
border-radius: 0px; border-radius: 0;
} }
textarea { textarea {
@ -417,7 +417,7 @@ input:focus {
code { code {
background-color: var(--quaternary-background); background-color: var(--quaternary-background);
color: var(--tertiary-color); color: var(--tertiary-color);
border-radius: 0px; border-radius: 0;
font-family: 'Roboto Mono', monospace; font-family: 'Roboto Mono', monospace;
overflow-wrap: anywhere; overflow-wrap: anywhere;
} }
@ -448,7 +448,7 @@ hr {
} }
.open > .dropdown-menu { .open > .dropdown-menu {
border-radius: 0px; border-radius: 0;
} }
.dropdown-menu { .dropdown-menu {
@ -506,12 +506,12 @@ hr {
.breadcrumb { .breadcrumb {
background: var(--tertiary-background); background: var(--tertiary-background);
border-radius: 0px; border-radius: 0;
} }
code[class*='language-'], code[class*='language-'],
pre[class*='language-'] { pre[class*='language-'] {
border-radius: 0px; border-radius: 0;
} }
pre { pre {
@ -540,7 +540,7 @@ pre {
.solution-viewer, .solution-viewer,
.solution-viewer pre { .solution-viewer pre {
margin-bottom: 0px; margin-bottom: 0;
} }
.solution-viewer { .solution-viewer {
@ -606,7 +606,7 @@ blockquote .small {
} }
.alert { .alert {
border-radius: 0px; border-radius: 0;
overflow-wrap: break-word; overflow-wrap: break-word;
} }
@ -618,7 +618,7 @@ blockquote .small {
.alert .btn:hover, .alert .btn:hover,
.alert .btn:focus, .alert .btn:focus,
.alert a:hover, .alert a:hover,
.alert a:hover { .alert a:focus {
background-color: #31708f; background-color: #31708f;
color: #d9edf7; color: #d9edf7;
border-color: #31708f; border-color: #31708f;
@ -628,10 +628,9 @@ blockquote .small {
#search { #search {
background-color: var(--quaternary-background); background-color: var(--quaternary-background);
color: var(--primary-color); color: var(--primary-color);
border-color: var(--quaternary-color); border-color: var(--quaternary-color, buttonface);
border-width: 2px; border-width: 2px;
border-style: outset; border-style: outset;
border-color: buttonface;
border-image: initial; border-image: initial;
} }