Match selection background with CodeMirror

This commit is contained in:
Giuseppe Criscione 2019-06-07 12:01:51 +02:00
parent f7c86681b9
commit ba7c75ab27
3 changed files with 8 additions and 1 deletions

View File

@ -48,6 +48,9 @@ select:focus,
textarea:focus {
box-shadow: 0 0 0 2px rgba(40, 154, 230, 0.3); }
::selection {
background-color: #ecf4fc; }
@media (min-width: 568px) {
.hide-from-xs {
display: none; } }

File diff suppressed because one or more lines are too long

View File

@ -57,6 +57,10 @@ button {
box-shadow: $focus-box-shadow;
}
::selection {
background-color: $color-accent-background;
}
@each $breakpoint-name in map-keys($responsive-breakpoints) {
@media (min-width: map-get($responsive-breakpoints, $breakpoint-name)) {
.hide-from-#{$breakpoint-name} {