Cleaned up code formatting in .js, .html, .vt, .css, .less files.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2185 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2011-08-04 20:37:14 +00:00
parent c9db107d7e
commit bad7266534
90 changed files with 10939 additions and 10920 deletions

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function init() { function init() {
Packages.com.google.refine.freebase.oauth.FreebaseProvider.register(); Packages.com.google.refine.freebase.oauth.FreebaseProvider.register();

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ExtendDataPreviewDialog(column, columnIndex, rowIndices, onDone) { function ExtendDataPreviewDialog(column, columnIndex, rowIndices, onDone) {
this._column = column; this._column = column;

View File

@ -19,7 +19,8 @@
<tr><td>Source ID (optional)</td> <tr><td>Source ID (optional)</td>
<td colspan="2"><input type="text" size="60" id="freebase-loading-source-id" bind="source_id" /></td> <td colspan="2"><input type="text" size="60" id="freebase-loading-source-id" bind="source_id" /></td>
</tr> </tr>
<tr><td colspan="3"> <tr>
<td colspan="3">
<p class="body-text">Note: Your data will only be loaded into <p class="body-text">Note: Your data will only be loaded into
<a href="http://www.sandbox-freebase.com/" target="_blank">Sandbox</a>. <a href="http://www.sandbox-freebase.com/" target="_blank">Sandbox</a>.
Sandbox is where everyone can experiment with Freebase technologies without disruption Sandbox is where everyone can experiment with Freebase technologies without disruption

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function FreebaseLoadingDialog() { function FreebaseLoadingDialog() {
this._createDialog(); this._createDialog();
@ -174,9 +174,10 @@ FreebaseLoadingDialog.prototype._load = function() {
var doLoad = function() { var doLoad = function() {
var dismissBusy = DialogSystem.showBusy(); var dismissBusy = DialogSystem.showBusy();
$.post("/command/freebase/upload-data", $.post(
"/command/freebase/upload-data",
{ {
project: theProject.id, "project" : theProject.id,
"qa" : qa, "qa" : qa,
"engine" : JSON.stringify(ui.browsingEngine.getJSON()), "engine" : JSON.stringify(ui.browsingEngine.getJSON()),
"source_name" : self._elmts.source_name.val(), "source_name" : self._elmts.source_name.val(),

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var SchemaAlignment = {}; var SchemaAlignment = {};

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
SchemaAlignmentDialog.UILink = function(dialog, link, table, options, parentUINode) { SchemaAlignmentDialog.UILink = function(dialog, link, table, options, parentUINode) {
this._dialog = dialog; this._dialog = dialog;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
SchemaAlignmentDialog.UINode = function(dialog, node, table, options) { SchemaAlignmentDialog.UINode = function(dialog, node, table, options) {
this._dialog = dialog; this._dialog = dialog;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var FreebaseExtension = { handlers: {} }; var FreebaseExtension = { handlers: {} };

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var Freebase = {}; var Freebase = {};

View File

@ -29,9 +29,9 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
if (typeof window.Sign == 'undefined') { if (typeof window.Sign == 'undefined') {
window.Sign = { window.Sign = {
window_position: function() { window_position: function() {
var position = {}; var position = {};
@ -149,5 +149,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
}); });
} }
}; };
} }

View File

@ -38,34 +38,34 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
padding: 5px; padding: 5px;
overflow: auto; overflow: auto;
height: 375px; height: 375px;
} }
.extend-data-preview-dialog .suggested-property { .extend-data-preview-dialog .suggested-property {
padding: 5px; padding: 5px;
} }
.extend-data-preview-dialog input.property-suggest { .extend-data-preview-dialog input.property-suggest {
display: block; display: block;
padding: 2%; padding: 2%;
width: 96%; width: 96%;
} }
.extend-data-preview-dialog .preview-container { .extend-data-preview-dialog .preview-container {
border: 1px solid #aaa; border: 1px solid #aaa;
overflow: auto; overflow: auto;
} }
.extend-data-preview-dialog .preview-container table { .extend-data-preview-dialog .preview-container table {
border-collapse: collapse; border-collapse: collapse;
} }
.extend-data-preview-dialog .preview-container td, .extend-data-preview-dialog .preview-container th { .extend-data-preview-dialog .preview-container td, .extend-data-preview-dialog .preview-container th {
padding: 3px 5px; padding: 3px 5px;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd; border-right: 1px solid #ddd;
} }
.extend-data-preview-dialog .preview-container th img { .extend-data-preview-dialog .preview-container th img {
vertical-align: top; vertical-align: top;
margin-left: 5px; margin-left: 5px;
} }

View File

@ -35,7 +35,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.freebase-loading-dialog-functional-tab-panel { .freebase-loading-dialog-functional-tab-panel {
height: 400px !important; height: 400px !important;
} }
.freebase-loading-tripleloader-data { .freebase-loading-tripleloader-data {
width: 99%; width: 99%;
overflow: scroll; overflow: scroll;
@ -43,35 +43,35 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
white-space: pre; white-space: pre;
padding: 0.3em 0.5em 0.5em 0.5em; padding: 0.3em 0.5em 0.5em 0.5em;
font-family: monospace; font-family: monospace;
} }
.freebase-loading-tripleloader-message { .freebase-loading-tripleloader-message {
height: 400px; height: 400px;
overflow: auto; overflow: auto;
border: 1px solid #aaa; border: 1px solid #aaa;
padding: 1em; padding: 1em;
} }
.freebase-loading-tripleloader-message h2 { .freebase-loading-tripleloader-message h2 {
font-size: 150%; font-size: 150%;
font-weight: normal; font-weight: normal;
} }
.freebase-loading-tripleloader-message h2 span { .freebase-loading-tripleloader-message h2 span {
font-size; 130%; font-size; 130%;
font-weight: bold; font-weight: bold;
} }
.freebase-loading-tripleloader-message h4 { .freebase-loading-tripleloader-message h4 {
font-size: 120%; font-size: 120%;
margin-top: 2em; margin-top: 2em;
font-weight: normal; font-weight: normal;
} }
.freebase-loading-tripleloader-message a { .freebase-loading-tripleloader-message a {
font-size: 120%; font-size: 120%;
font-weight: bold; font-weight: bold;
} }
.freebase-loading-authorization { .freebase-loading-authorization {
margin: 0em 2em; margin: 0em 2em;
@ -80,13 +80,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
background-color: #fff; background-color: #fff;
-moz-border-radius: 0.8em; -moz-border-radius: 0.8em;
-webkit-border-radius: 0.8em; -webkit-border-radius: 0.8em;
} }
.freebase-loading-tripleloader-info { .freebase-loading-tripleloader-info {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
.freebase-loading-tripleloader-info textarea { .freebase-loading-tripleloader-info textarea {
width: 99%; width: 99%;
height: 5em; height: 5em;
} }

View File

@ -39,42 +39,42 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
padding: 10px; padding: 10px;
margin-top: 3px; margin-top: 3px;
background: white; background: white;
} }
table.schema-alignment-table-layout { table.schema-alignment-table-layout {
border-collapse: collapse; border-collapse: collapse;
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
margin-bottom: 1em; margin-bottom: 1em;
} }
table.schema-alignment-table-layout .padded { table.schema-alignment-table-layout .padded {
padding: 3px 6px; padding: 3px 6px;
} }
div.schema-alignment-detail-container { div.schema-alignment-detail-container {
border-left: 3px solid #eee; border-left: 3px solid #eee;
} }
td.schema-alignment-node-main, td.schema-alignment-link-main { td.schema-alignment-node-main, td.schema-alignment-link-main {
white-space: pre; white-space: pre;
width: 300px; width: 300px;
} }
td.schema-alignment-node-toggle, td.schema-alignment-link-toggle { td.schema-alignment-node-toggle, td.schema-alignment-link-toggle {
white-space: pre; white-space: pre;
width: 1%; width: 1%;
} }
td.schema-alignment-node-toggle img, td.schema-alignment-link-toggle img { td.schema-alignment-node-toggle img, td.schema-alignment-link-toggle img {
cursor: pointer; cursor: pointer;
vertical-align: middle; vertical-align: middle;
padding: 2px; padding: 2px;
} }
td.schema-alignment-node-details, td.schema-alignment-link-details { td.schema-alignment-node-details, td.schema-alignment-link-details {
width: 90%; width: 90%;
} }
a.schema-alignment-node-tag { a.schema-alignment-node-tag {
padding: 3px 6px; padding: 3px 6px;
@ -82,23 +82,23 @@ a.schema-alignment-node-tag {
text-decoration: none; text-decoration: none;
color: black; color: black;
-moz-border-radius: 10px; -moz-border-radius: 10px;
} }
a.schema-alignment-node-tag:hover { a.schema-alignment-node-tag:hover {
background: #888; background: #888;
color: white; color: white;
} }
.schema-alignment-node-column { .schema-alignment-node-column {
font-weight: bold; font-weight: bold;
} }
a.schema-alignment-link-tag { a.schema-alignment-link-tag {
padding: 3px 6px; padding: 3px 6px;
text-decoration: none; text-decoration: none;
color: black; color: black;
} }
a.schema-alignment-link-tag:hover { a.schema-alignment-link-tag:hover {
color: #88f; color: #88f;
} }
div.schema-alignment-dialog-preview { div.schema-alignment-dialog-preview {
height: 400px; height: 400px;
@ -109,11 +109,11 @@ div.schema-alignment-dialog-preview {
white-space: pre; white-space: pre;
font-family: monospace; font-family: monospace;
font-size: 9pt; font-size: 9pt;
} }
.schema-alignment-status-indicator { .schema-alignment-status-indicator {
color: #red; color: #red;
} }
/*-------------------------------------------------- /*--------------------------------------------------
* Node dialog * Node dialog
@ -123,16 +123,16 @@ div.schema-alignment-dialog-preview {
.schema-align-node-dialog-node-type { .schema-align-node-dialog-node-type {
padding: 0.25em; padding: 0.25em;
background: #ddf; background: #ddf;
} }
.schema-align-node-dialog-node-type input { .schema-align-node-dialog-node-type input {
vertical-align: text-bottom; vertical-align: text-bottom;
} }
.schema-alignment-node-dialog-column-list { .schema-alignment-node-dialog-column-list {
height: 300px; height: 300px;
width: 200px; width: 200px;
overflow: auto; overflow: auto;
border: 1px solid #ddd; border: 1px solid #ddd;
} }
/*-------------------------------------------------- /*--------------------------------------------------
* Link dialog * Link dialog
@ -142,8 +142,8 @@ div.schema-alignment-dialog-preview {
.schema-alignment-link-menu-section { .schema-alignment-link-menu-section {
padding: 8px; padding: 8px;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
} }
.schema-alignment-link-menu-section-last { .schema-alignment-link-menu-section-last {
padding: 8px; padding: 8px;
} }

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var html = "text/html"; var html = "text/html";
var encoding = "UTF-8"; var encoding = "UTF-8";
@ -39,8 +39,8 @@ var version = "0.2";
* Function invoked to initialize the extension. * Function invoked to initialize the extension.
*/ */
function init() { function init() {
// Packages.java.lang.System.err.println("Initializing gData extension"); //Packages.java.lang.System.err.println("Initializing gData extension");
// Packages.java.lang.System.err.println(module.getMountPoint()); //Packages.java.lang.System.err.println(module.getMountPoint());
var RS = Packages.com.google.refine.RefineServlet; var RS = Packages.com.google.refine.RefineServlet;
RS.registerCommand(module, "authorize", Packages.com.google.refine.extension.gdata.AuthorizeCommand()); RS.registerCommand(module, "authorize", Packages.com.google.refine.extension.gdata.AuthorizeCommand());
@ -55,8 +55,8 @@ function init() {
IM.registerUrlRewriter(new Packages.com.google.refine.extension.gdata.GDataUrlRewriter()) IM.registerUrlRewriter(new Packages.com.google.refine.extension.gdata.GDataUrlRewriter())
IM.registerUrlRewriter(new Packages.com.google.refine.extension.gdata.FusionTablesUrlRewriter()) IM.registerUrlRewriter(new Packages.com.google.refine.extension.gdata.FusionTablesUrlRewriter())
// Packages.com.google.refine.exporters.ExporterRegistry.registerExporter( //Packages.com.google.refine.exporters.ExporterRegistry.registerExporter(
// "gdata-exporter", new Packages.com.google.refine.extension.gdata.GDataExporter()); //"gdata-exporter", new Packages.com.google.refine.extension.gdata.GDataExporter());
// Script files to inject into /project page // Script files to inject into /project page
var ClientSideResourceManager = Packages.com.google.refine.ClientSideResourceManager; var ClientSideResourceManager = Packages.com.google.refine.ClientSideResourceManager;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function init() { function init() {
var libPath = new Packages.java.io.File(module.getPath(), "MOD-INF/lib/jython/").getCanonicalPath(); var libPath = new Packages.java.io.File(module.getPath(), "MOD-INF/lib/jython/").getCanonicalPath();

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var html = "text/html"; var html = "text/html";
var encoding = "UTF-8"; var encoding = "UTF-8";

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var html = "text/html"; var html = "text/html";
var encoding = "UTF-8"; var encoding = "UTF-8";

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.CreateProjectUI = function(elmt) { Refine.CreateProjectUI = function(elmt) {
var self = this; var self = this;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.DefaultImportingController = function(createProjectUI) { Refine.DefaultImportingController = function(createProjectUI) {
this._createProjectUI = createProjectUI; this._createProjectUI = createProjectUI;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.DefaultImportingController.prototype._showFileSelectionPanel = function() { Refine.DefaultImportingController.prototype._showFileSelectionPanel = function() {
var self = this; var self = this;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.DefaultImportingController.prototype._showParsingPanel = function(hasFileSelection) { Refine.DefaultImportingController.prototype._showParsingPanel = function(hasFileSelection) {
var self = this; var self = this;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ThisComputerImportingSourceUI(controller) { function ThisComputerImportingSourceUI(controller) {
this._controller = controller; this._controller = controller;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.OpenProjectUI = function(elmt) { Refine.OpenProjectUI = function(elmt) {
var self = this; var self = this;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.ExcelParserUI = function(controller, jobID, job, format, config, Refine.ExcelParserUI = function(controller, jobID, job, format, config,
dataContainerElmt, progressContainerElmt, optionContainerElmt) { dataContainerElmt, progressContainerElmt, optionContainerElmt) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.FixedWidthParserUI = function(controller, jobID, job, format, config, Refine.FixedWidthParserUI = function(controller, jobID, job, format, config,
dataContainerElmt, progressContainerElmt, optionContainerElmt) { dataContainerElmt, progressContainerElmt, optionContainerElmt) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.JsonParserUI = function(controller, jobID, job, format, config, Refine.JsonParserUI = function(controller, jobID, job, format, config,
dataContainerElmt, progressContainerElmt, optionContainerElmt) { dataContainerElmt, progressContainerElmt, optionContainerElmt) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.LineBasedParserUI = function(controller, jobID, job, format, config, Refine.LineBasedParserUI = function(controller, jobID, job, format, config,
dataContainerElmt, progressContainerElmt, optionContainerElmt) { dataContainerElmt, progressContainerElmt, optionContainerElmt) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.PreviewTable = function(projectData, elmt) { Refine.PreviewTable = function(projectData, elmt) {
this._projectData = projectData; this._projectData = projectData;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.SeparatorBasedParserUI = function(controller, jobID, job, format, config, Refine.SeparatorBasedParserUI = function(controller, jobID, job, format, config,
dataContainerElmt, progressContainerElmt, optionContainerElmt) { dataContainerElmt, progressContainerElmt, optionContainerElmt) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Refine.XmlParserUI = function(controller, jobID, job, format, config, Refine.XmlParserUI = function(controller, jobID, job, format, config,
dataContainerElmt, progressContainerElmt, optionContainerElmt) { dataContainerElmt, progressContainerElmt, optionContainerElmt) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var preferenceUIs = []; var preferenceUIs = [];
@ -49,7 +49,12 @@ function populatePreferences(prefs) {
$('<h1>').text("Preferences").appendTo(body); $('<h1>').text("Preferences").appendTo(body);
var table = $('<table>').addClass("list-table").addClass("preferences").html('<tr><th>Key</th><th>Value</th><th></th></tr>').appendTo(body)[0]; var table = $('<table>')
.addClass("list-table")
.addClass("preferences")
.html('<tr><th>Key</th><th>Value</th><th></th></tr>')
.appendTo(body)[0];
for (var k in prefs) { for (var k in prefs) {
var tr = table.insertRow(table.rows.length); var tr = table.insertRow(table.rows.length);
preferenceUIs.push(new PreferenceUI(tr, k, prefs[k])); preferenceUIs.push(new PreferenceUI(tr, k, prefs[k]));

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var theProject; var theProject;
var ui = {}; var ui = {};

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function BrowsingEngine(div, facetConfigs) { function BrowsingEngine(div, facetConfigs) {
this._div = div; this._div = div;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ExporterManager(button) { function ExporterManager(button) {
this._button = button; this._button = button;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ExtensionBar(div) { function ExtensionBar(div) {
this._div = div; this._div = div;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function HistoryPanel(div, tabHeader) { function HistoryPanel(div, tabHeader) {
this._div = div; this._div = div;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ProcessPanel(div) { function ProcessPanel(div) {
this._div = div; this._div = div;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var Scripting = { var Scripting = {
}; };

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function SummaryBar(div) { function SummaryBar(div) {
this._div = div; this._div = div;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ReconFreebaseQueryPanel(column, service, container) { function ReconFreebaseQueryPanel(column, service, container) {
this._column = column; this._column = column;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ReconDialog(column, types) { function ReconDialog(column, types) {
this._column = column; this._column = column;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var ReconciliationManager = { var ReconciliationManager = {
customServices : [], // services registered by core and extensions customServices : [], // services registered by core and extensions

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function ReconStandardServicePanel(column, service, container) { function ReconStandardServicePanel(column, service, container) {
this._column = column; this._column = column;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
Ajax = {}; Ajax = {};

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
(function() { (function() {
/* /*

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
DialogSystem = { DialogSystem = {
_layers: [] _layers: []

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
var DOM = {}; var DOM = {};

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
MenuSystem = { MenuSystem = {
_layers: [], _layers: [],

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function cloneDeep(o) { function cloneDeep(o) {
if (o === undefined || o === null) { if (o === undefined || o === null) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
String.prototype.trim = function() { String.prototype.trim = function() {
return this.replace(/^\s+/, '').replace(/\s+$/, ''); return this.replace(/^\s+/, '').replace(/\s+$/, '');

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
URL = { URL = {
schemes: { // 1 means followed by ://, 0 means followed by just : schemes: { // 1 means followed by ://, 0 means followed by just :

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function DataTableCellUI(dataTableView, cell, rowIndex, cellIndex, td) { function DataTableCellUI(dataTableView, cell, rowIndex, cellIndex, td) {
this._dataTableView = dataTableView; this._dataTableView = dataTableView;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function DataTableColumnHeaderUI(dataTableView, column, columnIndex, td) { function DataTableColumnHeaderUI(dataTableView, column, columnIndex, td) {
this._dataTableView = dataTableView; this._dataTableView = dataTableView;
@ -49,7 +49,7 @@ DataTableColumnHeaderUI._extenders = [];
... ...
MenuSystem.appendTo(menu, path, newItems); MenuSystem.appendTo(menu, path, newItems);
}); });
*/ */
DataTableColumnHeaderUI.extendMenu = function(extender) { DataTableColumnHeaderUI.extendMenu = function(extender) {
DataTableColumnHeaderUI._extenders.push(extender); DataTableColumnHeaderUI._extenders.push(extender);
}; };

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function DataTableView(div) { function DataTableView(div) {
this._div = div; this._div = div;
@ -94,7 +94,9 @@ DataTableView.prototype.render = function() {
'<div class="viewpanel-sorting" bind="sortingControls"></div>' + '<div class="viewpanel-sorting" bind="sortingControls"></div>' +
'<div class="viewpanel-paging" bind="pagingControls"></div>' + '<div class="viewpanel-paging" bind="pagingControls"></div>' +
'</div>' + '</div>' +
'<div bind="dataTableContainer" class="data-table-container" style="display: none;"><table bind="table" class="data-table" cellspacing="0"></table></div>' '<div bind="dataTableContainer" class="data-table-container" style="display: none;">' +
'<table bind="table" class="data-table" cellspacing="0"></table>' +
'</div>'
); );
var elmts = DOM.bind(html); var elmts = DOM.bind(html);
@ -337,7 +339,8 @@ DataTableView.prototype._renderDataTable = function(table) {
{ row: row.i, starred: newStarred }, { row: row.i, starred: newStarred },
null, null,
{}, {},
{ onDone: function(o) { {
onDone: function(o) {
row.starred = newStarred; row.starred = newStarred;
renderRow(tr, r, row, even); renderRow(tr, r, row, even);
} }
@ -358,7 +361,8 @@ DataTableView.prototype._renderDataTable = function(table) {
{ row: row.i, flagged: newFlagged }, { row: row.i, flagged: newFlagged },
null, null,
{}, {},
{ onDone: function(o) { {
onDone: function(o) {
row.flagged = newFlagged; row.flagged = newFlagged;
renderRow(tr, r, row, even); renderRow(tr, r, row, even);
} }
@ -482,7 +486,8 @@ DataTableView.prototype._addSortingCriterion = function(criterion, alone) {
DataTableView.prototype._createMenuForAllColumns = function(elmt) { DataTableView.prototype._createMenuForAllColumns = function(elmt) {
var self = this; var self = this;
var menu = [ var menu = [
{ label: "Facet", {
label: "Facet",
id: "core/facets", id: "core/facets",
width: "200px", width: "200px",
submenu: [ submenu: [
@ -523,7 +528,8 @@ DataTableView.prototype._createMenuForAllColumns = function(elmt) {
] ]
}, },
{}, {},
{ label: "Edit rows", {
label: "Edit rows",
id: "core/edit-rows", id: "core/edit-rows",
width: "200px", width: "200px",
submenu: [ submenu: [
@ -566,7 +572,8 @@ DataTableView.prototype._createMenuForAllColumns = function(elmt) {
} }
] ]
}, },
{ label: "Edit columns", {
label: "Edit columns",
id: "core/edit-columns", id: "core/edit-columns",
width: "200px", width: "200px",
submenu: [ submenu: [
@ -580,7 +587,8 @@ DataTableView.prototype._createMenuForAllColumns = function(elmt) {
] ]
}, },
{}, {},
{ label: "View", {
label: "View",
id: "core/view", id: "core/view",
width: "200px", width: "200px",
submenu: [ submenu: [

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) { DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) {
var doTextTransform = function(expression, onError, repeat, repeatCount) { var doTextTransform = function(expression, onError, repeat, repeatCount) {
@ -342,5 +342,6 @@ DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) {
label: "Cells in rows into columns...", label: "Cells in rows into columns...",
click: doTransposeRowsIntoColumns click: doTransposeRowsIntoColumns
} }
]); ]
);
}); });

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) { DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) {
var columnIndex = Refine.columnNameToColumnIndex(column.name); var columnIndex = Refine.columnNameToColumnIndex(column.name);
@ -284,5 +284,6 @@ DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) {
label: "Move column right", label: "Move column right",
click: function() { doMoveColumnBy(1); } click: function() { doMoveColumnBy(1); }
} }
]); ]
);
}); });

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) { DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) {
var doFilterByExpressionPrompt = function(expression, type) { var doFilterByExpressionPrompt = function(expression, type) {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) { DataTableColumnHeaderUI.extendMenu(function(column, columnHeaderUI, menu) {
var doReconcile = function() { var doReconcile = function() {

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function HistogramWidget(elmt, options) { function HistogramWidget(elmt, options) {
this._elmt = elmt; this._elmt = elmt;

View File

@ -29,7 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
function SliderWidget(elmt, options) { function SliderWidget(elmt, options) {
this._elmt = elmt; this._elmt = elmt;

View File

@ -313,67 +313,70 @@ input.lightweight {
div.grid-layout > table { div.grid-layout > table {
border-collapse: separate; border-collapse: separate;
} }
div.grid-layout.layout-full > table { div.grid-layout.layout-full > table {
width: 100%; width: 100%;
max-width: 100% !important; max-width: 100% !important;
} }
div.grid-layout > table > tbody > tr > th, div.grid-layout > table > tbody > tr > td { div.grid-layout > table > tbody > tr > th,
div.grid-layout > table > tbody > tr > td {
padding: 0px; padding: 0px;
text-align: left; text-align: left;
vertical-align: baseline; vertical-align: baseline;
} }
div.grid-layout.grid-layout-for-text > table > tbody > tr > th, div.grid-layout.grid-layout-for-text > table > tbody > tr > td { div.grid-layout.grid-layout-for-text > table > tbody > tr > th,
div.grid-layout.grid-layout-for-text > table > tbody > tr > td {
vertical-align: middle; vertical-align: middle;
} }
div.grid-layout.grid-layout-for-ui > table > tbody > tr > th, div.grid-layout.grid-layout-for-ui > table > tbody > tr > td { div.grid-layout.grid-layout-for-ui > table > tbody > tr > th,
div.grid-layout.grid-layout-for-ui > table > tbody > tr > td {
vertical-align: top; vertical-align: top;
} }
div.grid-layout.layout-normal { div.grid-layout.layout-normal {
margin: -10px; margin: -10px;
} }
div.grid-layout.layout-normal > table { div.grid-layout.layout-normal > table {
border-spacing: 10px; border-spacing: 10px;
} }
div.grid-layout.layout-tight { div.grid-layout.layout-tight {
margin: -7px; margin: -7px;
} }
div.grid-layout.layout-tight > table { div.grid-layout.layout-tight > table {
border-spacing: 7px; border-spacing: 7px;
} }
div.grid-layout.layout-tighter { div.grid-layout.layout-tighter {
margin: -5px; margin: -5px;
} }
div.grid-layout.layout-tighter > table { div.grid-layout.layout-tighter > table {
border-spacing: 5px; border-spacing: 5px;
} }
div.grid-layout.layout-tightest { div.grid-layout.layout-tightest {
margin: -3px; margin: -3px;
} }
div.grid-layout.layout-tightest > table { div.grid-layout.layout-tightest > table {
border-spacing: 3px; border-spacing: 3px;
} }
div.grid-layout.layout-loose { div.grid-layout.layout-loose {
margin: -15px; margin: -15px;
} }
div.grid-layout.layout-loose > table { div.grid-layout.layout-loose > table {
border-spacing: 15px; border-spacing: 15px;
} }
div.grid-layout.layout-looser { div.grid-layout.layout-looser {
margin: -20px; margin: -20px;
} }
div.grid-layout.layout-looser > table { div.grid-layout.layout-looser > table {
border-spacing: 20px; border-spacing: 20px;
} }
div.input-container { div.input-container {
padding: 3px; padding: 3px;
} }
div.input-container > input, div.input-container > textarea { div.input-container > input, div.input-container > textarea {
display: block; display: block;
@ -383,40 +386,43 @@ div.input-container > input, div.input-container > textarea {
margin-left: -3px; margin-left: -3px;
margin-top: -3px; margin-top: -3px;
vertical-align: top; vertical-align: top;
} }
input.code, textarea.code { input.code, textarea.code {
font-family: monospace; font-family: monospace;
} }
img { img {
vertical-align: middle; vertical-align: middle;
} }
.hidden { .hidden {
display: none; display: none;
} }
.fbs-pane, .fbs-flyout-pane { .fbs-pane, .fbs-flyout-pane {
z-index: 2000; z-index: 2000;
} }
.ui-widget { .ui-widget {
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;
} }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { .ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
font-family: inherit; font-family: inherit;
font-size: inherit; font-size: inherit;
} }
p.body-text { p.body-text {
margin-bottom: 1em; margin-bottom: 1em;
} }
.relative-frame { .relative-frame {
position: relative; position: relative;
width: 100%; width: 100%;
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
} }

View File

@ -37,83 +37,83 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
height: 450px; height: 450px;
overflow: auto; overflow: auto;
border: 1px solid #aaa; border: 1px solid #aaa;
} }
table.clustering-dialog-entry-table { table.clustering-dialog-entry-table {
border-collapse: collapse; border-collapse: collapse;
width: 100%; width: 100%;
} }
table.clustering-dialog-entry-table > tbody > tr.header { table.clustering-dialog-entry-table > tbody > tr.header {
background: #ccc; background: #ccc;
font-weight: bold; font-weight: bold;
} }
table.clustering-dialog-entry-table > tbody > tr > td { table.clustering-dialog-entry-table > tbody > tr > td {
padding: 2px 5px; padding: 2px 5px;
} }
table.clustering-dialog-entry-table > tbody > tr.odd > td { table.clustering-dialog-entry-table > tbody > tr.odd > td {
background: #eee; background: #eee;
} }
table.clustering-dialog-entry-table > tbody > tr.even > td { table.clustering-dialog-entry-table > tbody > tr.even > td {
background: white; background: white;
} }
table.clustering-dialog-entry-table input { table.clustering-dialog-entry-table input {
border: 1px solid #ccc; border: 1px solid #ccc;
padding: 0 0.1em; padding: 0 0.1em;
} }
table.clustering-dialog-entry-table a { table.clustering-dialog-entry-table a {
text-decoration: none; text-decoration: none;
} }
table.clustering-dialog-entry-table ul { table.clustering-dialog-entry-table ul {
margin: 1em 0em 0em 0em; margin: 1em 0em 0em 0em;
} }
table.clustering-dialog-entry-table a:hover { table.clustering-dialog-entry-table a:hover {
text-decoration: underline text-decoration: underline
} }
.clustering-dialog-entry-count { .clustering-dialog-entry-count {
color: #aaa; color: #aaa;
margin-left: 0.5em; margin-left: 0.5em;
} }
.clustering-dialog-controls { .clustering-dialog-controls {
margin-bottom: 0.5em; margin-bottom: 0.5em;
margin-right: 2em; margin-right: 2em;
} }
.clustering-dialog-controls td { .clustering-dialog-controls td {
padding-right: 0.5em; padding-right: 0.5em;
} }
.clustering-dialog-facet { .clustering-dialog-facet {
margin-bottom: 1em; margin-bottom: 1em;
} }
.clustering-dialog-facet-header { .clustering-dialog-facet-header {
font-weight: bold; font-weight: bold;
} }
.clustering-dialog-facet-histogram { .clustering-dialog-facet-histogram {
overflow: hidden; overflow: hidden;
} }
.clustering-dialog-facet-slider { .clustering-dialog-facet-slider {
margin: 5px; margin: 5px;
} }
.clustering-dialog-facet-selection { .clustering-dialog-facet-selection {
text-align: center; text-align: center;
color: #888; color: #888;
} }
.clustering-dialog-value-focus { .clustering-dialog-value-focus {
text-align: right; text-align: right;
font-size: 80%; font-size: 80%;
} }
.clustering-dialog-value-focus a { .clustering-dialog-value-focus a {
text-decoration: none; text-decoration: none;
visibility: hidden; visibility: hidden;
} }

View File

@ -39,11 +39,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
padding: 3px; padding: 3px;
margin: 2px; margin: 2px;
cursor: move; cursor: move;
} }
.column-reordering-dialog-column-container { .column-reordering-dialog-column-container {
height: 375px; height: 375px;
border: 1px solid #eee; border: 1px solid #eee;
padding: 10px; padding: 10px;
overflow: auto; overflow: auto;
} }

View File

@ -35,20 +35,20 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#expression-preview-tabs .ui-tabs-nav li a { #expression-preview-tabs .ui-tabs-nav li a {
padding: 0.15em 1em; padding: 0.15em 1em;
} }
textarea.expression-preview-code { textarea.expression-preview-code {
font-family: monospace; font-family: monospace;
height: 5em; height: 5em;
vertical-align: top; vertical-align: top;
} }
.expression-preview-parsing-status { .expression-preview-parsing-status {
color: @light_grey; color: @light_grey;
} }
.expression-preview-parsing-status.error { .expression-preview-parsing-status.error {
color: red; color: red;
} }
#expression-preview-tabs-preview, #expression-preview-tabs-preview,
#expression-preview-tabs-help, #expression-preview-tabs-help,
@ -56,7 +56,7 @@ textarea.expression-preview-code {
#expression-preview-tabs-starred { #expression-preview-tabs-starred {
padding: @padding_tight; padding: @padding_tight;
overflow: hidden; overflow: hidden;
} }
#expression-preview-tabs-preview > div, #expression-preview-tabs-preview > div,
#expression-preview-tabs-help > div, #expression-preview-tabs-help > div,
@ -64,56 +64,56 @@ textarea.expression-preview-code {
#expression-preview-tabs-starred { #expression-preview-tabs-starred {
height: 200px; height: 200px;
overflow: auto; overflow: auto;
} }
#expression-preview-tabs-preview td, #expression-preview-tabs-preview th, #expression-preview-tabs-preview td, #expression-preview-tabs-preview th,
#expression-preview-tabs-help td, #expression-preview-tabs-help th, #expression-preview-tabs-help td, #expression-preview-tabs-help th,
#expression-preview-tabs-history td, #expression-preview-tabs-history th, #expression-preview-tabs-history td, #expression-preview-tabs-history th,
#expression-preview-tabs-starred td, #expression-preview-tabs-starred th { #expression-preview-tabs-starred td, #expression-preview-tabs-starred th {
padding: @padding_tight; padding: @padding_tight;
} }
.expression-preview-table-wrapper { .expression-preview-table-wrapper {
padding: @padding_normal; padding: @padding_normal;
} }
.expression-preview-container td { .expression-preview-container td {
padding: 2px 5px; padding: 2px 5px;
border-top: 1px solid #ccc; border-top: 1px solid #ccc;
} }
td.expression-preview-heading { td.expression-preview-heading {
border-top: none; border-top: none;
background: #ddd; background: #ddd;
font-weight: bold; font-weight: bold;
} }
td.expression-preview-value { td.expression-preview-value {
max-width: 250px !important; max-width: 250px !important;
overflow-x: hidden; overflow-x: hidden;
} }
.expression-preview-special-value { .expression-preview-special-value {
color: #aaa; color: #aaa;
} }
.expression-preview-help-container h3 { .expression-preview-help-container h3 {
margin-top: @padding_looser; margin-top: @padding_looser;
margin-bottom: @padding_normal; margin-bottom: @padding_normal;
border-bottom: 1px solid @light_grey; border-bottom: 1px solid @light_grey;
} }
.expression-preview-doc-item-title { .expression-preview-doc-item-title {
font-weight: bold; font-weight: bold;
text-align: right; text-align: right;
} }
.expression-preview-doc-item-params { .expression-preview-doc-item-params {
} }
.expression-preview-doc-item-returns { .expression-preview-doc-item-returns {
} }
.expression-preview-doc-item-desc { .expression-preview-doc-item-desc {
color: #666; color: #666;
} }

View File

@ -34,46 +34,46 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@import-less url("../theme.less"); @import-less url("../theme.less");
.scatterplot-dialog-selectors-container { .scatterplot-dialog-selectors-container {
} }
.scatterplot-dialog-selectors-container .buttonset { .scatterplot-dialog-selectors-container .buttonset {
margin-right: 1em; margin-right: 1em;
} }
.scatterplot-dialog-table-container { .scatterplot-dialog-table-container {
margin: 2px 0em; margin: 2px 0em;
height: 500px; height: 500px;
overflow: auto; overflow: auto;
border: 1px solid #aaa; border: 1px solid #aaa;
} }
table.scatterplot-matrix-table { table.scatterplot-matrix-table {
border-collapse: collapse; border-collapse: collapse;
} }
table.scatterplot-matrix-table > tbody > tr > td { table.scatterplot-matrix-table > tbody > tr > td {
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
} }
table.scatterplot-matrix-table td.current_column { table.scatterplot-matrix-table td.current_column {
font-weight: bold; font-weight: bold;
font-size: 105%; font-size: 105%;
} }
table.scatterplot-matrix-table div.current_column { table.scatterplot-matrix-table div.current_column {
background-color: #fbede3; background-color: #fbede3;
} }
table.scatterplot-matrix-table .column_header { table.scatterplot-matrix-table .column_header {
text-align: right; text-align: right;
padding: 0em 0.5em; padding: 0em 0.5em;
} }
table.scatterplot-matrix-table .scatterplot img { table.scatterplot-matrix-table .scatterplot img {
border: 1px solid #eee; border: 1px solid #eee;
} }
table.scatterplot-matrix-table .scatterplot img.hover { table.scatterplot-matrix-table .scatterplot img.hover {
background-color: #eeffee; background-color: #eeffee;
} }

View File

@ -39,10 +39,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
visibility: hidden; visibility: hidden;
} }
#left-panel { #left-panel {
} }
#left-panel-body { #left-panel-body {
margin-left: @padding_tight; margin-left: @padding_tight;
@ -55,18 +55,18 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
padding: 0; padding: 0;
padding-top: @padding_looser; padding-top: @padding_looser;
font-size: 1.3em; font-size: 1.3em;
} }
#action-area-tabs > li { #action-area-tabs > li {
display: block; display: block;
padding-top: @padding_tight; padding-top: @padding_tight;
padding-bottom: @padding_tight; padding-bottom: @padding_tight;
padding-left: @padding_normal; padding-left: @padding_normal;
cursor: pointer; cursor: pointer;
} }
#action-area-tabs > li.selected { #action-area-tabs > li.selected {
background: @chrome_primary; background: @chrome_primary;
.rounded_corners_left(); .rounded_corners_left();
} }
#project-links { #project-links {
font-size: 1.3em; font-size: 1.3em;
@ -114,4 +114,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
left: 0; left: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }

View File

@ -48,7 +48,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
} }
#create-project-ui-source-selection-message > h3 { #create-project-ui-source-selection-message > h3 {
margin-bottom: @padding_normal; margin-bottom: @padding_normal;
} }
#create-project-ui-source-selection-layout { #create-project-ui-source-selection-layout {
width: 100%; width: 100%;
@ -95,4 +95,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
width: 100%; width: 100%;
height: 100%; height: 100%;
visibility: hidden; visibility: hidden;
} }

View File

@ -36,24 +36,24 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#default-importing-progress-panel { #default-importing-progress-panel {
font-size: 1.3em; font-size: 1.3em;
padding: @padding_loose; padding: @padding_loose;
} }
#default-importing-progress-bar-frame { #default-importing-progress-bar-frame {
border: 1px solid @chrome_primary; border: 1px solid @chrome_primary;
padding: @padding_tighter; padding: @padding_tighter;
width: 300px; width: 300px;
} }
#default-importing-progress-bar-body { #default-importing-progress-bar-body {
background: @chrome_primary; background: @chrome_primary;
height: 1em; height: 1em;
position: relative; position: relative;
width: 30%; width: 30%;
} }
#default-importing-progress-bar-body.indefinite { #default-importing-progress-bar-body.indefinite {
background: #eee; background: #eee;
width: 100%; width: 100%;
} }
#default-importing-iframe { #default-importing-iframe {
position: fixed; position: fixed;
@ -61,23 +61,23 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
height: 200px; height: 200px;
left: -300px; left: -300px;
top: -300px; top: -300px;
} }
#default-importing-error-panel { #default-importing-error-panel {
font-size: 1.3em; font-size: 1.3em;
padding: @padding_loose; padding: @padding_loose;
} }
#default-importing-error-message { #default-importing-error-message {
} }
#default-importing-error-stack { #default-importing-error-stack {
font-family: monospace; font-family: monospace;
whitespace: pre; whitespace: pre;
padding: @padding_normal; padding: @padding_normal;
border: 1px solid @chrome_primary; border: 1px solid @chrome_primary;
} }
.default-importing-wizard-header { .default-importing-wizard-header {
font-size: 1.3em; font-size: 1.3em;
background: @chrome_primary; background: @chrome_primary;
padding: @padding_tight; padding: @padding_tight;
} }

View File

@ -38,13 +38,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
position: absolute; position: absolute;
background: @chrome_secondary; background: @chrome_secondary;
padding: @padding_looser; padding: @padding_looser;
} }
.default-importing-file-selection-file-panel { .default-importing-file-selection-file-panel {
font-size: 1.3em; font-size: 1.3em;
position: absolute; position: absolute;
background: white; background: white;
overflow: auto; overflow: auto;
} }
.default-importing-file-selection-file-panel > table { .default-importing-file-selection-file-panel > table {
border-collapse: collapse; border-collapse: collapse;
width: 100%; width: 100%;
@ -52,22 +52,22 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.default-importing-file-selection-file-panel > table > tbody > tr > td, .default-importing-file-selection-file-panel > table > tbody > tr > td,
.default-importing-file-selection-file-panel > table > tbody > tr > th { .default-importing-file-selection-file-panel > table > tbody > tr > th {
padding: @padding_tight @padding_normal; padding: @padding_tight @padding_normal;
} }
.default-importing-file-selection-file-panel > table > tbody > tr > th { .default-importing-file-selection-file-panel > table > tbody > tr > th {
text-align: left; text-align: left;
background: @faint_grey; background: @faint_grey;
} }
.default-importing-file-selection-file-panel > table > tbody > tr.odd { .default-importing-file-selection-file-panel > table > tbody > tr.odd {
background: @fainter_grey; background: @fainter_grey;
} }
.default-importing-file-selection-control-panel h2 { .default-importing-file-selection-control-panel h2 {
font-size: 110%; font-size: 110%;
margin-top: 3em; margin-top: 3em;
margin-bottom: 0.75em; margin-bottom: 0.75em;
} }
.default-importing-file-selection-file-panel > table > tbody > tr > .default-importing-file-selection-file-panel > table > tbody > tr >
td.default-importing-file-selection-filename.highlighted { td.default-importing-file-selection-filename.highlighted {
background: #fffee0; background: #fffee0;
} }

View File

@ -37,7 +37,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
font-size: 1.1em; font-size: 1.1em;
position: absolute; position: absolute;
overflow: auto; overflow: auto;
} }
.default-importing-progress-data-panel { .default-importing-progress-data-panel {
position: absolute; position: absolute;
@ -46,7 +46,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
padding: 3em; padding: 3em;
background: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.7);
text-align: center; text-align: center;
} }
.default-importing-parsing-control-panel { .default-importing-parsing-control-panel {
font-size: 1.3em; font-size: 1.3em;
@ -54,39 +54,39 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
overflow: auto; overflow: auto;
border-top: 5px solid @chrome_primary; border-top: 5px solid @chrome_primary;
background: @chrome_secondary; background: @chrome_secondary;
} }
.default-importing-parsing-control-panel > table { .default-importing-parsing-control-panel > table {
width: 100%; width: 100%;
border-collapse: collapse; border-collapse: collapse;
} }
td.default-importing-parsing-control-panel-formats { td.default-importing-parsing-control-panel-formats {
padding: @padding_looser 0; padding: @padding_looser 0;
width: 250px; width: 250px;
} }
.default-importing-parsing-control-panel-formats-message { .default-importing-parsing-control-panel-formats-message {
margin-left: @padding_looser; margin-left: @padding_looser;
margin-bottom: @padding_looser; margin-bottom: @padding_looser;
padding: 0 @padding_normal; padding: 0 @padding_normal;
font-size: 1.3em; font-size: 1.3em;
} }
.default-importing-parsing-control-panel-format { .default-importing-parsing-control-panel-format {
margin-left: @padding_looser; margin-left: @padding_looser;
padding: @padding_tight @padding_normal; padding: @padding_tight @padding_normal;
.rounded_corners_left(); .rounded_corners_left();
color: @link_primary; color: @link_primary;
cursor: pointer; cursor: pointer;
} }
.default-importing-parsing-control-panel-format.selected { .default-importing-parsing-control-panel-format.selected {
background: white; background: white;
font-weight: bold; font-weight: bold;
color: black; color: black;
} }
td.default-importing-parsing-control-panel-options-panel { td.default-importing-parsing-control-panel-options-panel {
background: white; background: white;
padding: @padding_looser; padding: @padding_looser;
.rounded_corners_left(); .rounded_corners_left();
} }

View File

@ -35,9 +35,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.default-importing-web-url { .default-importing-web-url {
width: 60em; width: 60em;
} }
#default-importing-clipboard-textarea { #default-importing-clipboard-textarea {
width: 50em; width: 50em;
height: 30em; height: 30em;
} }

View File

@ -37,29 +37,29 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
position: relative; position: relative;
font-family: monospace; font-family: monospace;
font-size: 150%; font-size: 150%;
} }
table.data-table.fixed-width-preview-data-table { table.data-table.fixed-width-preview-data-table {
font-size: inherit; font-size: inherit;
} }
table.data-table.fixed-width-preview-data-table > tbody > tr { table.data-table.fixed-width-preview-data-table > tbody > tr {
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
} }
table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header { table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header {
background: none; background: none;
} }
table.data-table.fixed-width-preview-data-table > tbody > tr > td, table.data-table.fixed-width-preview-data-table > tbody > tr > td,
table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header { table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header {
border: none; border: none;
padding: 2px 0px; padding: 2px 0px;
white-space: pre; white-space: pre;
} }
table.data-table.fixed-width-preview-data-table > tbody > tr > td.even, table.data-table.fixed-width-preview-data-table > tbody > tr > td.even,
table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header.even { table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header.even {
background: #eee; background: #eee;
} }
.fixed-width-preview-column-separator-outer { .fixed-width-preview-column-separator-outer {
position: absolute; position: absolute;
@ -70,14 +70,14 @@ table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header.
padding: 0px 3px; padding: 0px 3px;
cursor: ew-resize; cursor: ew-resize;
overflow: visible; overflow: visible;
} }
.fixed-width-preview-column-separator-inner { .fixed-width-preview-column-separator-inner {
position: relative; position: relative;
height: 100%; height: 100%;
width: 1px; width: 1px;
background: red; background: red;
overflow: visible; overflow: visible;
} }
.fixed-width-preview-column-separator-inner > div { .fixed-width-preview-column-separator-inner > div {
position: absolute; position: absolute;
top: 50px; top: 50px;
@ -87,4 +87,4 @@ table.data-table.fixed-width-preview-data-table > tbody > tr > td.column-header.
width: 13px; width: 13px;
height: 13px; height: 13px;
cursor: pointer; cursor: pointer;
} }

View File

@ -36,4 +36,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#project-upload-form { #project-upload-form {
padding: @padding_loose; padding: @padding_loose;
font-size: 1.3em; font-size: 1.3em;
} }

View File

@ -38,45 +38,45 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
font-size: 130%; font-size: 130%;
color: #666; color: #666;
padding: 20px; padding: 20px;
} }
.json-parser-ui-select-dom { .json-parser-ui-select-dom {
padding: 20px; padding: 20px;
font-family: monospace; font-family: monospace;
font-size: 130%; font-size: 130%;
} }
.json-parser-ui-select-dom .node { .json-parser-ui-select-dom .node {
cursor: pointer; cursor: pointer;
padding: 2px; padding: 2px;
border: 1px solid rgba(0,0,0,0); border: 1px solid rgba(0,0,0,0);
} }
.json-parser-ui-select-dom .indented { .json-parser-ui-select-dom .indented {
margin-left: 2em; margin-left: 2em;
} }
.json-parser-ui-select-dom .field-name { .json-parser-ui-select-dom .field-name {
font-weight: bold; font-weight: bold;
} }
.json-parser-ui-select-dom .delimiter { .json-parser-ui-select-dom .delimiter {
color: blue; color: blue;
} }
.json-parser-ui-select-dom .punctuation { .json-parser-ui-select-dom .punctuation {
color: #aaa; color: #aaa;
} }
.json-parser-ui-select-dom .literal { .json-parser-ui-select-dom .literal {
color: #888; color: #888;
} }
.json-parser-ui-select-dom .children { .json-parser-ui-select-dom .children {
margin-left: 20px; margin-left: 20px;
} }
.json-parser-ui-select-dom .node.highlight { .json-parser-ui-select-dom .node.highlight {
background: #fffee0; background: #fffee0;
border: 1px dashed red; border: 1px dashed red;
} }

View File

@ -38,29 +38,29 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
font-size: 150%; font-size: 150%;
color: #666; color: #666;
padding: 20px; padding: 20px;
} }
.xml-parser-ui-select-dom { .xml-parser-ui-select-dom {
padding: 20px; padding: 20px;
font-family: monospace; font-family: monospace;
font-size: 150%; font-size: 150%;
} }
.xml-parser-ui-select-dom .elmt { .xml-parser-ui-select-dom .elmt {
cursor: pointer; cursor: pointer;
padding: 2px; padding: 2px;
border: 1px solid rgba(0,0,0,0); border: 1px solid rgba(0,0,0,0);
} }
.xml-parser-ui-select-dom .text { .xml-parser-ui-select-dom .text {
color: #888; color: #888;
} }
.xml-parser-ui-select-dom .children { .xml-parser-ui-select-dom .children {
margin-left: 20px; margin-left: 20px;
} }
.xml-parser-ui-select-dom .elmt.highlight { .xml-parser-ui-select-dom .elmt.highlight {
background: #fffee0; background: #fffee0;
border: 1px dashed red; border: 1px dashed red;
} }

View File

@ -66,7 +66,7 @@ a.facet-title-remove {
background-image: url(../../images/close-map.png); background-image: url(../../images/close-map.png);
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0px 0px; background-position: 0px 0px;
} }
a.facet-title-remove:hover { a.facet-title-remove:hover {
background-position: -12px 0px; background-position: -12px 0px;
@ -144,24 +144,24 @@ a.facet-title-remove:hover {
.facet-choice { .facet-choice {
padding: 2px 5px; padding: 2px 5px;
clear: both; clear: both;
} }
.facet-choice:hover { .facet-choice:hover {
background: @fill_secondary; background: @fill_secondary;
} }
.facet-choice-selected .facet-choice-label { .facet-choice-selected .facet-choice-label {
font-weight: bold; font-weight: bold;
color: #ff6a00; color: #ff6a00;
} }
.facet-mode-inverted .facet-choice-selected .facet-choice-label { .facet-mode-inverted .facet-choice-selected .facet-choice-label {
text-decoration: line-through; text-decoration: line-through;
color: black; color: black;
} }
.facet-choice-link.facet-mode-inverted { .facet-choice-link.facet-mode-inverted {
text-decoration: line-through; text-decoration: line-through;
color: black; color: black;
} }
.facet-choice-count, .facet-range-choice-count { .facet-choice-count, .facet-range-choice-count {
padding-left: 5px; padding-left: 5px;
@ -182,11 +182,11 @@ img.facet-choice-link {
cursor: pointer; cursor: pointer;
margin-left: 2px; margin-left: 2px;
float: right; float: right;
} }
.facet-range-body { .facet-range-body {
padding: 5px; padding: 5px;
} }
.facet-range-message { .facet-range-message {
color: @metadata_grey; color: @metadata_grey;
@ -223,45 +223,45 @@ img.facet-choice-link {
.facet-text-body { .facet-text-body {
padding: 5px; padding: 5px;
} }
.facet-scatterplot-plot-container { .facet-scatterplot-plot-container {
margin: 5px 0px 5px 5px; margin: 5px 0px 5px 5px;
border: 1px solid #bbb; border: 1px solid #bbb;
} }
.facet-scatterplot-plot { .facet-scatterplot-plot {
position: relative; position: relative;
} }
.facet-scatterplot-image { .facet-scatterplot-image {
position: absolute; position: absolute;
} }
.facet-scatterplot-body td { .facet-scatterplot-body td {
vertical-align: middle; vertical-align: middle;
} }
.facet-scatterplot-selectors-container .scatterplot-selectors { .facet-scatterplot-selectors-container .scatterplot-selectors {
text-align: center; text-align: center;
} }
.facet-scatterplot-selectors-container .scatterplot-export-plot { .facet-scatterplot-selectors-container .scatterplot-export-plot {
font-size: 95%; font-size: 95%;
margin-top: 3em; margin-top: 3em;
} }
.facet-scatterplot-selectors-container .scatterplot-selectors .buttonset { .facet-scatterplot-selectors-container .scatterplot-selectors .buttonset {
margin: 0.8em 0em; margin: 0.8em 0em;
} }
.scatterplot-selectors .ui-button-text-only .ui-button-text { .scatterplot-selectors .ui-button-text-only .ui-button-text {
font-size: 90%; font-size: 90%;
padding: 0.0em 0.4em 0.1em 0.3em; padding: 0.0em 0.4em 0.1em 0.3em;
} }
.scatterplot-selectors .buttonset { .scatterplot-selectors .buttonset {
margin: 0px; margin: 0px;
} }
.scatterplot-selectors .buttonset .ui-corner-top { .scatterplot-selectors .buttonset .ui-corner-top {
-moz-border-radius-topleft: 0.5em; -moz-border-radius-topleft: 0.5em;
@ -270,7 +270,7 @@ img.facet-choice-link {
-moz-border-radius-topright: 0.5em; -moz-border-radius-topright: 0.5em;
-webkit-border-top-right-radius: 0.5em; -webkit-border-top-right-radius: 0.5em;
border-top-right-radius: 0.5em; border-top-right-radius: 0.5em;
} }
.scatterplot-selectors .buttonset .ui-corner-bottom { .scatterplot-selectors .buttonset .ui-corner-bottom {
-moz-border-radius-bottomleft: 0.5em; -moz-border-radius-bottomleft: 0.5em;
@ -279,7 +279,7 @@ img.facet-choice-link {
-moz-border-radius-bottomright: 0.5em; -moz-border-radius-bottomright: 0.5em;
-webkit-border-bottom-right-radius: 0.5em; -webkit-border-bottom-right-radius: 0.5em;
border-bottom-right-radius: 0.5em; border-bottom-right-radius: 0.5em;
} }
.scatterplot-selectors .buttonset .ui-corner-right { .scatterplot-selectors .buttonset .ui-corner-right {
-moz-border-radius-topright: 0.5em; -moz-border-radius-topright: 0.5em;
@ -288,7 +288,7 @@ img.facet-choice-link {
-moz-border-radius-bottomright: 0.5em; -moz-border-radius-bottomright: 0.5em;
-webkit-border-bottom-right-radius: 0.5em; -webkit-border-bottom-right-radius: 0.5em;
border-bottom-right-radius: 0.5em; border-bottom-right-radius: 0.5em;
} }
.scatterplot-selectors .buttonset .ui-corner-left { .scatterplot-selectors .buttonset .ui-corner-left {
-moz-border-radius-topleft: 0.5em; -moz-border-radius-topleft: 0.5em;
@ -297,47 +297,45 @@ img.facet-choice-link {
-moz-border-radius-bottomleft: 0.5em; -moz-border-radius-bottomleft: 0.5em;
-webkit-border-bottom-left-radius: 0.5em; -webkit-border-bottom-left-radius: 0.5em;
border-bottom-left-radius: 0.5em; border-bottom-left-radius: 0.5em;
} }
.scatterplot-selectors .scatterplot-dim-selector label { .scatterplot-selectors .scatterplot-dim-selector label {
width: 32px; width: 32px;
height: 16px; height: 16px;
} }
.scatterplot-selectors .scatterplot-rot-selector label { .scatterplot-selectors .scatterplot-rot-selector label {
width: 22px; width: 22px;
height: 18px; height: 18px;
background-image: url("../../images/scatterplot-icons.png"); background-image: url("../../images/scatterplot-icons.png");
} }
.scatterplot-selectors .scatterplot-rot-selector label.rot-ccw-label { .scatterplot-selectors .scatterplot-rot-selector label.rot-ccw-label {
background-position: -5px -5px; background-position: -5px -5px;
} }
.scatterplot-selectors .scatterplot-rot-selector label.rot-none-label { .scatterplot-selectors .scatterplot-rot-selector label.rot-none-label {
background-position: -28px -4px; background-position: -28px -4px;
} }
.scatterplot-selectors .scatterplot-rot-selector label.rot-cw-label { .scatterplot-selectors .scatterplot-rot-selector label.rot-cw-label {
background-position: -48px -3px; background-position: -48px -3px;
} }
.scatterplot-selectors .scatterplot-dot-selector label { .scatterplot-selectors .scatterplot-dot-selector label {
width: 22px; width: 22px;
height: 18px; height: 18px;
background-image: url("../../images/scatterplot-icons.png"); background-image: url("../../images/scatterplot-icons.png");
} }
.scatterplot-selectors .scatterplot-dot-selector label.dot-small-label { .scatterplot-selectors .scatterplot-dot-selector label.dot-small-label {
background-position: -5px -25px; background-position: -5px -25px;
} }
.scatterplot-selectors .scatterplot-dot-selector label.dot-regular-label { .scatterplot-selectors .scatterplot-dot-selector label.dot-regular-label {
background-position: -27px -25px; background-position: -27px -25px;
} }
.scatterplot-selectors .scatterplot-dot-selector label.dot-big-label { .scatterplot-selectors .scatterplot-dot-selector label.dot-big-label {
background-position: -48px -25px; background-position: -48px -25px;
} }

View File

@ -44,20 +44,19 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-webkit-border-bottom-left-radius: 10px; -webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px; -moz-border-radius-bottomright: 10px;
-webkit-border-bottom-right-radius: 10px; -webkit-border-bottom-right-radius: 10px;
} }
.process-panel-inner { .process-panel-inner {
padding-bottom: 10px; padding-bottom: 10px;
} }
.process-panel-head { .process-panel-head {
padding: 2px 10px; padding: 2px 10px;
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
} }
.process-panel-body { .process-panel-body {
max-height: 70px; max-height: 70px;
overflow: auto; overflow: auto;
padding: 10px; padding: 10px;
} }

View File

@ -35,10 +35,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#e3e3e3)); background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#e3e3e3));
background: -moz-linear-gradient(top, #f9f9f9, #e3e3e3); background: -moz-linear-gradient(top, #f9f9f9, #e3e3e3);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e3e3e3'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e3e3e3');
} }
.button:active, a.button:active { .button:active, a.button:active {
background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#f9f9f9)); background: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#f9f9f9));
background: -moz-linear-gradient(top, #e3e3e3, #f9f9f9); background: -moz-linear-gradient(top, #e3e3e3, #f9f9f9);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#f9f9f9'); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#f9f9f9');
} }

View File

@ -39,28 +39,28 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
overflow: auto; overflow: auto;
width: 200px; width: 200px;
height: 500px; height: 500px;
} }
a.recon-dialog-service-selector { a.recon-dialog-service-selector {
display: block; display: block;
padding: 10px; padding: 10px;
text-decoration: none; text-decoration: none;
color: black; color: black;
} }
a.recon-dialog-service-selector:hover { a.recon-dialog-service-selector:hover {
background: #eee; background: #eee;
} }
a.recon-dialog-service-selector.selected { a.recon-dialog-service-selector.selected {
background: #eee; background: #eee;
font-weight: bold; font-weight: bold;
} }
.recon-dialog-service-panel-message { .recon-dialog-service-panel-message {
text-align: center; text-align: center;
font-size: 200%; font-size: 200%;
padding: 50px 0; padding: 50px 0;
color: #aaa; color: #aaa;
} }
a.recon-dialog-service-selector-remove { a.recon-dialog-service-selector-remove {
float: right; float: right;
@ -73,7 +73,7 @@ a.recon-dialog-service-selector-remove {
background-image: url(../../images/close-map.png); background-image: url(../../images/close-map.png);
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0px 0px; background-position: 0px 0px;
} }
a.recon-dialog-service-selector-remove:hover { a.recon-dialog-service-selector-remove:hover {
background-position: -12px 0px; background-position: -12px 0px;
} }

View File

@ -38,11 +38,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
font-size: 150%; font-size: 150%;
padding: 20px 0; padding: 20px 0;
color: #aaa; color: #aaa;
} }
.recon-dialog-standard-service-panel .type-id { .recon-dialog-standard-service-panel .type-id {
color: #888; color: #888;
} }
.recon-dialog-standard-service-panel .type-container, .recon-dialog-standard-service-panel .type-container,
.recon-dialog-standard-service-panel .detail-container { .recon-dialog-standard-service-panel .detail-container {
@ -51,4 +51,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
max-height: 300px; max-height: 300px;
height: 300px !important; height: 300px !important;
overflow: auto; overflow: auto;
} }

View File

@ -35,4 +35,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.fbs-pane-property, .fbs-pane-type { .fbs-pane-property, .fbs-pane-type {
width: 400px; width: 400px;
} }

View File

@ -37,7 +37,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
position: relative; position: relative;
overflow: visible; overflow: visible;
margin: 5px; margin: 5px;
} }
.slider-widget-tint { .slider-widget-tint {
position: absolute; position: absolute;
@ -50,11 +50,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.slider-widget-tint.left { .slider-widget-tint.left {
left: 0; left: 0;
} }
.slider-widget-tint.right { .slider-widget-tint.right {
right: 0; right: 0;
} }
.slider-widget-highlight { .slider-widget-highlight {
position: absolute; position: absolute;
padding: 0; padding: 0;
@ -62,23 +62,23 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
top: -2px; top: -2px;
height: 100%; height: 100%;
cursor: move; cursor: move;
} }
.slider-widget-bracket { .slider-widget-bracket {
position: absolute; position: absolute;
top: 0; top: 0;
width: 12px; width: 12px;
height: 100%; height: 100%;
} }
.slider-widget-bracket.left { .slider-widget-bracket.left {
background: url(../../images/slider-handle.png) no-repeat center right; background: url(../../images/slider-handle.png) no-repeat center right;
margin-left: -8px; margin-left: -8px;
cursor: e-resize; cursor: e-resize;
} }
.slider-widget-bracket.right { .slider-widget-bracket.right {
background: url(../../images/slider-handle.png) no-repeat center left; background: url(../../images/slider-handle.png) no-repeat center left;
margin-left: -4px; margin-left: -4px;
cursor: w-resize; cursor: w-resize;
} }
.slider-widget-overlay { .slider-widget-overlay {
position: fixed; position: fixed;
top: 0px; top: 0px;
@ -87,4 +87,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
height: 100%; height: 100%;
background: white; background: white;
opacity: 0.01; opacity: 0.01;
} }