From 4c765db1f76dcd4482d96421c80f946fd2669e5b Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Sun, 20 Nov 2011 21:16:37 +0100 Subject: [PATCH] update LCARStrek for changes in browser winstripe for Firefox 9 with the exception of stop/go/reload button streamlining --- EarlyBlue/global/webConsole.css | 2 +- LCARStrek/browser/browser.css | 15 ++++++--- LCARStrek/browser/inspector.css | 48 +++++++++++++++++++++------ LCARStrek/browser/tabview/tabview.css | 2 ++ LCARStrek/global/webConsole.css | 2 +- 5 files changed, 51 insertions(+), 18 deletions(-) diff --git a/EarlyBlue/global/webConsole.css b/EarlyBlue/global/webConsole.css index 99c79a8c..6d4905ff 100644 --- a/EarlyBlue/global/webConsole.css +++ b/EarlyBlue/global/webConsole.css @@ -134,7 +134,7 @@ .hud-output-node, .jsterm-input-node, .jsterm-complete-node { - font: 12px Consolas, Lucida Console, monospace; + font: 12px monospace; } .hud-output-node { diff --git a/LCARStrek/browser/browser.css b/LCARStrek/browser/browser.css index 75f3430c..d545a150 100644 --- a/LCARStrek/browser/browser.css +++ b/LCARStrek/browser/browser.css @@ -1696,10 +1696,6 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action- list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); } -.tab-close-button:focus { - outline: none !important; -} - /* Tab scrollbox arrow, tabstrip new tab and all-tabs buttons */ @media all and (-moz-touch-enabled) { @@ -2340,7 +2336,16 @@ highlighter-veil-transparentbox { outline-offset: -1px; } -#highlighter-veil-transparentbox[locked] { +#highlighter-veil-container[locked] > #highlighter-veil-middlebox > #highlighter-veil-transparentbox { box-shadow: 0 0 0 1px black; outline-color: white; } + +/* + * need a "bumpy" background image for this! + */ +#inspector-horizontal-splitter { + background: none !important; + -moz-appearance: none; + cursor: n-resize; +} diff --git a/LCARStrek/browser/inspector.css b/LCARStrek/browser/inspector.css index 5e960930..284296bb 100644 --- a/LCARStrek/browser/inspector.css +++ b/LCARStrek/browser/inspector.css @@ -3,24 +3,24 @@ * * Copyright (c) 2007, Parakey Inc. * All rights reserved. - * + * * Redistribution and use of this software in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: - * + * * * Redistributions of source code must retain the above * copyright notice, this list of conditions and the * following disclaimer. - * + * * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the * following disclaimer in the documentation and/or other * materials provided with the distribution. - * + * * * Neither the name of Parakey Inc. nor the names of its * contributors may be used to endorse or promote products * derived from this software without specific prior * written permission of Parakey Inc. - * + * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR @@ -89,7 +89,7 @@ code { .objectLink-function, .objectBox-stackTrace, .objectLink-profile { - font-family: Menlo, Andale Mono, monospace; + font-family: monospace; } .objectLink-textNode { @@ -105,7 +105,7 @@ code { .selectorTag, .selectorId, .selectorClass { - font-family: Menlo, Andale Mono, monospace; + font-family: monospace; font-weight: normal; } @@ -134,7 +134,7 @@ code { } .selectorValue { - font-family: Menlo, Andale Mono, monospace; + font-family: monospace; font-style: italic; color: #555555; } @@ -146,7 +146,7 @@ code { .nodeBox { position: relative; - font-family: Menlo, Andale Mono, monospace; + font-family: monospace; padding-left: 13px; -moz-user-select: -moz-none; } @@ -203,8 +203,10 @@ code { .docType { position: absolute; + /* position DOCTYPE element above/outside the "nodeBox" that contains it */ + /* Note: to be fixed in Bug #688439 */ top: -16px; - font-family: Menlo, Andale Mono, monospace; + font-family: monospace; padding-left: 8px; color: #999; white-space: nowrap; @@ -212,7 +214,9 @@ code { } .htmlNodeBox { - top: 16px; + /* make room for DOCTYPE element to be rendered above/outside "nodeBox" */ + /* Note: to be fixed in Bug #688439 */ + margin-top: 16px; } .nodeWhiteSpace { @@ -350,3 +354,25 @@ code { background-image: url("chrome://global/skin/tree/twisty-open.png") !important; } +.editingAttributeValue { + background-color: #008484; +} + +#attribute-editor { + visibility: hidden; + position: absolute; + z-index: 5000; + background-color: #000000; + border: 1px solid #9C9CFF; +} + +#attribute-editor.editing { + visibility: visible; +} + +#attribute-editor-input { + border: none; + padding: 2px 5px; + font-family: monospace; + font-size: 11px; +} diff --git a/LCARStrek/browser/tabview/tabview.css b/LCARStrek/browser/tabview/tabview.css index 84a4f96a..b0d61aa1 100644 --- a/LCARStrek/browser/tabview/tabview.css +++ b/LCARStrek/browser/tabview/tabview.css @@ -593,6 +593,8 @@ html[dir=rtl] #otherresults { -moz-margin-end: 5px; position: relative; top: 2px; + width: 16px; + height: 16px; } .inlineMatch > span { diff --git a/LCARStrek/global/webConsole.css b/LCARStrek/global/webConsole.css index b3761386..0c2d6047 100644 --- a/LCARStrek/global/webConsole.css +++ b/LCARStrek/global/webConsole.css @@ -134,7 +134,7 @@ .hud-output-node, .jsterm-input-node, .jsterm-complete-node { - font: 12px Consolas, Lucida Console, monospace; + font: 12px monospace; } .hud-output-node { -- 2.35.3