1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00

Merge pull request #5507 from lukaszklis/colour-fixes

Removed left overs from SASS to Myth conversion
This commit is contained in:
John O'Nolan 2015-07-06 19:26:04 +03:00
commit 8e89dff6e1

View file

@ -47,12 +47,12 @@ body {
width: 100%; width: 100%;
/* Prevent elastic scrolling on the whole page */ /* Prevent elastic scrolling on the whole page */
height: 100%; height: 100%;
color: lighten(var(--darkgrey), 10%); color: color(var(--darkgrey) lightness(+10%));
font-size: 1.4rem; font-size: 1.4rem;
} }
::selection { ::selection {
background: lighten(var(--blue), 20%); background: color(var(--blue) lightness(+20%));
} }
@ -208,7 +208,7 @@ tt {
code, code,
tt { tt {
padding: 0.2em 0.4em; padding: 0.2em 0.4em;
background: lighten(#dfe1e3, 2%); background: color(#dfe1e3 lightness(+2%));
border-radius: 2px; border-radius: 2px;
vertical-align: top; vertical-align: top;
white-space: pre-wrap; white-space: pre-wrap;
@ -220,7 +220,7 @@ pre {
margin: 1.6em 0; margin: 1.6em 0;
padding: 10px; padding: 10px;
width: 100%; width: 100%;
background: lighten(#dfe1e3, 2%); background: color(#dfe1e3 lightness(+2%));
border-radius: 3px; border-radius: 3px;
white-space: pre; white-space: pre;
font-family: var(--font-family-mono); font-family: var(--font-family-mono);
@ -370,7 +370,7 @@ img {
@keyframes keyboard-focus-style-fade-out { @keyframes keyboard-focus-style-fade-out {
from { from {
box-shadow: inset 0 0 30px 1px lighten(var(--midgrey), 20%); box-shadow: inset 0 0 30px 1px color(var(--midgrey) lightness(+20%));
} }
to { to {
box-shadow: none; box-shadow: none;