Skip to content

Commit 24b3eca

Browse files
author
Jonas Schubert Erlandsson
committed
Adds index.html, small style fixes.
1 parent 4a73ab6 commit 24b3eca

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

index.html

Whitespace-only changes.

manifest.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,11 @@
33
"name": "Railscast DevTools Theme",
44
"version": "0.1",
55
"description": "DevTools theme based on Ryan Bate's railscast theme for Textmate.",
6-
"default_locale": "en",
76
"devtools_page": "devtools.html",
87
"icons": {
98
"48": "icon_48.png",
109
"128": "icon_128.png"
1110
},
1211
"author": "my codeworks",
13-
"background": {
14-
"persistent": false
15-
}
12+
"homepage_url": "http://github.com/my-codeworks/chrome-devtools-railscasts-theme"
1613
}

styles.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,20 @@
33
/* Optimized for Chrome Canary Channel v34
44
/* https://github.com/mauricecruz/zero-base-themes
55
/******************************************************************************/
6+
/* jshint important:false */
67

78
.cm-execution-line {
89
background-color: rgb(100, 60, 0) !important;
910
outline: 1px solid rgb(200, 120, 0) !important;
1011
}
1112

1213
.cm-highlight {
13-
background-color: rgba(143, 0, 0, 0.5) !important;
14+
-webkit-animation: "fadeout" 2s 0s;
15+
}
16+
17+
@-webkit-keyframes fadeout {
18+
from {background-color: rgb(143, 0, 0); }
19+
to { background-color: #2828282; }
1420
}
1521

1622
.CodeMirror-gutters {

0 commit comments

Comments
 (0)