Update vendors to replace CRLF with LF.

Former-commit-id: 65f8982b6cfe965808ef97acba49c4d1cef6cd18
This commit is contained in:
John-David Dalton
2012-11-16 22:09:41 -08:00
parent 1d121a97a7
commit f2f980928b
8 changed files with 6470 additions and 6470 deletions

View File

@@ -1,331 +1,331 @@
/* See license.txt for terms of usage */ /* See license.txt for terms of usage */
.panelNode-script { .panelNode-script {
overflow: hidden; overflow: hidden;
font-family: monospace; font-family: monospace;
} }
/************************************************************************************************/ /************************************************************************************************/
.scriptTooltip { .scriptTooltip {
position: fixed; position: fixed;
z-index: 2147483647; z-index: 2147483647;
padding: 2px 3px; padding: 2px 3px;
border: 1px solid #CBE087; border: 1px solid #CBE087;
background: LightYellow; background: LightYellow;
font-family: monospace; font-family: monospace;
color: #000000; color: #000000;
} }
/************************************************************************************************/ /************************************************************************************************/
.sourceBox { .sourceBox {
/* TODO: xxxpedro problem with sourceBox and scrolling elements */ /* TODO: xxxpedro problem with sourceBox and scrolling elements */
/*overflow: scroll; /* see issue 1479 */ /*overflow: scroll; /* see issue 1479 */
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.sourceRow { .sourceRow {
white-space: nowrap; white-space: nowrap;
-moz-user-select: text; -moz-user-select: text;
} }
.sourceRow.hovered { .sourceRow.hovered {
background-color: #EEEEEE; background-color: #EEEEEE;
} }
/************************************************************************************************/ /************************************************************************************************/
.sourceLine { .sourceLine {
-moz-user-select: none; -moz-user-select: none;
margin-right: 10px; margin-right: 10px;
border-right: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC;
padding: 0px 4px 0 20px; padding: 0px 4px 0 20px;
background: #EEEEEE no-repeat 2px 0px; background: #EEEEEE no-repeat 2px 0px;
color: #888888; color: #888888;
white-space: pre; white-space: pre;
font-family: monospace; /* see issue 2953 */ font-family: monospace; /* see issue 2953 */
} }
.noteInToolTip { /* below sourceLine, so it overrides it */ .noteInToolTip { /* below sourceLine, so it overrides it */
background-color: #FFD472; background-color: #FFD472;
} }
.useA11y .sourceBox .sourceViewport:focus .sourceLine { .useA11y .sourceBox .sourceViewport:focus .sourceLine {
background-color: #FFFFC0; background-color: #FFFFC0;
color: navy; color: navy;
border-right: 1px solid black; border-right: 1px solid black;
} }
.useA11y .sourceBox .sourceViewport:focus { .useA11y .sourceBox .sourceViewport:focus {
outline: none; outline: none;
} }
.a11y1emSize { .a11y1emSize {
width: 1em; width: 1em;
height: 1em; height: 1em;
position: absolute; position: absolute;
} }
.useA11y .panelStatusLabel:focus { .useA11y .panelStatusLabel:focus {
outline-offset: -2px !important; outline-offset: -2px !important;
} }
.sourceBox > .sourceRow > .sourceLine { .sourceBox > .sourceRow > .sourceLine {
cursor: pointer; cursor: pointer;
} }
.sourceLine:hover { .sourceLine:hover {
text-decoration: none; text-decoration: none;
} }
.sourceRowText { .sourceRowText {
white-space: pre; white-space: pre;
} }
.sourceRow[exe_line="true"] { .sourceRow[exe_line="true"] {
outline: 1px solid #D9D9B6; outline: 1px solid #D9D9B6;
margin-right: 1px; margin-right: 1px;
background-color: lightgoldenrodyellow; background-color: lightgoldenrodyellow;
} }
.sourceRow[executable="true"] > .sourceLine { .sourceRow[executable="true"] > .sourceLine {
content: "-"; content: "-";
color: #4AA02C; /* Spring Green */ color: #4AA02C; /* Spring Green */
font-weight: bold; font-weight: bold;
} }
.sourceRow[exe_line="true"] > .sourceLine { .sourceRow[exe_line="true"] > .sourceLine {
background-image: url(chrome://firebug/skin/exe.png); background-image: url(chrome://firebug/skin/exe.png);
color: #000000; color: #000000;
} }
.sourceRow[breakpoint="true"] > .sourceLine { .sourceRow[breakpoint="true"] > .sourceLine {
background-image: url(chrome://firebug/skin/breakpoint.png); background-image: url(chrome://firebug/skin/breakpoint.png);
} }
.sourceRow[breakpoint="true"][condition="true"] > .sourceLine { .sourceRow[breakpoint="true"][condition="true"] > .sourceLine {
background-image: url(chrome://firebug/skin/breakpointCondition.png); background-image: url(chrome://firebug/skin/breakpointCondition.png);
} }
.sourceRow[breakpoint="true"][disabledBreakpoint="true"] > .sourceLine { .sourceRow[breakpoint="true"][disabledBreakpoint="true"] > .sourceLine {
background-image: url(chrome://firebug/skin/breakpointDisabled.png); background-image: url(chrome://firebug/skin/breakpointDisabled.png);
} }
.sourceRow[breakpoint="true"][exe_line="true"] > .sourceLine { .sourceRow[breakpoint="true"][exe_line="true"] > .sourceLine {
background-image: url(chrome://firebug/skin/breakpointExe.png); background-image: url(chrome://firebug/skin/breakpointExe.png);
} }
.sourceRow[breakpoint="true"][exe_line="true"][disabledBreakpoint="true"] > .sourceLine { .sourceRow[breakpoint="true"][exe_line="true"][disabledBreakpoint="true"] > .sourceLine {
background-image: url(chrome://firebug/skin/breakpointDisabledExe.png); background-image: url(chrome://firebug/skin/breakpointDisabledExe.png);
} }
.sourceLine.editing { .sourceLine.editing {
background-image: url(chrome://firebug/skin/breakpoint.png); background-image: url(chrome://firebug/skin/breakpoint.png);
} }
/************************************************************************************************/ /************************************************************************************************/
.conditionEditor { .conditionEditor {
z-index: 2147483647; z-index: 2147483647;
position: absolute; position: absolute;
margin-top: 0; margin-top: 0;
left: 2px; left: 2px;
width: 90%; width: 90%;
} }
.conditionEditorInner { .conditionEditorInner {
position: relative; position: relative;
top: -26px; top: -26px;
height: 0; height: 0;
} }
.conditionCaption { .conditionCaption {
margin-bottom: 2px; margin-bottom: 2px;
font-family: Lucida Grande, sans-serif; font-family: Lucida Grande, sans-serif;
font-weight: bold; font-weight: bold;
font-size: 11px; font-size: 11px;
color: #226679; color: #226679;
} }
.conditionInput { .conditionInput {
width: 100%; width: 100%;
border: 1px solid #0096C0; border: 1px solid #0096C0;
font-family: monospace; font-family: monospace;
font-size: inherit; font-size: inherit;
} }
.conditionEditorInner1 { .conditionEditorInner1 {
padding-left: 37px; padding-left: 37px;
background: url(condBorders.png) repeat-y; background: url(condBorders.png) repeat-y;
} }
.conditionEditorInner2 { .conditionEditorInner2 {
padding-right: 25px; padding-right: 25px;
background: url(condBorders.png) repeat-y 100% 0; background: url(condBorders.png) repeat-y 100% 0;
} }
.conditionEditorTop1 { .conditionEditorTop1 {
background: url(condCorners.png) no-repeat 100% 0; background: url(condCorners.png) no-repeat 100% 0;
margin-left: 37px; margin-left: 37px;
height: 35px; height: 35px;
} }
.conditionEditorTop2 { .conditionEditorTop2 {
position: relative; position: relative;
left: -37px; left: -37px;
width: 37px; width: 37px;
height: 35px; height: 35px;
background: url(condCorners.png) no-repeat; background: url(condCorners.png) no-repeat;
} }
.conditionEditorBottom1 { .conditionEditorBottom1 {
background: url(condCorners.png) no-repeat 100% 100%; background: url(condCorners.png) no-repeat 100% 100%;
margin-left: 37px; margin-left: 37px;
height: 33px; height: 33px;
} }
.conditionEditorBottom2 { .conditionEditorBottom2 {
position: relative; left: -37px; position: relative; left: -37px;
width: 37px; width: 37px;
height: 33px; height: 33px;
background: url(condCorners.png) no-repeat 0 100%; background: url(condCorners.png) no-repeat 0 100%;
} }
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.upsideDown { .upsideDown {
margin-top: 2px; margin-top: 2px;
} }
.upsideDown .conditionEditorInner { .upsideDown .conditionEditorInner {
top: -8px; top: -8px;
} }
.upsideDown .conditionEditorInner1 { .upsideDown .conditionEditorInner1 {
padding-left: 33px; padding-left: 33px;
background: url(condBordersUps.png) repeat-y; background: url(condBordersUps.png) repeat-y;
} }
.upsideDown .conditionEditorInner2 { .upsideDown .conditionEditorInner2 {
padding-right: 25px; padding-right: 25px;
background: url(condBordersUps.png) repeat-y 100% 0; background: url(condBordersUps.png) repeat-y 100% 0;
} }
.upsideDown .conditionEditorTop1 { .upsideDown .conditionEditorTop1 {
background: url(condCornersUps.png) no-repeat 100% 0; background: url(condCornersUps.png) no-repeat 100% 0;
margin-left: 33px; margin-left: 33px;
height: 25px; height: 25px;
} }
.upsideDown .conditionEditorTop2 { .upsideDown .conditionEditorTop2 {
position: relative; position: relative;
left: -33px; left: -33px;
width: 33px; width: 33px;
height: 25px; height: 25px;
background: url(condCornersUps.png) no-repeat; background: url(condCornersUps.png) no-repeat;
} }
.upsideDown .conditionEditorBottom1 { .upsideDown .conditionEditorBottom1 {
background: url(condCornersUps.png) no-repeat 100% 100%; background: url(condCornersUps.png) no-repeat 100% 100%;
margin-left: 33px; margin-left: 33px;
height: 43px; height: 43px;
} }
.upsideDown .conditionEditorBottom2 { .upsideDown .conditionEditorBottom2 {
position: relative; position: relative;
left: -33px; left: -33px;
width: 33px; width: 33px;
height: 43px; height: 43px;
background: url(condCornersUps.png) no-repeat 0 100%; background: url(condCornersUps.png) no-repeat 0 100%;
} }
/************************************************************************************************/ /************************************************************************************************/
.breakpointsGroupListBox { .breakpointsGroupListBox {
overflow: hidden; overflow: hidden;
} }
.breakpointBlockHead { .breakpointBlockHead {
position: relative; position: relative;
padding-top: 4px; padding-top: 4px;
} }
.breakpointBlockHead > .checkbox { .breakpointBlockHead > .checkbox {
margin-right: 4px; margin-right: 4px;
} }
.breakpointBlockHead > .objectLink-sourceLink { .breakpointBlockHead > .objectLink-sourceLink {
top: 4px; top: 4px;
right: 20px; right: 20px;
background-color: #FFFFFF; /* issue 3308 */ background-color: #FFFFFF; /* issue 3308 */
} }
.breakpointBlockHead > .closeButton { .breakpointBlockHead > .closeButton {
position: absolute; position: absolute;
top: 2px; top: 2px;
right: 2px; right: 2px;
} }
.breakpointCheckbox { .breakpointCheckbox {
margin-top: 0; margin-top: 0;
vertical-align: top; vertical-align: top;
} }
.breakpointName { .breakpointName {
margin-left: 4px; margin-left: 4px;
font-weight: bold; font-weight: bold;
} }
.breakpointRow[aria-checked="false"] > .breakpointBlockHead > *, .breakpointRow[aria-checked="false"] > .breakpointBlockHead > *,
.breakpointRow[aria-checked="false"] > .breakpointCode { .breakpointRow[aria-checked="false"] > .breakpointCode {
opacity: 0.5; opacity: 0.5;
} }
.breakpointRow[aria-checked="false"] .breakpointCheckbox, .breakpointRow[aria-checked="false"] .breakpointCheckbox,
.breakpointRow[aria-checked="false"] .objectLink-sourceLink, .breakpointRow[aria-checked="false"] .objectLink-sourceLink,
.breakpointRow[aria-checked="false"] .closeButton, .breakpointRow[aria-checked="false"] .closeButton,
.breakpointRow[aria-checked="false"] .breakpointMutationType { .breakpointRow[aria-checked="false"] .breakpointMutationType {
opacity: 1.0 !important; opacity: 1.0 !important;
} }
.breakpointCode { .breakpointCode {
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;
padding-left: 24px; padding-left: 24px;
padding-bottom: 2px; padding-bottom: 2px;
border-bottom: 1px solid #D7D7D7; border-bottom: 1px solid #D7D7D7;
font-family: monospace; font-family: monospace;
color: DarkGreen; color: DarkGreen;
} }
.breakpointCondition { .breakpointCondition {
white-space: nowrap; white-space: nowrap;
padding-left: 24px; padding-left: 24px;
padding-bottom: 2px; padding-bottom: 2px;
border-bottom: 1px solid #D7D7D7; border-bottom: 1px solid #D7D7D7;
font-family: monospace; font-family: monospace;
color: Gray; color: Gray;
} }
.breakpointBlock-breakpoints > .groupHeader { .breakpointBlock-breakpoints > .groupHeader {
display: none; display: none;
} }
.breakpointBlock-monitors > .breakpointCode { .breakpointBlock-monitors > .breakpointCode {
padding: 0; padding: 0;
} }
.breakpointBlock-errorBreakpoints .breakpointCheckbox, .breakpointBlock-errorBreakpoints .breakpointCheckbox,
.breakpointBlock-monitors .breakpointCheckbox { .breakpointBlock-monitors .breakpointCheckbox {
display: none; display: none;
} }
.breakpointHeader { .breakpointHeader {
margin: 0 !important; margin: 0 !important;
border-top: none !important; border-top: none !important;
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1,20 +1,20 @@
/************************************************************************************************/ /************************************************************************************************/
#fbToolbarSearch { #fbToolbarSearch {
background-image: url(search.gif) !important; background-image: url(search.gif) !important;
} }
/************************************************************************************************/ /************************************************************************************************/
.fbErrors { .fbErrors {
background-image: url(errorIcon.gif) !important; background-image: url(errorIcon.gif) !important;
} }
/************************************************************************************************/ /************************************************************************************************/
.logRow-info { .logRow-info {
background-image: url(infoIcon.gif) !important; background-image: url(infoIcon.gif) !important;
} }
.logRow-warning { .logRow-warning {
background-image: url(warningIcon.gif) !important; background-image: url(warningIcon.gif) !important;
} }
.logRow-error { .logRow-error {
background-image: url(errorIcon.gif) !important; background-image: url(errorIcon.gif) !important;
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1,215 +1,215 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/DTD/strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/DTD/strict.dtd">
<html> <html>
<head> <head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Firebug Lite</title> <title>Firebug Lite</title>
<!-- An empty script to avoid FOUC when loading the stylesheet --> <!-- An empty script to avoid FOUC when loading the stylesheet -->
<script type="text/javascript"></script> <script type="text/javascript"></script>
<style type="text/css" media="screen">@import "firebug.css";</style> <style type="text/css" media="screen">@import "firebug.css";</style>
<style>html,body{margin:0;padding:0;overflow:hidden;}</style> <style>html,body{margin:0;padding:0;overflow:hidden;}</style>
</head> </head>
<body class="fbBody"> <body class="fbBody">
<table id="fbChrome" cellpadding="0" cellspacing="0" border="0"> <table id="fbChrome" cellpadding="0" cellspacing="0" border="0">
<tbody> <tbody>
<tr> <tr>
<!-- Interface - Top Area --> <!-- Interface - Top Area -->
<td id="fbTop" colspan="2"> <td id="fbTop" colspan="2">
<!-- <!--
<div> <div>
--><!-- <span id="fbToolbarErrors" class="fbErrors">2 errors</span> --><!-- --><!-- <span id="fbToolbarErrors" class="fbErrors">2 errors</span> --><!--
<input type="text" id="fbToolbarSearch" /> <input type="text" id="fbToolbarSearch" />
</div> </div>
--> -->
<!-- Window Buttons --> <!-- Window Buttons -->
<div id="fbWindowButtons"> <div id="fbWindowButtons">
<a id="fbWindow_btDeactivate" class="fbSmallButton fbHover" title="Deactivate Firebug for this web page">&nbsp;</a> <a id="fbWindow_btDeactivate" class="fbSmallButton fbHover" title="Deactivate Firebug for this web page">&nbsp;</a>
<a id="fbWindow_btDetach" class="fbSmallButton fbHover" title="Open Firebug in popup window">&nbsp;</a> <a id="fbWindow_btDetach" class="fbSmallButton fbHover" title="Open Firebug in popup window">&nbsp;</a>
<a id="fbWindow_btClose" class="fbSmallButton fbHover" title="Minimize Firebug">&nbsp;</a> <a id="fbWindow_btClose" class="fbSmallButton fbHover" title="Minimize Firebug">&nbsp;</a>
</div> </div>
<!-- Toolbar buttons and Status Bar --> <!-- Toolbar buttons and Status Bar -->
<div id="fbToolbar"> <div id="fbToolbar">
<div id="fbToolbarContent"> <div id="fbToolbarContent">
<!-- Firebug Button --> <!-- Firebug Button -->
<span id="fbToolbarIcon"> <span id="fbToolbarIcon">
<a id="fbFirebugButton" class="fbIconButton" class="fbHover" target="_blank">&nbsp;</a> <a id="fbFirebugButton" class="fbIconButton" class="fbHover" target="_blank">&nbsp;</a>
</span> </span>
<!-- <!--
<span id="fbLeftToolbarErrors" class="fbErrors">2 errors</span> <span id="fbLeftToolbarErrors" class="fbErrors">2 errors</span>
--> -->
<!-- Toolbar Buttons --> <!-- Toolbar Buttons -->
<span id="fbToolbarButtons"> <span id="fbToolbarButtons">
<!-- Fixed Toolbar Buttons --> <!-- Fixed Toolbar Buttons -->
<span id="fbFixedButtons"> <span id="fbFixedButtons">
<a id="fbChrome_btInspect" class="fbButton fbHover" title="Click an element in the page to inspect">Inspect</a> <a id="fbChrome_btInspect" class="fbButton fbHover" title="Click an element in the page to inspect">Inspect</a>
</span> </span>
<!-- Console Panel Toolbar Buttons --> <!-- Console Panel Toolbar Buttons -->
<span id="fbConsoleButtons" class="fbToolbarButtons"> <span id="fbConsoleButtons" class="fbToolbarButtons">
<a id="fbConsole_btClear" class="fbButton fbHover" title="Clear the console">Clear</a> <a id="fbConsole_btClear" class="fbButton fbHover" title="Clear the console">Clear</a>
</span> </span>
<!-- HTML Panel Toolbar Buttons --> <!-- HTML Panel Toolbar Buttons -->
<!-- <!--
<span id="fbHTMLButtons" class="fbToolbarButtons"> <span id="fbHTMLButtons" class="fbToolbarButtons">
<a id="fbHTML_btEdit" class="fbHover" title="Edit this HTML">Edit</a> <a id="fbHTML_btEdit" class="fbHover" title="Edit this HTML">Edit</a>
</span> </span>
--> -->
</span> </span>
<!-- Status Bar --> <!-- Status Bar -->
<span id="fbStatusBarBox"> <span id="fbStatusBarBox">
<span class="fbToolbarSeparator"></span> <span class="fbToolbarSeparator"></span>
<!-- HTML Panel Status Bar --> <!-- HTML Panel Status Bar -->
<!-- <!--
<span id="fbHTMLStatusBar" class="fbStatusBar fbToolbarButtons"> <span id="fbHTMLStatusBar" class="fbStatusBar fbToolbarButtons">
</span> </span>
--> -->
</span> </span>
</div> </div>
</div> </div>
<!-- PanelBars --> <!-- PanelBars -->
<div id="fbPanelBarBox"> <div id="fbPanelBarBox">
<!-- Main PanelBar --> <!-- Main PanelBar -->
<div id="fbPanelBar1" class="fbPanelBar"> <div id="fbPanelBar1" class="fbPanelBar">
<a id="fbConsoleTab" class="fbTab fbHover"> <a id="fbConsoleTab" class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">Console</span> <span class="fbTabText">Console</span>
<span class="fbTabMenuTarget"></span> <span class="fbTabMenuTarget"></span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
<a id="fbHTMLTab" class="fbTab fbHover"> <a id="fbHTMLTab" class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">HTML</span> <span class="fbTabText">HTML</span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
<a class="fbTab fbHover"> <a class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">CSS</span> <span class="fbTabText">CSS</span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
<a class="fbTab fbHover"> <a class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">Script</span> <span class="fbTabText">Script</span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
<a class="fbTab fbHover"> <a class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">DOM</span> <span class="fbTabText">DOM</span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
</div> </div>
<!-- Side PanelBars --> <!-- Side PanelBars -->
<div id="fbPanelBar2Box" class="hide"> <div id="fbPanelBar2Box" class="hide">
<div id="fbPanelBar2" class="fbPanelBar"> <div id="fbPanelBar2" class="fbPanelBar">
<!-- <!--
<a class="fbTab fbHover"> <a class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">Style</span> <span class="fbTabText">Style</span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
<a class="fbTab fbHover"> <a class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">Layout</span> <span class="fbTabText">Layout</span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
<a class="fbTab fbHover"> <a class="fbTab fbHover">
<span class="fbTabL"></span> <span class="fbTabL"></span>
<span class="fbTabText">DOM</span> <span class="fbTabText">DOM</span>
<span class="fbTabR"></span> <span class="fbTabR"></span>
</a> </a>
--> -->
</div> </div>
</div> </div>
</div> </div>
<!-- Horizontal Splitter --> <!-- Horizontal Splitter -->
<div id="fbHSplitter">&nbsp;</div> <div id="fbHSplitter">&nbsp;</div>
</td> </td>
</tr> </tr>
<!-- Interface - Main Area --> <!-- Interface - Main Area -->
<tr id="fbContent"> <tr id="fbContent">
<!-- Panels --> <!-- Panels -->
<td id="fbPanelBox1"> <td id="fbPanelBox1">
<div id="fbPanel1" class="fbFitHeight"> <div id="fbPanel1" class="fbFitHeight">
<div id="fbConsole" class="fbPanel"></div> <div id="fbConsole" class="fbPanel"></div>
<div id="fbHTML" class="fbPanel"></div> <div id="fbHTML" class="fbPanel"></div>
</div> </div>
</td> </td>
<!-- Side Panel Box --> <!-- Side Panel Box -->
<td id="fbPanelBox2" class="hide"> <td id="fbPanelBox2" class="hide">
<!-- VerticalSplitter --> <!-- VerticalSplitter -->
<div id="fbVSplitter" class="fbVSplitter">&nbsp;</div> <div id="fbVSplitter" class="fbVSplitter">&nbsp;</div>
<!-- Side Panels --> <!-- Side Panels -->
<div id="fbPanel2" class="fbFitHeight"> <div id="fbPanel2" class="fbFitHeight">
<!-- HTML Side Panels --> <!-- HTML Side Panels -->
<div id="fbHTML_Style" class="fbPanel"></div> <div id="fbHTML_Style" class="fbPanel"></div>
<div id="fbHTML_Layout" class="fbPanel"></div> <div id="fbHTML_Layout" class="fbPanel"></div>
<div id="fbHTML_DOM" class="fbPanel"></div> <div id="fbHTML_DOM" class="fbPanel"></div>
</div> </div>
<!-- Large Command Line --> <!-- Large Command Line -->
<textarea id="fbLargeCommandLine" class="fbFitHeight"></textarea> <textarea id="fbLargeCommandLine" class="fbFitHeight"></textarea>
<!-- Large Command Line Buttons --> <!-- Large Command Line Buttons -->
<div id="fbLargeCommandButtons"> <div id="fbLargeCommandButtons">
<a id="fbCommand_btRun" class="fbButton fbHover">Run</a> <a id="fbCommand_btRun" class="fbButton fbHover">Run</a>
<a id="fbCommand_btClear" class="fbButton fbHover">Clear</a> <a id="fbCommand_btClear" class="fbButton fbHover">Clear</a>
<a id="fbSmallCommandLineIcon" class="fbSmallButton fbHover"></a> <a id="fbSmallCommandLineIcon" class="fbSmallButton fbHover"></a>
</div> </div>
</td> </td>
</tr> </tr>
<!-- Interface - Bottom Area --> <!-- Interface - Bottom Area -->
<tr id="fbBottom" class="hide"> <tr id="fbBottom" class="hide">
<!-- Command Line --> <!-- Command Line -->
<td id="fbCommand" colspan="2"> <td id="fbCommand" colspan="2">
<div id="fbCommandBox"> <div id="fbCommandBox">
<div id="fbCommandIcon">&gt;&gt;&gt;</div> <div id="fbCommandIcon">&gt;&gt;&gt;</div>
<input id="fbCommandLine" name="fbCommandLine" type="text" /> <input id="fbCommandLine" name="fbCommandLine" type="text" />
<a id="fbLargeCommandLineIcon" class="fbSmallButton fbHover"></a> <a id="fbLargeCommandLineIcon" class="fbSmallButton fbHover"></a>
</div> </div>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<span id="fbMiniChrome"> <span id="fbMiniChrome">
<span id="fbMiniContent"> <span id="fbMiniContent">
<span id="fbMiniIcon" title="Open Firebug Lite"></span> <span id="fbMiniIcon" title="Open Firebug Lite"></span>
<span id="fbMiniErrors" class="fbErrors"><!-- 2 errors --></span> <span id="fbMiniErrors" class="fbErrors"><!-- 2 errors --></span>
</span> </span>
</span> </span>
<!-- <!--
<div id="fbErrorPopup"> <div id="fbErrorPopup">
<div id="fbErrorPopupContent"> <div id="fbErrorPopupContent">
<div id="fbErrorIndicator" class="fbErrors">2 errors</div> <div id="fbErrorIndicator" class="fbErrors">2 errors</div>
</div> </div>
</div> </div>
--> -->
</body> </body>
</html> </html>

View File

@@ -1,272 +1,272 @@
/* See license.txt for terms of usage */ /* See license.txt for terms of usage */
.panelNode-html { .panelNode-html {
-moz-box-sizing: padding-box; -moz-box-sizing: padding-box;
padding: 4px 0 0 2px; padding: 4px 0 0 2px;
} }
.nodeBox { .nodeBox {
position: relative; position: relative;
font-family: Monaco, monospace; font-family: Monaco, monospace;
padding-left: 13px; padding-left: 13px;
-moz-user-select: -moz-none; -moz-user-select: -moz-none;
} }
.nodeBox.search-selection { .nodeBox.search-selection {
-moz-user-select: text; -moz-user-select: text;
} }
.twisty { .twisty {
position: absolute; position: absolute;
left: 0px; left: 0px;
top: 0px; top: 0px;
width: 14px; width: 14px;
height: 14px; height: 14px;
} }
.nodeChildBox { .nodeChildBox {
margin-left: 12px; margin-left: 12px;
display: none; display: none;
} }
.nodeLabel, .nodeLabel,
.nodeCloseLabel { .nodeCloseLabel {
margin: -2px 2px 0 2px; margin: -2px 2px 0 2px;
border: 2px solid transparent; border: 2px solid transparent;
-moz-border-radius: 3px; -moz-border-radius: 3px;
padding: 0 2px; padding: 0 2px;
color: #000088; color: #000088;
} }
.nodeCloseLabel { .nodeCloseLabel {
display: none; display: none;
} }
.nodeTag { .nodeTag {
cursor: pointer; cursor: pointer;
color: blue; color: blue;
} }
.nodeValue { .nodeValue {
color: #FF0000; color: #FF0000;
font-weight: normal; font-weight: normal;
} }
.nodeText, .nodeText,
.nodeComment { .nodeComment {
margin: 0 2px; margin: 0 2px;
vertical-align: top; vertical-align: top;
} }
.nodeText { .nodeText {
color: #333333; color: #333333;
} }
.nodeWhiteSpace { .nodeWhiteSpace {
border: 1px solid LightGray; border: 1px solid LightGray;
white-space: pre; /* otherwise the border will be collapsed around zero pixels */ white-space: pre; /* otherwise the border will be collapsed around zero pixels */
margin-left: 1px; margin-left: 1px;
color: gray; color: gray;
} }
.nodeWhiteSpace_Space { .nodeWhiteSpace_Space {
border: 1px solid #ddd; border: 1px solid #ddd;
} }
.nodeTextEntity { .nodeTextEntity {
border: 1px solid gray; border: 1px solid gray;
white-space: pre; /* otherwise the border will be collapsed around zero pixels */ white-space: pre; /* otherwise the border will be collapsed around zero pixels */
margin-left: 1px; margin-left: 1px;
} }
.nodeComment { .nodeComment {
color: DarkGreen; color: DarkGreen;
} }
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.nodeBox.highlightOpen > .nodeLabel { .nodeBox.highlightOpen > .nodeLabel {
background-color: #EEEEEE; background-color: #EEEEEE;
} }
.nodeBox.highlightOpen > .nodeCloseLabel, .nodeBox.highlightOpen > .nodeCloseLabel,
.nodeBox.highlightOpen > .nodeChildBox, .nodeBox.highlightOpen > .nodeChildBox,
.nodeBox.open > .nodeCloseLabel, .nodeBox.open > .nodeCloseLabel,
.nodeBox.open > .nodeChildBox { .nodeBox.open > .nodeChildBox {
display: block; display: block;
} }
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.nodeBox.selected > .nodeLabel > .nodeLabelBox, .nodeBox.selected > .nodeLabel > .nodeLabelBox,
.nodeBox.selected > .nodeLabel { .nodeBox.selected > .nodeLabel {
border-color: Highlight; border-color: Highlight;
background-color: Highlight; background-color: Highlight;
color: HighlightText !important; color: HighlightText !important;
} }
.nodeBox.selected > .nodeLabel > .nodeLabelBox, .nodeBox.selected > .nodeLabel > .nodeLabelBox,
.nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeTag, .nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeTag,
.nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue, .nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue,
.nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeText { .nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeText {
color: inherit !important; color: inherit !important;
} }
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.nodeBox.highlighted > .nodeLabel { .nodeBox.highlighted > .nodeLabel {
border-color: Highlight !important; border-color: Highlight !important;
background-color: cyan !important; background-color: cyan !important;
color: #000000 !important; color: #000000 !important;
} }
.nodeBox.highlighted > .nodeLabel > .nodeLabelBox, .nodeBox.highlighted > .nodeLabel > .nodeLabelBox,
.nodeBox.highlighted > .nodeLabel > .nodeLabelBox > .nodeTag, .nodeBox.highlighted > .nodeLabel > .nodeLabelBox > .nodeTag,
.nodeBox.highlighted > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue, .nodeBox.highlighted > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue,
.nodeBox.highlighted > .nodeLabel > .nodeLabelBox > .nodeText { .nodeBox.highlighted > .nodeLabel > .nodeLabelBox > .nodeText {
color: #000000 !important; color: #000000 !important;
} }
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.nodeBox.nodeHidden .nodeLabel > .nodeLabelBox, .nodeBox.nodeHidden .nodeLabel > .nodeLabelBox,
.nodeBox.nodeHidden .nodeCloseLabel, .nodeBox.nodeHidden .nodeCloseLabel,
.nodeBox.nodeHidden .nodeLabel > .nodeLabelBox > .nodeText, .nodeBox.nodeHidden .nodeLabel > .nodeLabelBox > .nodeText,
.nodeBox.nodeHidden .nodeText { .nodeBox.nodeHidden .nodeText {
color: #888888; color: #888888;
} }
.nodeBox.nodeHidden .nodeLabel > .nodeLabelBox > .nodeTag, .nodeBox.nodeHidden .nodeLabel > .nodeLabelBox > .nodeTag,
.nodeBox.nodeHidden .nodeCloseLabel > .nodeCloseLabelBox > .nodeTag { .nodeBox.nodeHidden .nodeCloseLabel > .nodeCloseLabelBox > .nodeTag {
color: #5F82D9; color: #5F82D9;
} }
.nodeBox.nodeHidden .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue { .nodeBox.nodeHidden .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue {
color: #D86060; color: #D86060;
} }
.nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox, .nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox,
.nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox > .nodeTag, .nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox > .nodeTag,
.nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue, .nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue,
.nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox > .nodeText { .nodeBox.nodeHidden.selected > .nodeLabel > .nodeLabelBox > .nodeText {
color: SkyBlue !important; color: SkyBlue !important;
} }
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.nodeBox.mutated > .nodeLabel, .nodeBox.mutated > .nodeLabel,
.nodeAttr.mutated, .nodeAttr.mutated,
.nodeValue.mutated, .nodeValue.mutated,
.nodeText.mutated, .nodeText.mutated,
.nodeBox.mutated > .nodeText { .nodeBox.mutated > .nodeText {
background-color: #EFFF79; background-color: #EFFF79;
color: #FF0000 !important; color: #FF0000 !important;
} }
.nodeBox.selected.mutated > .nodeLabel, .nodeBox.selected.mutated > .nodeLabel,
.nodeBox.selected.mutated > .nodeLabel > .nodeLabelBox, .nodeBox.selected.mutated > .nodeLabel > .nodeLabelBox,
.nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeAttr.mutated > .nodeValue, .nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeAttr.mutated > .nodeValue,
.nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue.mutated, .nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeAttr > .nodeValue.mutated,
.nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeText.mutated { .nodeBox.selected > .nodeLabel > .nodeLabelBox > .nodeText.mutated {
background-color: #EFFF79; background-color: #EFFF79;
border-color: #EFFF79; border-color: #EFFF79;
color: #FF0000 !important; color: #FF0000 !important;
} }
/************************************************************************************************/ /************************************************************************************************/
.logRow-dirxml { .logRow-dirxml {
padding-left: 0; padding-left: 0;
} }
.soloElement > .nodeBox { .soloElement > .nodeBox {
padding-left: 0; padding-left: 0;
} }
.useA11y .nodeLabel.focused { .useA11y .nodeLabel.focused {
outline: 2px solid #FF9933; outline: 2px solid #FF9933;
-moz-outline-radius: 3px; -moz-outline-radius: 3px;
outline-offset: -2px; outline-offset: -2px;
} }
.useA11y .nodeLabelBox:focus { .useA11y .nodeLabelBox:focus {
outline: none; outline: none;
} }
/************************************************************************************************/ /************************************************************************************************/
.breakpointCode .twisty { .breakpointCode .twisty {
display: none; display: none;
} }
.breakpointCode .nodeBox.containerNodeBox, .breakpointCode .nodeBox.containerNodeBox,
.breakpointCode .nodeLabel { .breakpointCode .nodeLabel {
padding-left: 0px; padding-left: 0px;
margin-left: 0px; margin-left: 0px;
font-family: Monaco, monospace !important; font-family: Monaco, monospace !important;
} }
.breakpointCode .nodeTag, .breakpointCode .nodeTag,
.breakpointCode .nodeAttr, .breakpointCode .nodeAttr,
.breakpointCode .nodeText, .breakpointCode .nodeText,
.breakpointCode .nodeValue, .breakpointCode .nodeValue,
.breakpointCode .nodeLabel { .breakpointCode .nodeLabel {
color: DarkGreen !important; color: DarkGreen !important;
} }
.breakpointMutationType { .breakpointMutationType {
position: absolute; position: absolute;
top: 4px; top: 4px;
right: 20px; right: 20px;
color: gray; color: gray;
} }
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/************************************************************************************************/ /************************************************************************************************/
/* Twisties */ /* Twisties */
.twisty, .twisty,
.logRow-errorMessage > .hasTwisty > .errorTitle, .logRow-errorMessage > .hasTwisty > .errorTitle,
.logRow-log > .objectBox-array.hasTwisty, .logRow-log > .objectBox-array.hasTwisty,
.logRow-spy .spyHead .spyTitle, .logRow-spy .spyHead .spyTitle,
.logGroup > .logRow, .logGroup > .logRow,
.memberRow.hasChildren > .memberLabelCell > .memberLabel, .memberRow.hasChildren > .memberLabelCell > .memberLabel,
.hasHeaders .netHrefLabel, .hasHeaders .netHrefLabel,
.netPageRow > .netCol > .netPageTitle { .netPageRow > .netCol > .netPageTitle {
background-image: url(twistyClosed.png); background-image: url(twistyClosed.png);
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 2px 2px; background-position: 2px 2px;
min-height: 12px; min-height: 12px;
} }
.logRow-errorMessage > .hasTwisty.opened > .errorTitle, .logRow-errorMessage > .hasTwisty.opened > .errorTitle,
.logRow-log > .objectBox-array.hasTwisty.opened, .logRow-log > .objectBox-array.hasTwisty.opened,
.logRow-spy.opened .spyHead .spyTitle, .logRow-spy.opened .spyHead .spyTitle,
.logGroup.opened > .logRow, .logGroup.opened > .logRow,
.memberRow.hasChildren.opened > .memberLabelCell > .memberLabel, .memberRow.hasChildren.opened > .memberLabelCell > .memberLabel,
.nodeBox.highlightOpen > .nodeLabel > .twisty, .nodeBox.highlightOpen > .nodeLabel > .twisty,
.nodeBox.open > .nodeLabel > .twisty, .nodeBox.open > .nodeLabel > .twisty,
.netRow.opened > .netCol > .netHrefLabel, .netRow.opened > .netCol > .netHrefLabel,
.netPageRow.opened > .netCol > .netPageTitle { .netPageRow.opened > .netCol > .netPageTitle {
background-image: url(twistyOpen.png); background-image: url(twistyOpen.png);
} }
.twisty { .twisty {
background-position: 4px 4px; background-position: 4px 4px;
} }

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg">
<rect fill="white" x="0" y="0" width="100%" height="100%" /> <rect fill="white" x="0" y="0" width="100%" height="100%" />
<rect fill="highlight" x="0" y="0" width="100%" height="100%" rx="2px"/> <rect fill="highlight" x="0" y="0" width="100%" height="100%" rx="2px"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 234 B

After

Width:  |  Height:  |  Size: 228 B

3328
vendor/jquery/jquery.js vendored

File diff suppressed because it is too large Load Diff