Increase contrast and focus of input fields

This commit is contained in:
Rafael Conde 2017-05-03 09:11:27 -07:00 committed by Shawn Erquhart
parent a6c8a11223
commit 5adbecad77
3 changed files with 10 additions and 4 deletions

View File

@ -14,9 +14,8 @@
width: 100%;
padding: 12px;
margin: 0;
border: none;
border-bottom: 1px solid rgb(230, 230, 230);
border-radius: 0;
border: 2px solid rgb(230, 230, 230);
border-radius: var(--borderRadius);
outline: 0;
box-shadow: none;
background-color: var(--controlBGColor);

View File

@ -52,3 +52,7 @@
right: 0;
height: 100%;
}
.ProseMirror {
border: 2px solid rgb(230, 230, 230);
}

View File

@ -69,8 +69,11 @@
position: relative;
background-color: var(--controlBGColor);
padding: 12px;
border-radius: 0 0 var(--borderRadius) var(--borderRadius);
overflow: hidden;
border-radius: var(--borderRadius);
border: 2px solid rgb(230, 230, 230);
border-top: 1px solid rgb(230, 230, 230);
min-height: 500px;
& ul,
& ol {