Skip to content

Commit

Permalink
Added dark red hex value.
Browse files Browse the repository at this point in the history
Updated monospace code to be together.
Updated styles in 'Scope Variables'.
Updated styles in 'Call Stack'.
  • Loading branch information
s10wen committed Mar 29, 2013
1 parent 5148f48 commit 847e0b7
Showing 1 changed file with 38 additions and 13 deletions.
51 changes: 38 additions & 13 deletions Custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
lightblue: #72d9e7;
purple: #a775ff;
yellow: #e6da83;
darkred: #c41a16;
*/

/*
Expand Down Expand Up @@ -465,11 +466,6 @@ button.status-bar-item.toggled-on .glyph {
opacity: 0.8 !important;
}

#-webkit-web-inspector .monospace,
#-webkit-web-inspector .source-code {
color: #000 !important;
}

#-webkit-web-inspector .suggest-box {
color: #333 !important;
background-color: #efefef !important;
Expand Down Expand Up @@ -509,10 +505,6 @@ button.status-bar-item.toggled-on .glyph {
border-bottom: 1px solid #333 !important;
}

#-webkit-web-inspector .pane .monospace {
border-top: #f00 !important;
}

#-webkit-web-inspector .pane > .title {
background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444)) !important;
color: #bbb !important;
Expand Down Expand Up @@ -540,7 +532,7 @@ button.status-bar-item.toggled-on .glyph {

#-webkit-web-inspector .pane .monospace,
#-webkit-web-inspector .pane .source-code {
color: #ccc !important;
color: #CCC !important;
}

#-webkit-web-inspector select.status-bar-item,
Expand Down Expand Up @@ -612,15 +604,28 @@ button.status-bar-item.toggled-on .glyph {
margin-bottom: 5px !important;
}

/* Scope Variables */
#-webkit-web-inspector .console-formatted-object,
#-webkit-web-inspector .console-formatted-node,
#-webkit-web-inspector .console-formatted-array {
color: #a775ff !important;
}

#-webkit-web-inspector .section .properties .name,
#-webkit-web-inspector .event-properties .name,
#-webkit-web-inspector .console-formatted-object .name {
color: #72d9e7 !important;
}

/* Scripts */

#-webkit-web-inspector .scripts.panel .sidebar-overlay {
background-color: #242424;
background: #242424;
}

#-webkit-web-inspector .scripts.panel .outline-disclosure li.selected .selection,
#-webkit-web-inspector .outline-disclosure ol:focus li.selected {
background-color: #444 !important;
background: #444 !important;
}


Expand Down Expand Up @@ -745,10 +750,30 @@ body.drawer-visible #drawer {
}

#-webkit-web-inspector .sidebar-pane > .body .info,
#-webkit-web-inspector .sidebar-label {
#-webkit-web-inspector .sidebar-label,
#-webkit-web-inspector .placard .title,
#-webkit-web-inspector .placard .subtitle {
color: #AAA !important;
}

/* Call Stack */
#-webkit-web-inspector .placard.selected {
background: #333 !important;
border-top: 0 !important;
}

#-webkit-web-inspector .placard:nth-of-type(2n) {
background: #444 !important;
border-top: 0 !important;
}

#-webkit-web-inspector .sidebar-pane > .body .placard + .info {
background: #222 !important;
border-top: 0 !important;
color: #c41a16 !important;
font-style: normal !important;
}

/**********************************************/
/* Console
/**********************************************/
Expand Down

1 comment on commit 847e0b7

@s10wen
Copy link
Owner Author

@s10wen s10wen commented on 847e0b7 Mar 29, 2013

Choose a reason for hiding this comment

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

From:
Screen Shot 2013-03-29 at 11 47 49

To:
Screen Shot 2013-03-29 at 12 05 24

Please sign in to comment.