This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
View in browser: https://bl.ocks.org/davidl/raw/b8d4fda8abd91b19edf819ff2ac2e86b/?raw=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// XML source viewer: | |
#webkit-xml-viewer-source-xml + .header, | |
#webkit-xml-viewer-source-xml + div + #tree { | |
background-color: @background !important; | |
color: @foreground !important; | |
} | |
#webkit-xml-viewer-source-xml + .header { | |
border-bottom: 1px solid @html-comment !important; | |
color: @html-comment !important; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-webkit-web-inspector .CodeMirror { | |
background-color: @background !important; | |
color: @foreground !important; | |
.CodeMirror-selected { background-color: @selection !important; } | |
.CodeMirror-gutters { | |
background-color: @current-line !important; | |
border-right: 1px solid @foreground !important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Mixin to generate URLs, e.g.: .rapStatus('200') | |
@rapPath: 'http://www.httpstatusrappers.com/images/'; | |
.rapStatus(@statusImg: '') { | |
background-image: e(%('url(%s%s.png)', @rapPath, @statusImg)) !important; | |
} | |
#-webkit-web-inspector { | |
.status-column { | |
overflow: visible !important; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-webkit-web-inspector .status-column { | |
overflow: visible !important; | |
} | |
#-webkit-web-inspector .status-column [title] { | |
overflow: visible !important; | |
position: relative !important; | |
} | |
#-webkit-web-inspector .status-column [title]::before { | |
border-color: transparent transparent #000 transparent !important; | |
border-style: solid !important; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-webkit-web-inspector .status-column { | |
overflow: visible !important; | |
} | |
#-webkit-web-inspector .status-column [title] { | |
overflow: visible !important; | |
position: relative !important; | |
} | |
#-webkit-web-inspector .status-column [title]::before { | |
border-color: transparent transparent #000 transparent !important; | |
border-style: solid !important; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Demo for Prism.js pull request 61 re: empty CDATA sections */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | |
<xsl:output method="html" omit-xml-declaration="yes" indent="yes"/> | |
<!-- | |
This file is intended to transform a ".plist" file into a HTML | |
document that highlights color information by illustrating it | |
and making the color values (hexadecimal and RGB/RGBa) easier to | |
select and copy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes webkit-inspector-error{0%{color:#ff6c60} 50%{color:#f91300} 100%{color:#ff6c60}}@-webkit-keyframes webkit-inspector-fadeout{from{background-color:#c5c8c6} to{background-color:#1d1f21}}#-webkit-web-inspector{background-color:#1d1f21}#-webkit-web-inspector .monospace,#-webkit-web-inspector .source-code{font-family:'DroidSansMono',Menlo,monospace !important} | |
#-webkit-web-inspector ::selection{background:rgba(197,200,198,0.25) !important;opacity:1} | |
#-webkit-web-inspector #toolbar{background-image:-webkit-linear-gradient(#444, #333) !important;border-bottom:1px solid #444 !important;border-top:1px solid #000 !important} | |
#-webkit-web-inspector #toolbar .toolbar-label{color:#c5c8c6 !important} | |
#-webkit-web-inspector #toolbar .toggled-on .toolbar-label{color:#f9faf9 !important} | |
#-webkit-web-inspector #toolbar .toolbar-item.toggleable.toggled-on{background-image:-webkit-linear-gradient(#333, #444) !important} | |
#-webkit-web-inspector #search-results-matches{color:#f9faf9 !important;text-shadow:none !i |