Skip to content

Commit

Permalink
Merge pull request #29 from jaredellison/button-color-ios
Browse files Browse the repository at this point in the history
style: Set explicit input button colors
  • Loading branch information
zichongkao authored Jul 8, 2024
2 parents 671f3da + 4d04d92 commit ec0d5c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,12 @@ sql-exercise .CodeMirror {
}

sql-exercise .sqlExInputArea input {
color: black;
margin-right: 1em;
background: none;
border-radius: 4px;
background: #f9f9f9;
font-size: 0.8em;
font-weight: 200;
border-width: thin;
height: 2em;
border: thin solid black;
border-radius: 4px;
}
6 changes: 4 additions & 2 deletions css/rtl/rtl_main.css
Original file line number Diff line number Diff line change
Expand Up @@ -308,9 +308,11 @@ sql-exercise .CodeMirror {
}

sql-exercise .sqlExInputArea input {
color: black;
margin-right: 1em;
background: none;
border-radius: 4px;
background: #f9f9f9;
font-size: 0.8em;
font-weight: 200;
border: thin solid black;
border-radius: 4px;
}

0 comments on commit ec0d5c8

Please sign in to comment.