Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Addresses selection bug -- Issue #56 #57

Merged
merged 1 commit into from
Jan 9, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/styles/brackets_codemirror_override.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
/* Brackets / CodeMirror Code Formatting */

.content {

body {
/* TODO: Setting code backround color should probably be deeper in the
DOM hierarchy than "body". Right now there's a bug that if you
change the background color of .content (probably the right place)
then selection gets drawn underneath the color, so you can't see
the selection.

This is due to the fact that the div containing the selection is
absolutely positioned with a z-order of -1, and so is drawn
below EVERYTHING else that doesn't have a "position" property.
*/
background-color: @background-color-3;
}

Expand Down