2015-02-09 03:32:06 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2015-02-09 04:02:08 +00:00
|
|
|
<script src="codemirror/lib/codemirror.js"></script>
|
|
|
|
<link rel="stylesheet" href="codemirror/lib/codemirror.css">
|
|
|
|
<script src="codemirror/mode/css/css.js"></script>
|
2015-02-25 04:05:00 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="codemirror/addon/dialog/dialog.css">
|
|
|
|
<link rel="stylesheet" href="codemirror/addon/search/matchesonscrollbar.css">
|
|
|
|
<script src="codemirror/addon/scroll/annotatescrollbar.js"></script>
|
|
|
|
<script src="codemirror/addon/search/matchesonscrollbar.js"></script>
|
|
|
|
<script src="codemirror/addon/dialog/dialog.js"></script>
|
|
|
|
<script src="codemirror/addon/search/searchcursor.js"></script>
|
|
|
|
<script src="codemirror/addon/search/search.js"></script>
|
2015-05-27 18:02:23 +00:00
|
|
|
<script src="codemirror/addon/comment/comment.js"></script>
|
2015-05-27 18:01:05 +00:00
|
|
|
<script src="codemirror/addon/selection/active-line.js"></script>
|
2015-02-25 04:05:00 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="codemirror/addon/fold/foldgutter.css" />
|
|
|
|
<script src="codemirror/addon/fold/foldcode.js"></script>
|
|
|
|
<script src="codemirror/addon/fold/foldgutter.js"></script>
|
|
|
|
<script src="codemirror/addon/fold/brace-fold.js"></script>
|
|
|
|
<script src="codemirror/addon/fold/comment-fold.js"></script>
|
|
|
|
|
|
|
|
<script src="codemirror/addon/edit/matchbrackets.js"></script>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="codemirror/addon/lint/lint.css" />
|
|
|
|
<script src="csslint/csslint.js"></script>
|
|
|
|
<script src="codemirror/addon/lint/lint.js"></script>
|
|
|
|
<script src="codemirror/addon/lint/css-lint.js"></script>
|
|
|
|
|
2015-03-02 23:59:36 +00:00
|
|
|
<link rel="stylesheet" href="codemirror/addon/hint/show-hint.css" />
|
|
|
|
<script src="codemirror/addon/hint/show-hint.js"></script>
|
|
|
|
<script src="codemirror/addon/hint/css-hint.js"></script>
|
|
|
|
|
2015-03-05 06:39:09 +00:00
|
|
|
<script src="codemirror/keymap/sublime.js"></script>
|
2015-04-23 01:53:30 +00:00
|
|
|
<script src="codemirror/keymap/emacs.js"></script>
|
|
|
|
<script src="codemirror/keymap/vim.js"></script>
|
2015-03-05 06:39:09 +00:00
|
|
|
|
2015-02-09 03:32:06 +00:00
|
|
|
<style type="text/css">
|
2015-02-25 04:05:00 +00:00
|
|
|
|
2015-02-09 03:32:06 +00:00
|
|
|
body {
|
2015-03-15 03:35:30 +00:00
|
|
|
margin: 0;
|
2015-03-24 02:55:16 +00:00
|
|
|
font: 9pt arial,sans-serif;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
/************ header ************/
|
2015-02-09 03:32:06 +00:00
|
|
|
#header {
|
|
|
|
height: 100%;
|
2015-03-24 02:55:16 +00:00
|
|
|
width: 15rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
position: fixed;
|
2015-03-15 03:35:30 +00:00
|
|
|
top: 0;
|
2015-03-24 02:55:16 +00:00
|
|
|
padding: 0.95rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
border-right: 1px dashed #AAA;
|
2015-03-24 02:55:16 +00:00
|
|
|
-webkit-box-shadow: 0 0 3rem -1.2rem black;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
2015-03-24 00:52:18 +00:00
|
|
|
#header h1 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2015-02-09 03:32:06 +00:00
|
|
|
#sections {
|
2015-03-24 02:55:16 +00:00
|
|
|
padding-left: 18rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
2015-02-09 04:02:08 +00:00
|
|
|
#sections h2 {
|
2015-03-24 02:55:16 +00:00
|
|
|
margin-top: 0.5rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
.aligned {
|
|
|
|
display: table-row;
|
|
|
|
}
|
2015-04-26 12:34:59 +00:00
|
|
|
.aligned > *:not(img) {
|
2015-03-24 02:55:16 +00:00
|
|
|
display: table-cell;
|
|
|
|
margin-top: 0.1rem;
|
|
|
|
min-height: 1.4rem;
|
|
|
|
}
|
2015-04-26 12:34:59 +00:00
|
|
|
img[src="help.png"] {
|
|
|
|
cursor: pointer;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 0.2rem;
|
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
input[type="checkbox"] {
|
|
|
|
margin-left: 0.1rem;
|
|
|
|
}
|
|
|
|
/* basic info */
|
2015-02-09 03:32:06 +00:00
|
|
|
#basic-info {
|
2015-03-24 02:55:16 +00:00
|
|
|
margin-bottom: 1rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
|
|
|
#name {
|
2015-03-24 02:55:16 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2015-05-15 16:46:21 +00:00
|
|
|
#basic-info-name {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
#url {
|
|
|
|
margin-left: 0.25rem;
|
|
|
|
}
|
|
|
|
#url:not([href^="http"]) {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
#enabled {
|
|
|
|
margin-left: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
#enabled-label {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
/* actions */
|
|
|
|
#actions > * {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
/* options */
|
|
|
|
#options [type="number"] {
|
|
|
|
max-width: 2.5rem;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
#options .option > * {
|
|
|
|
padding-right: 0.25rem;
|
|
|
|
}
|
|
|
|
/************ content ***********/
|
2015-02-09 03:32:06 +00:00
|
|
|
#sections > div {
|
2015-03-24 02:55:16 +00:00
|
|
|
margin: 0.7rem;
|
|
|
|
padding: 1rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
2015-03-24 00:25:39 +00:00
|
|
|
#sections > div:not(:first-of-type) {
|
2015-02-09 03:32:06 +00:00
|
|
|
border-top: 2px solid black;
|
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
#sections > div:only-of-type .remove-section {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-06-23 16:24:53 +00:00
|
|
|
#sections > div > button:not(:first-of-type) {
|
2015-07-19 15:27:19 +00:00
|
|
|
margin-left: 0.2rem;
|
2015-03-24 02:55:16 +00:00
|
|
|
}
|
2015-03-10 15:45:13 +00:00
|
|
|
.dirty > label::before {
|
|
|
|
content: "*";
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2015-05-22 12:28:05 +00:00
|
|
|
#sections {
|
|
|
|
counter-reset: codebox;
|
|
|
|
}
|
|
|
|
#sections > div > label::after {
|
|
|
|
counter-increment: codebox;
|
|
|
|
content: counter(codebox);
|
|
|
|
margin-left: 0.25rem;
|
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
/* code */
|
2015-02-09 03:32:06 +00:00
|
|
|
.code {
|
2015-03-24 02:55:16 +00:00
|
|
|
height: 10rem;
|
|
|
|
width: 40rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
2015-02-09 04:02:08 +00:00
|
|
|
.CodeMirror {
|
|
|
|
border: solid #CCC 1px;
|
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
.CodeMirror-lint-mark-warning {
|
|
|
|
background: none;
|
|
|
|
}
|
2015-03-25 13:08:28 +00:00
|
|
|
.CodeMirror-vscrollbar {
|
|
|
|
margin-bottom: 8px; /* make space for resize-grip */
|
|
|
|
}
|
2015-07-11 16:57:22 +00:00
|
|
|
.CodeMirror-dialog {
|
2015-03-26 07:11:18 +00:00
|
|
|
-webkit-animation: highlight 3s ease-out;
|
|
|
|
}
|
2015-04-08 17:11:22 +00:00
|
|
|
.CodeMirror-focused {
|
|
|
|
outline: -webkit-focus-ring-color auto 5px;
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
2015-07-11 14:35:04 +00:00
|
|
|
.CodeMirror-search-field {
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
.CodeMirror-jump-field {
|
|
|
|
width: 5em;
|
|
|
|
}
|
|
|
|
.CodeMirror-search-hint {
|
|
|
|
color: #888;
|
|
|
|
}
|
2015-03-26 07:11:18 +00:00
|
|
|
@-webkit-keyframes highlight {
|
|
|
|
from {
|
|
|
|
background-color: #ff9;
|
|
|
|
}
|
|
|
|
to {
|
2015-07-11 16:57:22 +00:00
|
|
|
background-color: none;
|
2015-03-26 07:11:18 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-25 13:08:28 +00:00
|
|
|
.resize-grip {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
content: " ";
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 99;
|
|
|
|
cursor: n-resize;
|
|
|
|
background: linear-gradient(-45deg, transparent 2px, rgba(0,0,0,0.5) 2px, transparent 3px, transparent 4.5px, rgba(0,0,0,0.5) 5px, transparent 5.5px);
|
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
/* applies-to */
|
2015-02-28 18:40:05 +00:00
|
|
|
.applies-to {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.applies-to label {
|
|
|
|
flex: auto;
|
2015-03-24 02:55:16 +00:00
|
|
|
margin-top: 0.2rem;
|
2015-02-28 18:40:05 +00:00
|
|
|
}
|
2015-02-09 03:32:06 +00:00
|
|
|
.applies-to ul {
|
2015-02-28 18:40:05 +00:00
|
|
|
flex: auto;
|
|
|
|
flex-grow: 99;
|
2015-02-09 03:32:06 +00:00
|
|
|
margin: 0;
|
2015-02-28 18:40:05 +00:00
|
|
|
padding: 0;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
|
|
|
.applies-to li {
|
2015-02-28 18:40:05 +00:00
|
|
|
display: flex;
|
2015-02-09 03:32:06 +00:00
|
|
|
list-style-type: none;
|
2015-02-28 18:40:05 +00:00
|
|
|
align-items: center;
|
2015-03-24 02:55:16 +00:00
|
|
|
margin-bottom: 0.35rem;
|
2015-02-28 18:40:05 +00:00
|
|
|
}
|
2015-03-23 19:38:03 +00:00
|
|
|
.applies-to li > *:not(button) {
|
2015-02-28 18:40:05 +00:00
|
|
|
flex: auto;
|
2015-03-24 02:55:16 +00:00
|
|
|
min-height: 1.4rem;
|
|
|
|
margin-left: 0.35rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
|
|
|
.applies-to li .add-applies-to {
|
2015-02-28 18:40:05 +00:00
|
|
|
visibility: hidden;
|
|
|
|
text-align: left;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
|
|
|
.applies-to li:last-child .add-applies-to {
|
2015-02-28 18:40:05 +00:00
|
|
|
visibility: visible
|
|
|
|
}
|
|
|
|
.applies-to li .add-applies-to:first-child {
|
2015-03-24 02:55:16 +00:00
|
|
|
margin-left: 1rem;
|
2015-02-28 18:40:05 +00:00
|
|
|
}
|
|
|
|
.applies-to li .applies-value {
|
|
|
|
flex-grow: 99;
|
2015-03-24 02:55:16 +00:00
|
|
|
padding-left: 0.2rem;
|
2015-02-09 03:32:06 +00:00
|
|
|
}
|
|
|
|
.applies-to img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
2015-04-26 12:34:59 +00:00
|
|
|
/************ help popup ************/
|
|
|
|
#help-popup {
|
|
|
|
top: 3rem;
|
|
|
|
right: 3rem;
|
|
|
|
max-width: 50vw;
|
|
|
|
position: fixed;
|
|
|
|
display: none;
|
|
|
|
background-color: white;
|
|
|
|
box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.5);
|
|
|
|
padding: 0.5rem;
|
2015-07-13 17:44:46 +00:00
|
|
|
z-index: 99;
|
2015-04-26 12:34:59 +00:00
|
|
|
}
|
2015-08-28 16:41:44 +00:00
|
|
|
#help-popup.big {
|
|
|
|
max-width: 100%;
|
|
|
|
left: 3rem;
|
|
|
|
}
|
|
|
|
#help-popup.big .CodeMirror {
|
|
|
|
min-height: 2rem;
|
|
|
|
height: 70vh;
|
|
|
|
}
|
2015-04-26 12:34:59 +00:00
|
|
|
#help-popup .title {
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: rgba(0,0,0,0.05);
|
|
|
|
margin: -0.5rem -0.5rem 0.5rem;
|
|
|
|
padding: 0.5rem;
|
|
|
|
}
|
|
|
|
#help-popup .contents {
|
|
|
|
max-height: calc(100vh - 8rem);
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
#help-popup .close-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
2015-06-24 08:55:24 +00:00
|
|
|
border: 8px solid transparent;
|
2015-04-26 12:34:59 +00:00
|
|
|
position: absolute;
|
2015-06-24 08:55:24 +00:00
|
|
|
right: 4px;
|
|
|
|
top: 4px;
|
|
|
|
background: linear-gradient(-45deg, transparent 5px, black 5px, black 6px, transparent 6.5px) no-repeat, linear-gradient(45deg, transparent 5px, black 5px, black 6px, transparent 6.5px) no-repeat;
|
2015-04-26 12:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.keymap-list {
|
|
|
|
font-size: 85%;
|
|
|
|
line-height: 1.0;
|
|
|
|
border-spacing: 0;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
.keymap-list input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.keymap-list tr:nth-child(odd) {
|
|
|
|
background-color: rgba(0, 0, 0, 0.07);
|
|
|
|
}
|
|
|
|
.keymap-list td:first-child {
|
|
|
|
white-space: nowrap;
|
|
|
|
font-family: monospace;
|
|
|
|
padding-right: 0.5rem;
|
|
|
|
}
|
2015-03-24 00:39:21 +00:00
|
|
|
|
2015-07-13 17:44:46 +00:00
|
|
|
#help-popup button[name^="import"] {
|
|
|
|
line-height: 1.5rem;
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
margin: 0.5rem 0 0 0.5rem;
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0.5;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
#help-popup.ready button[name^="import"] {
|
|
|
|
pointer-events: all;
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
2015-05-22 12:28:05 +00:00
|
|
|
/************ lint ************/
|
|
|
|
#lint {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#lint > div {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
#lint table {
|
|
|
|
font-size: 100%;
|
|
|
|
border-spacing: 0;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
line-height: 1.0;
|
|
|
|
}
|
|
|
|
#lint table:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
#lint caption {
|
|
|
|
text-align: left;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
#lint tbody {
|
|
|
|
font-size: 85%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#lint tr:hover {
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
#lint td[role="severity"] {
|
|
|
|
font-size: 0;
|
|
|
|
width: 16px;
|
|
|
|
padding-right: 0.25rem;
|
|
|
|
}
|
|
|
|
#lint td[role="line"], #lint td[role="sep"] {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
#lint td[role="col"] {
|
|
|
|
text-align: left;
|
|
|
|
padding-right: 0.25rem;
|
|
|
|
}
|
|
|
|
#lint td[role="message"] {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2015-06-23 16:24:53 +00:00
|
|
|
/************ CSS beautifier ************/
|
|
|
|
.beautify-options {
|
|
|
|
white-space: nowrap;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
.beautify-options div {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.beautify-options div[newline="true"] + div {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
.beautify-options div[newline="true"] + div span[indent] {
|
|
|
|
padding-left: 2rem;
|
|
|
|
}
|
2015-06-22 19:03:28 +00:00
|
|
|
.beautify-options:after {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
content: " ";
|
|
|
|
height: 1rem;
|
|
|
|
}
|
2015-06-23 16:24:53 +00:00
|
|
|
.beautify-options span {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.beautify-options select {
|
|
|
|
border: none;
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
|
2015-03-24 02:55:16 +00:00
|
|
|
/************ reponsive layouts ************/
|
2015-02-19 17:29:57 +00:00
|
|
|
@media(max-width:737px) {
|
2015-02-18 15:57:33 +00:00
|
|
|
#header {
|
2015-03-24 02:55:16 +00:00
|
|
|
width: auto;
|
2015-02-18 15:57:33 +00:00
|
|
|
height: auto;
|
|
|
|
position: inherit;
|
2015-02-19 17:29:57 +00:00
|
|
|
border-right: none;
|
2015-03-24 02:55:16 +00:00
|
|
|
border-bottom: 1px dashed #AAA;
|
2015-03-20 09:28:00 +00:00
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
#header section:not(:last-child) {
|
|
|
|
margin-bottom: 0.4rem;
|
2015-03-20 09:28:00 +00:00
|
|
|
}
|
|
|
|
#header input[type="checkbox"] {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2015-03-24 00:52:18 +00:00
|
|
|
h2 {
|
2015-03-20 09:28:00 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2015-03-24 00:25:39 +00:00
|
|
|
#basic-info {
|
|
|
|
display: flex;
|
2015-03-24 02:55:16 +00:00
|
|
|
align-items: baseline;
|
2015-03-20 09:28:00 +00:00
|
|
|
}
|
2015-03-24 00:25:39 +00:00
|
|
|
#basic-info > * {
|
|
|
|
flex: auto;
|
|
|
|
}
|
|
|
|
#basic-info > *:first-child {
|
|
|
|
flex-grow: 99;
|
|
|
|
display: flex;
|
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
#basic-info > *:not(:last-child) {
|
|
|
|
margin-right: 0.8rem;
|
|
|
|
}
|
2015-03-24 00:25:39 +00:00
|
|
|
#basic-info #name {
|
|
|
|
width: auto;
|
|
|
|
flex-grow: 99;
|
|
|
|
}
|
|
|
|
#actions {
|
2015-03-24 02:55:16 +00:00
|
|
|
margin-top: 1rem;
|
2015-03-24 00:25:39 +00:00
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
#actions > * {
|
|
|
|
display: inline-block;
|
2015-03-20 09:28:00 +00:00
|
|
|
}
|
|
|
|
#options {
|
2015-03-24 00:39:21 +00:00
|
|
|
-webkit-column-count: 2;
|
2015-03-20 09:28:00 +00:00
|
|
|
}
|
2015-04-26 12:34:59 +00:00
|
|
|
#options .aligned > *:not(img) {
|
2015-03-24 02:55:16 +00:00
|
|
|
margin: 1px 0 0 0; /* workaround the flowing-padding column bug in webkit */
|
|
|
|
padding-right: 0.4rem;
|
|
|
|
vertical-align: baseline;
|
|
|
|
min-height: 1.4rem;
|
|
|
|
}
|
2015-03-24 00:39:21 +00:00
|
|
|
.option {
|
|
|
|
-webkit-column-break-inside: avoid;
|
2015-03-20 09:28:00 +00:00
|
|
|
}
|
2015-03-24 00:39:21 +00:00
|
|
|
.option label {
|
2015-03-24 02:55:16 +00:00
|
|
|
line-height: 1.25rem;
|
2015-03-24 00:39:21 +00:00
|
|
|
margin: 0;
|
2015-02-18 15:57:33 +00:00
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
#options [type="number"] {
|
|
|
|
text-align: left; /* workaround the column flow bug in webkit */
|
|
|
|
padding-left: 0.2rem;
|
|
|
|
}
|
|
|
|
#options #tabSize-label {
|
|
|
|
position: relative;
|
|
|
|
top: 0.2rem;
|
|
|
|
}
|
2015-02-18 15:57:33 +00:00
|
|
|
#sections {
|
2015-03-15 03:35:30 +00:00
|
|
|
padding-left: 0;
|
2015-02-19 17:29:57 +00:00
|
|
|
}
|
2015-02-19 17:42:34 +00:00
|
|
|
#sections > div {
|
2015-03-15 03:35:30 +00:00
|
|
|
padding: 0;
|
2015-02-19 17:42:34 +00:00
|
|
|
}
|
2015-03-24 02:55:16 +00:00
|
|
|
#sections > *:not(h2) {
|
|
|
|
padding-left: 0.4rem;
|
2015-02-19 17:29:57 +00:00
|
|
|
}
|
2015-04-11 10:28:25 +00:00
|
|
|
.applies-type {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width:500px) {
|
|
|
|
#options {
|
|
|
|
-webkit-column-count: 1;
|
|
|
|
}
|
|
|
|
#options #tabSize-label {
|
|
|
|
position: static;
|
|
|
|
}
|
2015-03-08 06:21:43 +00:00
|
|
|
}
|
2015-02-09 03:32:06 +00:00
|
|
|
</style>
|
2015-04-11 10:28:25 +00:00
|
|
|
<link id="cm-theme" rel="stylesheet">
|
2015-07-19 15:27:19 +00:00
|
|
|
|
|
|
|
<template data-id="appliesTo">
|
|
|
|
<li>
|
|
|
|
<select name="applies-type" class="applies-type style-contributor">
|
|
|
|
<option value="url" i18n-text="appliesUrlOption"></option>
|
|
|
|
<option value="url-prefix" i18n-text="appliesUrlPrefixOption"></option>
|
|
|
|
<option value="domain" i18n-text="appliesDomainOption"></option>
|
|
|
|
<option value="regexp" i18n-text="appliesRegexpOption"></option>
|
|
|
|
</select>
|
|
|
|
<input name="applies-value" class="applies-value style-contributor">
|
|
|
|
<button class="remove-applies-to" i18n-text="appliesRemove"></button>
|
|
|
|
<button class="add-applies-to" i18n-text="appliesAdd"></button>
|
|
|
|
</li>
|
|
|
|
</template>
|
|
|
|
<template data-id="appliesToEverything">
|
|
|
|
<li class="applies-to-everything" i18n-html="appliesToEverything">
|
|
|
|
<button class="add-applies-to" i18n-text="appliesSpecify"></button>
|
|
|
|
</li>
|
|
|
|
</template>
|
|
|
|
<template data-id="section">
|
|
|
|
<div>
|
|
|
|
<label i18n-text="sectionCode"></label>
|
|
|
|
<textarea class="code"></textarea>
|
|
|
|
<br>
|
|
|
|
<div class="applies-to">
|
|
|
|
<label i18n-text="appliesLabel">
|
|
|
|
<img class="applies-to-help" src="help.png" i18n-alt="helpAlt">
|
|
|
|
</label>
|
|
|
|
<ul class="applies-to-list"></ul>
|
|
|
|
</div>
|
|
|
|
<button class="remove-section" i18n-text="sectionRemove"></button>
|
|
|
|
<button class="add-section" i18n-text="sectionAdd"></button>
|
|
|
|
<button class="beautify-section" i18n-text="styleBeautify"></button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template data-id="find">
|
|
|
|
<span i18n-text="search">: <input type="text" class="CodeMirror-search-field">
|
|
|
|
<span class="CodeMirror-search-hint">(<span i18n-text="searchRegexp"></span>)</span>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
<template data-id="replace">
|
|
|
|
<span i18n-text="replace">: <input type="text" class="CodeMirror-search-field">
|
|
|
|
<span class="CodeMirror-search-hint">(<span i18n-text="searchRegexp"></span>)</span>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
<template data-id="replaceAll">
|
|
|
|
<span i18n-text="replaceAll">: <input type="text" class="CodeMirror-search-field">
|
|
|
|
<span class="CodeMirror-search-hint">(<span i18n-text="searchRegexp"></span>)</span>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
<template data-id="replaceWith">
|
|
|
|
<span i18n-text="replaceWith">: <input type="text" class="CodeMirror-search-field">
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
<template data-id="replaceConfirm">
|
|
|
|
<span i18n-text="replace">?
|
|
|
|
<button i18n-text="confirmYes"></button>
|
|
|
|
<button i18n-text="confirmNo"></button>
|
|
|
|
<button i18n-text="confirmStop"></button>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
<template data-id="jumpToLine">
|
|
|
|
<span i18n-text="editGotoLine">: <input class="CodeMirror-jump-field" type="text"></span>
|
|
|
|
</template>
|
|
|
|
|
2015-02-09 04:02:08 +00:00
|
|
|
<script src="storage.js"></script>
|
|
|
|
<script src="messaging.js"></script>
|
2015-02-09 03:32:06 +00:00
|
|
|
<script src="localization.js"></script>
|
2015-02-09 04:25:35 +00:00
|
|
|
<script src="apply.js"></script>
|
2015-04-11 10:28:25 +00:00
|
|
|
<script src="edit.js"></script>
|
2015-02-09 03:32:06 +00:00
|
|
|
</head>
|
|
|
|
<body id="stylish-edit">
|
|
|
|
<div id="header">
|
2015-03-27 10:30:07 +00:00
|
|
|
<h1 id="heading"> </h1> <!-- nbsp allocates the actual height which prevents page shift -->
|
2015-02-09 03:32:06 +00:00
|
|
|
<section id="basic-info">
|
2015-03-24 02:55:16 +00:00
|
|
|
<div id="basic-info-name">
|
2015-03-27 10:30:07 +00:00
|
|
|
<input id="name" class="style-contributor" i18n-placeholder="styleMissingName">
|
2015-05-15 16:46:21 +00:00
|
|
|
<a id="url" target="_blank"><img src="world_go.png"></a>
|
2015-03-24 02:55:16 +00:00
|
|
|
</div>
|
|
|
|
<div id="basic-info-enabled">
|
|
|
|
<input type="checkbox" id="enabled" class="style-contributor">
|
2015-03-27 10:30:07 +00:00
|
|
|
<label for="enabled" id="enabled-label" i18n-text="styleEnabledLabel"></label>
|
2015-03-24 02:55:16 +00:00
|
|
|
</div>
|
2015-02-09 03:32:06 +00:00
|
|
|
</section>
|
2015-03-20 09:28:00 +00:00
|
|
|
<section id="actions">
|
2015-07-13 17:44:46 +00:00
|
|
|
<div>
|
|
|
|
<button id="save-button" title="Ctrl-S" i18n-text="styleSaveLabel"></button>
|
|
|
|
<button id="beautify" i18n-text="styleBeautify"></button>
|
|
|
|
<a href="manage.html"><button id="cancel-button" i18n-text="styleCancelEditLabel"></button></a>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2 id="mozilla-format-heading" i18n-text="styleMozillaFormatHeading"><img id="to-mozilla-help" src="help.png"></h2>
|
|
|
|
<button id="from-mozilla" i18n-text="importLabel"></button>
|
|
|
|
<button id="to-mozilla" i18n-text="exportLabel"></button>
|
|
|
|
</div>
|
2015-03-20 09:28:00 +00:00
|
|
|
</section>
|
|
|
|
<section id="options">
|
2015-03-27 10:30:07 +00:00
|
|
|
<h2 id="options-heading" i18n-text="optionsHeading"></h2>
|
2015-03-20 09:28:00 +00:00
|
|
|
<div class="option">
|
|
|
|
<input data-option="lineWrapping" id="editor.lineWrapping" type="checkbox">
|
2015-03-27 10:30:07 +00:00
|
|
|
<label id="lineWrapping-label" for="editor.lineWrapping" i18n-text="cm_lineWrapping"></label>
|
2015-03-20 09:28:00 +00:00
|
|
|
</div>
|
|
|
|
<div class="option">
|
|
|
|
<input data-option="smartIndent" id="editor.smartIndent" type="checkbox">
|
2015-03-27 10:30:07 +00:00
|
|
|
<label id="smartIndent-label" for="editor.smartIndent" i18n-text="cm_smartIndent"></label>
|
2015-03-20 09:28:00 +00:00
|
|
|
</div>
|
|
|
|
<div class="option">
|
|
|
|
<input data-option="indentWithTabs" id="editor.indentWithTabs" type="checkbox">
|
2015-03-27 10:30:07 +00:00
|
|
|
<label id="indentWithTabs-label" for="editor.indentWithTabs" i18n-text="cm_indentWithTabs"></label>
|
2015-03-20 09:28:00 +00:00
|
|
|
</div>
|
|
|
|
<div class="option aligned">
|
2015-03-27 10:30:07 +00:00
|
|
|
<label id="tabSize-label" for="editor.tabSize" i18n-text="cm_tabSize"></label>
|
2015-03-20 09:28:00 +00:00
|
|
|
<input data-option="tabSize" id="editor.tabSize" type="number" min="0">
|
|
|
|
</div>
|
|
|
|
<div class="option aligned">
|
2015-03-27 10:30:07 +00:00
|
|
|
<label id="keyMap-label" for="editor.keyMap" i18n-text="cm_keyMap"></label>
|
2015-03-20 09:28:00 +00:00
|
|
|
<select data-option="keyMap" id="editor.keyMap"></select>
|
2015-04-26 12:34:59 +00:00
|
|
|
<img id="keyMap-help" src="help.png" i18n-alt="helpAlt">
|
2015-03-20 09:28:00 +00:00
|
|
|
</div>
|
2015-04-11 10:28:25 +00:00
|
|
|
<div class="option aligned">
|
|
|
|
<label id="theme-label" for="editor.theme" i18n-text="cm_theme"></label>
|
|
|
|
<select data-option="theme" id="editor.theme"></select>
|
|
|
|
</div>
|
2015-03-20 09:28:00 +00:00
|
|
|
</section>
|
2015-05-22 12:28:05 +00:00
|
|
|
<section id="lint"><h2 i18n-text="issues"><img id="lint-help" src="help.png" i18n-alt="helpAlt"></h2><div></div></section>
|
2015-02-09 03:32:06 +00:00
|
|
|
</div>
|
|
|
|
<section id="sections">
|
2015-03-27 10:30:07 +00:00
|
|
|
<h2><span id="sections-heading" i18n-text="styleSectionsTitle"></span><img id="sections-help" src="help.png" i18n-alt="helpAlt"></h2>
|
2015-02-09 03:32:06 +00:00
|
|
|
</section>
|
2015-04-26 12:34:59 +00:00
|
|
|
<div id="help-popup">
|
|
|
|
<div class="title"></div><div class="close-icon"></div>
|
|
|
|
<div class="contents"></div>
|
|
|
|
</div>
|
2015-02-09 03:32:06 +00:00
|
|
|
</body>
|
|
|
|
</html>
|