2015-05-14 16:45:37 +03:00
|
|
|
/* Settings
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-17 17:10:02 +03:00
|
|
|
.gh-setting-header {
|
|
|
|
margin: 3vw 0 5px 0;
|
|
|
|
color: var(--midgrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 25px 0;
|
|
|
|
border-top: var(--lightgrey) 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-content {
|
2017-02-21 11:18:15 +03:00
|
|
|
width: 100%;
|
|
|
|
margin: 0 50px 0 0;
|
2017-02-17 17:10:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-title {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
font-size: 1.8rem;
|
|
|
|
line-height: 1.15em;
|
|
|
|
font-weight: 600;
|
|
|
|
color: var(--darkgrey);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-desc {
|
|
|
|
line-height: 1.3em;
|
|
|
|
color: var(--midgrey);
|
|
|
|
font-weight: 200;
|
|
|
|
letter-spacing: 0.3px;
|
|
|
|
}
|
|
|
|
|
2017-05-23 11:50:04 +03:00
|
|
|
.gh-setting-error {
|
|
|
|
margin-top: 1em;
|
|
|
|
line-height: 1.3em;
|
|
|
|
color: var(--red);
|
|
|
|
font-weight: 200;
|
|
|
|
letter-spacing: 0.3px;
|
|
|
|
}
|
|
|
|
|
2017-02-17 17:10:02 +03:00
|
|
|
.gh-setting-action {
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin: 1px 0 0 0;
|
|
|
|
}
|
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
/* Images */
|
|
|
|
|
2017-05-23 11:50:04 +03:00
|
|
|
.gh-setting-action-smallimg {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
.gh-setting-action-smallimg img {
|
2017-05-07 20:14:29 +03:00
|
|
|
height: 50px;
|
|
|
|
width: auto;
|
2017-02-27 09:31:01 +03:00
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-action-largeimg img {
|
2017-05-07 20:14:29 +03:00
|
|
|
height: 130px;
|
|
|
|
width: auto;
|
2017-02-27 09:31:01 +03:00
|
|
|
max-width: 250px;
|
|
|
|
}
|
|
|
|
|
2017-05-07 21:07:46 +03:00
|
|
|
.gh-setting-action-smallimg img:hover,
|
|
|
|
.gh-setting-action-largeimg img:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-05-23 11:50:04 +03:00
|
|
|
.gh-setting-action-smallimg-delete,
|
|
|
|
.gh-setting-action-largeimg-delete {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
color: var(--midgrey);
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-action-smallimg-delete:hover,
|
|
|
|
.gh-setting-action-largeimg-delete:hover {
|
|
|
|
color: var(--red);
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-action .gh-progress-container {
|
|
|
|
width: 113px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-action .gh-progress-container-progress {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-action .gh-progress-bar {
|
|
|
|
height: 9px;
|
|
|
|
}
|
2017-05-07 21:07:46 +03:00
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
/* Checkboxes */
|
|
|
|
|
2017-02-17 17:10:02 +03:00
|
|
|
.gh-setting-action .input-toggle-component {
|
|
|
|
float: none;
|
|
|
|
margin-right: 0;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-setting-action .input-toggle-component:before {
|
|
|
|
top: 7px;
|
|
|
|
left: 6px;
|
|
|
|
width: 15px;
|
|
|
|
height: 9px;
|
|
|
|
}
|
|
|
|
|
2017-02-21 11:18:15 +03:00
|
|
|
.gh-setting-content-extended {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
|
|
|
|
/* Navigation
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
.gh-blognav-container {
|
|
|
|
padding: 25px 0;
|
|
|
|
border-top: var(--lightgrey) 1px solid;
|
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav {
|
2017-02-27 09:31:01 +03:00
|
|
|
margin: 0 -24px 0 -16px;
|
|
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.gh-blognav { margin: 20px 0; }
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 10px;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-09-16 20:02:06 +03:00
|
|
|
.gh-blognav-item--error {
|
|
|
|
margin-bottom: calc(1em + 10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-blognav-item .response {
|
|
|
|
position: absolute;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-grab {
|
|
|
|
padding: 0 16px 0 0;
|
|
|
|
width: 16px;
|
|
|
|
text-indent: -4px;
|
2015-05-14 16:45:37 +03:00
|
|
|
cursor: move;
|
|
|
|
}
|
|
|
|
|
2017-04-14 19:22:14 +03:00
|
|
|
.gh-blognav-grab svg {
|
|
|
|
width: 16px;
|
2017-06-02 00:02:03 +03:00
|
|
|
height: 16px;
|
2017-04-14 19:22:14 +03:00
|
|
|
fill: color(var(--midgrey) l(+15%));
|
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-line {
|
|
|
|
display: flex;
|
2015-05-14 16:45:37 +03:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-label {
|
|
|
|
flex-grow: 1;
|
|
|
|
margin-right: 10px;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-url {
|
|
|
|
flex-grow: 3;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-delete {
|
|
|
|
padding: 8px 0 8px 10px;
|
2017-04-14 19:22:14 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-blognav-delete svg {
|
|
|
|
fill: color(var(--midgrey) l(+15%));
|
|
|
|
height: 14px;
|
2017-06-02 00:02:03 +03:00
|
|
|
width: 14px;
|
2017-04-14 19:22:14 +03:00
|
|
|
transition: fill 0.1s linear;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-04-14 19:22:14 +03:00
|
|
|
.gh-blognav-delete svg:hover,
|
|
|
|
.gh-blognav-delete svg:focus {
|
|
|
|
fill: var(--red);
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-add {
|
2017-02-27 09:31:01 +03:00
|
|
|
margin-right: -1px;
|
|
|
|
margin-left: 9px;
|
2015-05-25 16:17:14 +03:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2015-05-14 16:45:37 +03:00
|
|
|
background: var(--green);
|
2015-05-16 14:43:12 +03:00
|
|
|
border-radius: 2px;
|
2015-05-14 16:45:37 +03:00
|
|
|
transition: background 0.1s linear;
|
2017-04-14 19:22:14 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-blognav-add svg {
|
|
|
|
fill: #fff;
|
|
|
|
height: 9px;
|
|
|
|
width: 9px;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-25 16:17:14 +03:00
|
|
|
.gh-blognav-add:hover,
|
|
|
|
.gh-blognav-add:focus {
|
2015-05-14 16:45:37 +03:00
|
|
|
background: color(var(--green) lightness(-10%));
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:16:18 +03:00
|
|
|
.gh-blognav-item:not(.gh-blognav-item--sortable) {
|
2017-02-17 08:50:07 +03:00
|
|
|
padding-left: 16px;
|
2015-05-25 16:17:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove space between inputs on smaller screens */
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
.gh-blognav-label {
|
|
|
|
margin-right: -1px;
|
|
|
|
}
|
|
|
|
.gh-blognav-label input {
|
2017-02-27 09:31:01 +03:00
|
|
|
border-right-color: color(var(--lightgrey) l(-5%) s(-10%));
|
2015-05-25 16:17:14 +03:00
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
}
|
|
|
|
.gh-blognav-url input {
|
2017-02-27 09:31:01 +03:00
|
|
|
border-left-color: color(var(--lightgrey) l(-5%) s(-10%));
|
2015-05-25 16:17:14 +03:00
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
}
|
|
|
|
.gh-blognav-item input:focus {
|
|
|
|
position: relative;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-17 08:50:07 +03:00
|
|
|
/* Code injection
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2015-05-20 19:52:55 +03:00
|
|
|
.settings-code {
|
2015-05-14 16:45:37 +03:00
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
|
2015-05-20 19:52:55 +03:00
|
|
|
.settings-code p {
|
2015-05-14 16:45:37 +03:00
|
|
|
margin: 0 0 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-code code {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-code-editor {
|
2015-05-20 19:52:55 +03:00
|
|
|
padding: 0;
|
2015-05-14 16:45:37 +03:00
|
|
|
min-width: 250px;
|
2015-05-16 14:43:12 +03:00
|
|
|
min-height: 300px;
|
2015-05-14 16:45:37 +03:00
|
|
|
max-width: 680px;
|
2015-05-16 14:43:12 +03:00
|
|
|
width: 100%;
|
2015-05-14 16:45:37 +03:00
|
|
|
height: auto;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-code-editor .CodeMirror {
|
2017-05-29 14:16:47 +03:00
|
|
|
padding: 0;
|
|
|
|
border: none;
|
2015-05-14 16:45:37 +03:00
|
|
|
border-radius: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-code-editor .cm-s-xq-light span.cm-meta {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Labs
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
#startupload {
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 400px) {
|
|
|
|
#startupload {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|
2016-08-17 18:01:46 +03:00
|
|
|
|
2017-05-24 16:36:59 +03:00
|
|
|
.gh-import-errors {
|
|
|
|
position: relative;
|
|
|
|
padding: 12px 10px 14px 10px;
|
|
|
|
border: 1px solid var(--lightgrey);
|
|
|
|
border-left-width: 5px;
|
|
|
|
border-left-color: var(--red);
|
|
|
|
color: var(--midgrey);
|
|
|
|
line-height: 1.4em;
|
|
|
|
letter-spacing: 0.2px;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-import-errors-warning {
|
|
|
|
border-left-color: var(--orange);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-import-errors-title {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
font-size: 1.8rem;
|
|
|
|
line-height: 1.15em;
|
|
|
|
font-weight: 600;
|
|
|
|
color: var(--red);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-import-errors-warning .gh-import-errors-title {
|
|
|
|
color: var(--orange);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-import-error {
|
|
|
|
margin-bottom: 1.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-import-error:last-of-type {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-import-error-message {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
font-weight: 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-import-error-entry pre {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
2016-08-17 18:01:46 +03:00
|
|
|
|
|
|
|
/* Themes
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
.gh-themes-container {
|
|
|
|
padding: 25px 0;
|
|
|
|
border-top: var(--lightgrey) 1px solid;
|
2016-08-17 18:01:46 +03:00
|
|
|
}
|
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
.gh-themes-uploadbtn {
|
|
|
|
margin-top: 25px;
|
2016-08-17 18:01:46 +03:00
|
|
|
}
|
2017-02-27 09:31:01 +03:00
|
|
|
/*Errors */
|
2016-08-24 21:22:20 +03:00
|
|
|
|
|
|
|
.theme-validation-errors {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-validation-errors p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-validation-errors > li {
|
|
|
|
margin-bottom: 1.2em;
|
|
|
|
list-style: none;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-validation-errors > li > ul {
|
|
|
|
margin-top: 0.2em;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|