Skip to content

Commit

Permalink
fix highlight style for find in elements and console
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricecruz committed Aug 29, 2013
1 parent 8fa11c5 commit 7b2c417
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
10 changes: 6 additions & 4 deletions Custom-Stable.css
Original file line number Diff line number Diff line change
Expand Up @@ -1259,12 +1259,14 @@
}

#-webkit-web-inspector #search-results-pane-file-based .search-match .highlighted-match,
#-webkit-web-inspector .webkit-search-result {
padding: 0 2px;
color: #000;
border-radius: 2px;
#-webkit-web-inspector .webkit-search-result,
#-webkit-web-inspector .webkit-highlighted-line.webkit-line-content,
#-webkit-web-inspector .CodeMirror .cm-token-highlight {
color: #000 !important;
border-radius: 2px !important;
font-size: 1em !important;
background-color: #89F5A2 !important;
box-shadow: rgba(0, 0, 0, 0.498039) 3px 3px 4px 0px !important;
}

#-webkit-web-inspector #search-results-pane-file-based .parent .search-result-file-name {
Expand Down
11 changes: 6 additions & 5 deletions Custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@

/*-- FIND --*/
#-webkit-web-inspector #search-results-pane-file-based .search-match .highlighted-match,
#-webkit-web-inspector .webkit-search-result,
#-webkit-web-inspector .highlighted-search-result,
#-webkit-web-inspector .webkit-highlighted-line.webkit-line-content,
#-webkit-web-inspector .CodeMirror .cm-line-with-selection span.cm-column-with-selection {
-webkit-animation: match-animation .5s ease-in-out;
Expand Down Expand Up @@ -912,7 +912,7 @@

/*-- STATE DISPLAY --*/
#-webkit-web-inspector .styles-element-state-pane {
background: #333 !important;
background: #333 !important;
padding: 4px 0 !important;
border-bottom: 1px solid #666 !important;
}
Expand Down Expand Up @@ -1281,13 +1281,14 @@
}

#-webkit-web-inspector #search-results-pane-file-based .search-match .highlighted-match,
#-webkit-web-inspector .webkit-search-result,
#-webkit-web-inspector .highlighted-search-result,
#-webkit-web-inspector .webkit-highlighted-line.webkit-line-content,
#-webkit-web-inspector .CodeMirror .cm-token-highlight {
color: #000;
border-radius: 2px;
color: #000 !important;
border-radius: 2px !important;
font-size: 1em !important;
background-color: #89F5A2 !important;
box-shadow: rgba(0, 0, 0, 0.498039) 3px 3px 4px 0px !important;
}

#-webkit-web-inspector #search-results-pane-file-based .parent .search-result-file-name {
Expand Down

1 comment on commit 7b2c417

@mauricecruz
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes #30

Please sign in to comment.