Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
fixed file input background in edit mode original layout
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroX-DG committed Jul 13, 2018
1 parent b99c410 commit d8a4916
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@
width: 100%
border: none
outline: none
background: transparent
font-size: 15px
border-radius: 5px
padding: 2px 5px
Expand Down
16 changes: 8 additions & 8 deletions browser/render/lib/styles/vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $sidebar-dark: (
$snippet-list-dark: (
create-button: (
background: #ffd76d,
color: #1e1f2b,
color: #1e1f2b
)
);

Expand All @@ -35,7 +35,7 @@ $snippet-list-list-and-detail-dark: (
$snippet-item-dark: (
background: #373a51,
delete-button: (
color: #EA2027
color: #ea2027
),
file-list: (
file: (
Expand Down Expand Up @@ -67,18 +67,18 @@ $body-background--light: #fcf2f2;
// sidebar
$sidebar-light: (
background: #efe3e3,
color: #95989D,
color-darken: darken(#95989D, 20),
color: #95989d,
color-darken: darken(#95989d, 20),
label: (
color: #95989D
color: #95989d
)
);

// snippet list
$snippet-list-light: (
create-button: (
background: #ffd76d,
color: #1e1f2b,
color: #1e1f2b
)
);

Expand All @@ -97,7 +97,7 @@ $snippet-list-list-and-detail-light: (
$snippet-item-light: (
background: #efe3e3,
delete-button: (
color: #EA2027
color: #ea2027
),
file-list: (
file: (
Expand Down Expand Up @@ -129,7 +129,7 @@ $input-tag-light: (
// ==============================
@function map-deep-get($map, $keys...) {
@each $key in $keys {
$map: map-get($map, $key);
$map: map-get($map, $key);
}
@return $map;
}

0 comments on commit d8a4916

Please sign in to comment.