Adding mapbox-gl branch

This commit is contained in:
Andreas Hocevar
2015-03-16 18:50:27 +01:00
parent 7985f030fa
commit 57ee7f52fd
3109 changed files with 943365 additions and 0 deletions
@@ -0,0 +1,73 @@
/*
* Copyright 2005 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by the Apache License, Version 2.0.
* See the COPYING file for details.
*/
/*
* Bubble styles.
*
* @author robbyw@google.com (Robby Walker)
* @author nicksantos@google.com (Nick Santos)
* @author jparent@google.com (Julie Parent)
*/
div.tr_bubble {
position: absolute;
background-color: #e0ecff;
border: 1px solid #99c0ff;
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
font-size: 83%;
font-family: Arial, Helvetica, sans-serif;
padding: 2px 19px 6px 6px;
white-space: nowrap;
}
.tr_bubble_link {
color: #00c;
text-decoration: underline;
cursor: pointer;
font-size: 100%;
}
.tr_bubble .tr_option-link,
.tr_bubble #tr_delete-image,
.tr_bubble #tr_module-options-link {
font-size: 83%;
}
.tr_bubble_closebox {
position: absolute;
cursor: default;
background: url(//ssl.gstatic.com/editor/bubble_closebox.gif) top left no-repeat;
padding: 0;
margin: 0;
width: 10px;
height: 10px;
top: 3px;
right: 5px;
}
div.tr_bubble_panel {
padding: 2px 0 1px;
}
div.tr_bubble_panel_title {
display: none;
}
div.tr_multi_bubble div.tr_bubble_panel_title {
margin-right: 1px;
display: block;
float: left;
width: 50px;
}
div.tr_multi_bubble div.tr_bubble_panel {
padding: 2px 0 1px;
margin-right: 50px;
}
@@ -0,0 +1,66 @@
/*
* Copyright 2007 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by the Apache License, Version 2.0.
* See the COPYING file for details.
*/
/*
* Styles for Editor dialogs and their sub-components.
*
* @author marcosalmeida@google.com (Marcos Almeida)
*/
.tr-dialog {
width: 475px;
}
.tr-dialog .goog-tab-content {
margin: 0;
border: 1px solid #6b90da;
padding: 4px 8px;
background: #fff;
overflow: auto;
}
.tr-tabpane {
font-size: 10pt;
padding: 1.3ex 0;
}
.tr-tabpane-caption {
font-size: 10pt;
margin-bottom: 0.7ex;
background-color: #fffaf5;
line-height: 1.3em;
}
.tr-tabpane .goog-tab-content {
border: none;
padding: 5px 7px 1px;
}
.tr-tabpane .goog-tab {
background-color: #fff;
border: none;
width: 136px;
line-height: 1.3em;
margin-bottom: 0.7ex;
}
.tr-tabpane .goog-tab {
text-decoration: underline;
color: blue;
cursor: pointer;
}
.tr-tabpane .goog-tab-selected {
font-weight: bold;
text-decoration: none;
color: black;
}
.tr-tabpane .goog-tab input {
margin: -2px 5px 0 0;
}
@@ -0,0 +1,113 @@
/*
* Copyright 2009 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by the Apache License, Version 2.0.
* See the COPYING file for details.
*/
/*
* The CSS definition for everything inside equation editor dialog.
*
* Author: yoah@google.com (Yoah Bar-David)
* Author: kfk@google.com (Ming Zhang)
*/
.ee-modal-dialog {
width: 475px;
}
.ee-content {
background: #FFF;
border: 1px solid #369;
overflow: auto;
padding: 4px 8px;
}
.ee-tex {
border: 1px solid #000;
display: block;
height: 7.5em;
margin: 4px 0 10px 0;
width: 100%;
}
.ee-section-title {
font-weight: bold;
}
.ee-section-title-floating {
float: left;
}
#ee-section-learn-more {
float: right;
}
.ee-preview-container {
border: 1px dashed #ccc;
height: 80px;
margin: 4px 0 10px 0;
width: 100%;
overflow: auto;
}
.ee-warning {
color: #F00;
}
.ee-palette {
border: 1px solid #aaa;
left: 0;
outline: none;
position: absolute;
}
.ee-palette-table {
border: 0;
border-collapse: separate;
}
.ee-palette-cell {
background: #F0F0F0;
border: 1px solid #FFF;
margin: 0;
padding: 1px;
}
.ee-palette-cell-hover {
background: #E2ECF9 !important;
border: 1px solid #000;
padding: 1px;
}
.ee-palette-cell-selected {
background: #F0F0F0;
border: 1px solid #CCC !important;
padding: 1px;
}
.ee-menu-palette-table {
margin-right: 10px;
}
.ee-menu-palette {
outline: none;
padding-top: 2px;
}
.ee-menu-palette-cell {
background: #F0F0F0 none repeat scroll 0 0;
border-color: #888 #AAA #AAA #888;
border-style: solid;
border-width: 1px;
}
.ee-menu-palette-cell-hover,
.ee-menu-palette-cell-selected {
background: #F0F0F0;
}
.ee-palette-item,
.ee-menu-palette-item {
background-image: url(//ssl.gstatic.com/editor/ee-palettes.gif);
}
@@ -0,0 +1,36 @@
/*
* Copyright 2007 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by the Apache License, Version 2.0.
* See the COPYING file for details.
*/
/**
* Styles for the Editor's Edit Link dialog.
*
* @author marcosalmeida@google.com (Marcos Almeida)
*/
.tr-link-dialog-explanation-text {
font-size: 83%;
margin-top: 15px;
}
.tr-link-dialog-target-input {
width: 98%; /* 98% prevents scroll bars in standards mode. */
/* Input boxes for URLs and email address should always be LTR. */
direction: ltr;
}
.tr-link-dialog-email-warning {
text-align: center;
color: #c00;
font-weight: bold;
}
.tr_pseudo-link {
color: #00c;
text-decoration: underline;
cursor: pointer;
}