2013-09-05 15:02:48 +01:00
|
|
|
/**
|
2017-01-11 15:24:33 +00:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-09-05 15:02:48 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
2015-07-11 23:43:45 +01:00
|
|
|
|
2015-07-13 11:26:29 +01:00
|
|
|
@import "colors";
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "mixins";
|
2013-09-05 15:02:48 +01:00
|
|
|
|
2015-07-13 11:26:29 +01:00
|
|
|
@import "forms";
|
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "jquery";
|
|
|
|
@import "bootstrap";
|
2016-11-15 00:19:04 +00:00
|
|
|
@import "ace";
|
2014-08-20 21:58:54 +01:00
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "dropdownMenu";
|
2014-08-20 21:58:54 +01:00
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "header";
|
|
|
|
@import "palette";
|
|
|
|
@import "sidebar";
|
|
|
|
@import "workspace";
|
|
|
|
@import "workspaceToolbar";
|
2014-11-12 13:21:39 +00:00
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "notifications";
|
2014-02-21 09:54:50 +00:00
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "editor";
|
|
|
|
@import "library";
|
2016-09-29 23:46:29 +01:00
|
|
|
@import "search";
|
2015-01-08 22:34:26 +00:00
|
|
|
|
2017-05-05 11:23:24 +01:00
|
|
|
@import "panels";
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "tabs";
|
|
|
|
@import "tab-config";
|
|
|
|
@import "tab-info";
|
2015-07-18 15:33:31 +01:00
|
|
|
@import "popover";
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "flow";
|
2016-08-04 16:49:36 +01:00
|
|
|
@import "palette-editor";
|
2016-10-09 22:02:24 +01:00
|
|
|
@import "diff";
|
2014-12-10 14:58:53 +00:00
|
|
|
|
2017-04-28 20:49:01 +01:00
|
|
|
@import "userSettings";
|
|
|
|
|
2014-12-10 14:58:53 +00:00
|
|
|
|
2016-08-09 10:41:26 +01:00
|
|
|
@import "ui/common/editableList";
|
|
|
|
@import "ui/common/searchBox";
|
|
|
|
@import "ui/common/typedInput";
|
2017-05-22 11:35:45 +01:00
|
|
|
@import "ui/common/nodeList";
|
|
|
|
@import "ui/common/checkboxSet";
|
2015-12-29 22:15:41 +00:00
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "dragdrop";
|
2014-02-24 23:35:11 +00:00
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
@import "keyboard";
|
2014-08-22 11:07:32 +01:00
|
|
|
|
2016-11-02 23:20:48 +00:00
|
|
|
@import "debug";
|
2014-11-23 22:25:25 +00:00
|
|
|
|
2015-04-09 14:46:29 +01:00
|
|
|
body {
|
2015-09-23 22:49:48 +01:00
|
|
|
font-size: 14px;
|
|
|
|
font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
|
|
padding-top: 100px;
|
2016-01-31 22:27:14 +00:00
|
|
|
background: $background-color;
|
2013-09-05 15:02:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#main-container {
|
|
|
|
position: absolute;
|
2015-07-11 23:43:45 +01:00
|
|
|
top:40px; left:0; bottom: 0; right:0;
|
2013-09-05 15:02:48 +01:00
|
|
|
overflow:hidden;
|
|
|
|
}
|
2014-01-25 22:31:43 +00:00
|
|
|
|
2014-02-20 17:31:40 +00:00
|
|
|
i.spinner {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
line-height: 14px;
|
|
|
|
vertical-align: text-top;
|
|
|
|
margin-top: 0px;
|
2015-04-01 23:24:47 +01:00
|
|
|
background: url(images/spin.svg) no-repeat 50% 50%;
|
2014-04-01 22:53:48 +01:00
|
|
|
background-size: contain
|
2014-02-20 17:31:40 +00:00
|
|
|
}
|
2015-07-14 15:59:56 +01:00
|
|
|
|
|
|
|
code, pre {
|
|
|
|
padding: 0 3px 2px;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #333333;
|
|
|
|
border-radius: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2016-09-17 15:29:54 +01:00
|
|
|
padding: 0px 3px 2px 3px;
|
|
|
|
margin: 1px;
|
2015-07-14 15:59:56 +01:00
|
|
|
color: #AD1625;
|
|
|
|
white-space: nowrap;
|
|
|
|
background-color: #f7f7f9;
|
|
|
|
border: 1px solid #e1e1e8;
|
2016-09-17 15:29:54 +01:00
|
|
|
border-radius: 2px;
|
2015-07-14 15:59:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
display: block;
|
|
|
|
padding: 9.5px;
|
|
|
|
margin: 0 0 10px;
|
|
|
|
line-height: 20px;
|
|
|
|
word-break: break-all;
|
|
|
|
word-wrap: break-word;
|
|
|
|
white-space: pre;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre code {
|
|
|
|
padding: 0;
|
|
|
|
color: inherit;
|
|
|
|
white-space: pre;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
}
|
2016-10-27 08:48:32 +01:00
|
|
|
|
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|