From 316023834e6ed1f11c6738a705e06da9b85a2fed Mon Sep 17 00:00:00 2001 From: nightwing Date: Fri, 1 Jun 2012 12:02:57 +0400 Subject: [PATCH] do not change background repeat of active gutter line --- lib/ace/theme/clouds.css | 4 ++++ lib/ace/theme/clouds_midnight.css | 4 ++++ lib/ace/theme/cobalt.css | 4 ++++ lib/ace/theme/dawn.css | 4 ++++ lib/ace/theme/idle_fingers.css | 4 ++++ lib/ace/theme/kr_theme.css | 4 ++++ lib/ace/theme/merbivore.css | 4 ++++ lib/ace/theme/merbivore_soft.css | 4 ++++ lib/ace/theme/mono_industrial.css | 4 ++++ lib/ace/theme/monokai.css | 6 +++--- lib/ace/theme/pastel_on_dark.css | 4 ++++ lib/ace/theme/solarized_dark.css | 5 +++-- lib/ace/theme/solarized_light.css | 4 ++++ lib/ace/theme/tomorrow.css | 4 ++++ lib/ace/theme/tomorrow_night.css | 4 ++++ lib/ace/theme/tomorrow_night_blue.css | 7 ++++--- lib/ace/theme/tomorrow_night_bright.css | 4 ++++ lib/ace/theme/tomorrow_night_eighties.css | 4 ++++ lib/ace/theme/twilight.css | 4 ++++ lib/ace/theme/vibrant_ink.css | 4 ++++ tool/Theme.tmpl.css | 4 ++++ 21 files changed, 82 insertions(+), 8 deletions(-) diff --git a/lib/ace/theme/clouds.css b/lib/ace/theme/clouds.css index e666fa8b..e490c386 100644 --- a/lib/ace/theme/clouds.css +++ b/lib/ace/theme/clouds.css @@ -57,6 +57,10 @@ background: #FFFBD1; } +.ace-clouds .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-clouds .ace_marker-layer .ace_selected_word { border: 1px solid #BDD5FC; } diff --git a/lib/ace/theme/clouds_midnight.css b/lib/ace/theme/clouds_midnight.css index 0a9f3382..69ed51db 100644 --- a/lib/ace/theme/clouds_midnight.css +++ b/lib/ace/theme/clouds_midnight.css @@ -57,6 +57,10 @@ background: rgba(215, 215, 215, 0.031); } +.ace-clouds-midnight .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-clouds-midnight .ace_marker-layer .ace_selected_word { border: 1px solid #000000; } diff --git a/lib/ace/theme/cobalt.css b/lib/ace/theme/cobalt.css index fc4c8118..5c9a7328 100644 --- a/lib/ace/theme/cobalt.css +++ b/lib/ace/theme/cobalt.css @@ -57,6 +57,10 @@ background: rgba(0, 0, 0, 0.35); } +.ace-cobalt .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-cobalt .ace_marker-layer .ace_selected_word { border: 1px solid rgba(179, 101, 57, 0.75); } diff --git a/lib/ace/theme/dawn.css b/lib/ace/theme/dawn.css index 86fe47dd..85d48623 100644 --- a/lib/ace/theme/dawn.css +++ b/lib/ace/theme/dawn.css @@ -57,6 +57,10 @@ background: rgba(36, 99, 180, 0.12); } +.ace-dawn .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-dawn .ace_marker-layer .ace_selected_word { border: 1px solid rgba(39, 95, 255, 0.30); } diff --git a/lib/ace/theme/idle_fingers.css b/lib/ace/theme/idle_fingers.css index a7737f6d..4ad6ff23 100644 --- a/lib/ace/theme/idle_fingers.css +++ b/lib/ace/theme/idle_fingers.css @@ -57,6 +57,10 @@ background: #353637; } +.ace-idle-fingers .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-idle-fingers .ace_marker-layer .ace_selected_word { border: 1px solid rgba(90, 100, 126, 0.88); } diff --git a/lib/ace/theme/kr_theme.css b/lib/ace/theme/kr_theme.css index 57ad4be1..aa6c2e37 100644 --- a/lib/ace/theme/kr_theme.css +++ b/lib/ace/theme/kr_theme.css @@ -57,6 +57,10 @@ background: #38403D; } +.ace-kr-theme .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-kr-theme .ace_marker-layer .ace_selected_word { border: 1px solid rgba(170, 0, 255, 0.45); } diff --git a/lib/ace/theme/merbivore.css b/lib/ace/theme/merbivore.css index 7d255603..fe957fba 100644 --- a/lib/ace/theme/merbivore.css +++ b/lib/ace/theme/merbivore.css @@ -57,6 +57,10 @@ background: #333435; } +.ace-merbivore .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-merbivore .ace_marker-layer .ace_selected_word { border: 1px solid #454545; } diff --git a/lib/ace/theme/merbivore_soft.css b/lib/ace/theme/merbivore_soft.css index 6ab63324..4b7e91f2 100644 --- a/lib/ace/theme/merbivore_soft.css +++ b/lib/ace/theme/merbivore_soft.css @@ -57,6 +57,10 @@ background: #333435; } +.ace-merbivore-soft .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-merbivore-soft .ace_marker-layer .ace_selected_word { border: 1px solid #494949; } diff --git a/lib/ace/theme/mono_industrial.css b/lib/ace/theme/mono_industrial.css index 3eaf1cae..1e2d06ba 100644 --- a/lib/ace/theme/mono_industrial.css +++ b/lib/ace/theme/mono_industrial.css @@ -57,6 +57,10 @@ background: rgba(12, 13, 12, 0.25); } +.ace-mono-industrial .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-mono-industrial .ace_marker-layer .ace_selected_word { border: 1px solid rgba(145, 153, 148, 0.40); } diff --git a/lib/ace/theme/monokai.css b/lib/ace/theme/monokai.css index 36b0a23c..5597ab01 100644 --- a/lib/ace/theme/monokai.css +++ b/lib/ace/theme/monokai.css @@ -53,11 +53,11 @@ border: 1px solid #49483E; } -.ace-monokai .ace_marker-layer .ace_active_line{ +.ace-monokai .ace_marker-layer .ace_active_line { background: #49483E; } -.ace-monokai .ace_gutter_active_line{ - background: #191916; +.ace-monokai .ace_gutter_active_line { + background-color: #191916; } .ace-monokai .ace_marker-layer .ace_selected_word { diff --git a/lib/ace/theme/pastel_on_dark.css b/lib/ace/theme/pastel_on_dark.css index 31460fb7..fc5155a4 100644 --- a/lib/ace/theme/pastel_on_dark.css +++ b/lib/ace/theme/pastel_on_dark.css @@ -57,6 +57,10 @@ background: rgba(255, 255, 255, 0.031); } +.ace-pastel-on-dark .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-pastel-on-dark .ace_marker-layer .ace_selected_word { border: 1px solid rgba(221, 240, 255, 0.20); } diff --git a/lib/ace/theme/solarized_dark.css b/lib/ace/theme/solarized_dark.css index 392afe54..31eed2bd 100644 --- a/lib/ace/theme/solarized_dark.css +++ b/lib/ace/theme/solarized_dark.css @@ -56,8 +56,9 @@ .ace-solarized-dark .ace_marker-layer .ace_active_line { background: #073642; } -.ace-solarized-dark .ace_gutter_active_line{ - background: #0d3440; + +.ace-solarized-dark .ace_gutter_active_line { + background-color: #0d3440; } .ace-solarized-dark .ace_marker-layer .ace_selected_word { diff --git a/lib/ace/theme/solarized_light.css b/lib/ace/theme/solarized_light.css index cdf01956..cc1c8699 100644 --- a/lib/ace/theme/solarized_light.css +++ b/lib/ace/theme/solarized_light.css @@ -57,6 +57,10 @@ background: #EEE8D5; } +.ace-solarized-light .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-solarized-light .ace_marker-layer .ace_selected_word { border: 1px solid #073642; } diff --git a/lib/ace/theme/tomorrow.css b/lib/ace/theme/tomorrow.css index 27bc1e87..95c9c0d4 100644 --- a/lib/ace/theme/tomorrow.css +++ b/lib/ace/theme/tomorrow.css @@ -57,6 +57,10 @@ background: #EFEFEF; } +.ace-tomorrow .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-tomorrow .ace_marker-layer .ace_selected_word { border: 1px solid #D6D6D6; } diff --git a/lib/ace/theme/tomorrow_night.css b/lib/ace/theme/tomorrow_night.css index eb09c39c..2e74d864 100644 --- a/lib/ace/theme/tomorrow_night.css +++ b/lib/ace/theme/tomorrow_night.css @@ -57,6 +57,10 @@ background: #282A2E; } +.ace-tomorrow-night .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-tomorrow-night .ace_marker-layer .ace_selected_word { border: 1px solid #373B41; } diff --git a/lib/ace/theme/tomorrow_night_blue.css b/lib/ace/theme/tomorrow_night_blue.css index 23b197bf..10c58165 100644 --- a/lib/ace/theme/tomorrow_night_blue.css +++ b/lib/ace/theme/tomorrow_night_blue.css @@ -53,11 +53,12 @@ border: 1px solid #404F7D; } -.ace-tomorrow-night-blue .ace_marker-layer .ace_active_line{ +.ace-tomorrow-night-blue .ace_marker-layer .ace_active_line { background: #00346E; } -.ace-tomorrow-night-blue .ace_gutter_active_line{ - background: #022040; + +.ace-tomorrow-night-blue .ace_gutter_active_line { + background-color: #022040; } .ace-tomorrow-night-blue .ace_marker-layer .ace_selected_word { diff --git a/lib/ace/theme/tomorrow_night_bright.css b/lib/ace/theme/tomorrow_night_bright.css index c7b35f8b..21a928be 100644 --- a/lib/ace/theme/tomorrow_night_bright.css +++ b/lib/ace/theme/tomorrow_night_bright.css @@ -57,6 +57,10 @@ background: #2A2A2A; } +.ace-tomorrow-night-bright .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-tomorrow-night-bright .ace_marker-layer .ace_selected_word { border: 1px solid #424242; } diff --git a/lib/ace/theme/tomorrow_night_eighties.css b/lib/ace/theme/tomorrow_night_eighties.css index 8f0244f4..93f2d3b6 100644 --- a/lib/ace/theme/tomorrow_night_eighties.css +++ b/lib/ace/theme/tomorrow_night_eighties.css @@ -57,6 +57,10 @@ background: #393939; } +.ace-tomorrow-night-eighties .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-tomorrow-night-eighties .ace_marker-layer .ace_selected_word { border: 1px solid #515151; } diff --git a/lib/ace/theme/twilight.css b/lib/ace/theme/twilight.css index a9637b09..6d81e4a5 100644 --- a/lib/ace/theme/twilight.css +++ b/lib/ace/theme/twilight.css @@ -57,6 +57,10 @@ background: rgba(255, 255, 255, 0.031); } +.ace-twilight .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-twilight .ace_marker-layer .ace_selected_word { border: 1px solid rgba(221, 240, 255, 0.20); } diff --git a/lib/ace/theme/vibrant_ink.css b/lib/ace/theme/vibrant_ink.css index 9144a275..81c54d71 100644 --- a/lib/ace/theme/vibrant_ink.css +++ b/lib/ace/theme/vibrant_ink.css @@ -57,6 +57,10 @@ background: #333333; } +.ace-vibrant-ink .ace_gutter_active_line { + background-color : #dcdcdc; +} + .ace-vibrant-ink .ace_marker-layer .ace_selected_word { border: 1px solid #6699CC; } diff --git a/tool/Theme.tmpl.css b/tool/Theme.tmpl.css index 1d6aca07..5d55386a 100644 --- a/tool/Theme.tmpl.css +++ b/tool/Theme.tmpl.css @@ -57,6 +57,10 @@ background: %active_line%; } +.%cssClass% .ace_gutter_active_line { + background-color : #dcdcdc; +} + .%cssClass% .ace_marker-layer .ace_selected_word { %selected_word_highlight% }