Skip to content

Commit

Permalink
Fix CodeMirror editor's UI broken since b086a9d.
Browse files Browse the repository at this point in the history
* Fix overlapped vertical scroll bar.
* Fix disappeared preview toggle button.
  • Loading branch information
eungjun-yi committed Sep 28, 2012
1 parent b086a9d commit f6a90ff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.json
@@ -1 +1 @@
{}
{"users":{"racoon":{"name":"nekure","id":"racoon","email":"nekure@gmail.com","password":"dKiPJB5RoVWXTniX+PjJWLmIxeYwBGfAmqOLoVHgneawFJGAGKuzl9ObtPw4fS+3pqmCTOYG9DrbVlQpUZ0SSQ=="}}}
10 changes: 9 additions & 1 deletion public/stylesheets/style.css
Expand Up @@ -26,7 +26,15 @@ img {
.CodeMirror {
border: 1px solid rgb(204, 204, 204);
border-radius: 2px 2px 2px 2px;
padding-right: 4px;
}

/*
* In Edit Page, The preview toggle button should have higher z-index than the
* vertical scroll bar on CodeMirror editor. The scroll bar's z-index has been 5
* since v2.33.
*/
.write button.tog {
z-index: 6;
}

/*
Expand Down

0 comments on commit f6a90ff

Please sign in to comment.