2017-04-12 22:52:52 +08:00
|
|
|
// Customise area
|
2018-07-03 11:14:53 +08:00
|
|
|
|
|
|
|
// email templates
|
|
|
|
|
|
|
|
.content-editor {
|
|
|
|
min-height: 500px;
|
|
|
|
float: left;
|
|
|
|
width: 54.054%;
|
|
|
|
margin-left: 1.8018%;
|
|
|
|
p.description {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
.controls {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
textarea.plain {
|
|
|
|
width: 98%;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
.d-editor-input {
|
|
|
|
width: 98%;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
.ace-wrapper {
|
|
|
|
position: relative;
|
|
|
|
height: 600px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.ace_editor {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.email-template {
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-24 09:30:00 +08:00
|
|
|
.create-theme-modal {
|
|
|
|
div.input {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
.label {
|
|
|
|
width: 20%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
2018-08-31 03:23:15 +08:00
|
|
|
|
|
|
|
.error {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin-customize.admin-customize-themes {
|
|
|
|
.customize-themes-header {
|
|
|
|
border-bottom: 1px solid $primary-low;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
color: $primary-medium;
|
|
|
|
flex-grow: 1;
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-09-21 10:05:08 +08:00
|
|
|
|
2018-09-17 23:58:16 +08:00
|
|
|
.create-actions {
|
|
|
|
margin-left: auto;
|
2018-08-31 03:23:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.admin-container {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2018-09-08 21:24:11 +08:00
|
|
|
.error-message {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
.fa {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.raw-error {
|
|
|
|
background-color: $primary-very-low;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
2018-08-24 09:30:00 +08:00
|
|
|
}
|
|
|
|
|
2017-10-31 02:13:49 +08:00
|
|
|
.admin-customize {
|
2017-04-18 03:56:13 +08:00
|
|
|
h1 {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
input {
|
|
|
|
margin-bottom: 0;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-down-2;
|
2017-12-22 06:13:06 +08:00
|
|
|
}
|
|
|
|
.btn-small {
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-down-2;
|
2017-04-18 03:56:13 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-20 03:24:00 +08:00
|
|
|
|
2017-04-20 04:46:28 +08:00
|
|
|
.field-error {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $quaternary-low;
|
2017-04-20 04:46:28 +08:00
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2017-04-20 03:24:00 +08:00
|
|
|
.edit-main-nav {
|
2018-06-08 17:49:31 +08:00
|
|
|
.nav-pills:after,
|
|
|
|
.nav-pills:before {
|
2017-04-20 03:24:00 +08:00
|
|
|
display: inline;
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
.show-overidden {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
.admin-container {
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
.admin-footer {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2018-02-26 18:42:57 +08:00
|
|
|
.color-schemes li {
|
2017-04-19 23:06:06 +08:00
|
|
|
.fa {
|
|
|
|
margin-right: 6px;
|
2017-10-11 04:07:46 +08:00
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
2017-04-19 23:06:06 +08:00
|
|
|
}
|
|
|
|
}
|
2017-04-12 22:52:52 +08:00
|
|
|
.show-current-style {
|
2018-09-10 02:48:08 +08:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
|
2018-08-31 03:23:15 +08:00
|
|
|
.url {
|
|
|
|
margin-bottom: 10px;
|
2017-04-12 22:52:52 +08:00
|
|
|
}
|
2018-08-31 03:23:15 +08:00
|
|
|
|
|
|
|
.title {
|
|
|
|
font-size: $font-up-4;
|
|
|
|
font-weight: bold;
|
2017-04-12 22:52:52 +08:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2018-08-31 03:23:15 +08:00
|
|
|
.about-url,
|
|
|
|
license-url {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.mini-title {
|
|
|
|
font-size: $font-up-1;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 7px;
|
|
|
|
}
|
|
|
|
.control-unit {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
.control {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.description {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
2018-08-24 09:30:00 +08:00
|
|
|
}
|
2018-09-07 02:56:00 +08:00
|
|
|
.add-component-button {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2018-09-10 02:48:08 +08:00
|
|
|
.themes-intro {
|
|
|
|
display: inline-block;
|
|
|
|
width: 51%;
|
|
|
|
vertical-align: top;
|
|
|
|
margin-left: 20%;
|
|
|
|
margin-top: 60px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 10%;
|
|
|
|
vertical-align: top;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
.content-wrapper {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 65%;
|
|
|
|
h1 {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.external-link {
|
|
|
|
display: inline-block;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
}
|
2018-08-24 09:30:00 +08:00
|
|
|
.themes-list {
|
2018-08-31 03:23:15 +08:00
|
|
|
border-right: 1px solid $primary-low;
|
|
|
|
border-bottom: 1px solid $primary-low;
|
2018-09-10 02:48:08 +08:00
|
|
|
display: inline-block;
|
2018-09-07 02:56:00 +08:00
|
|
|
overflow: hidden;
|
2018-08-24 09:30:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.themes-list-header {
|
2018-08-31 03:23:15 +08:00
|
|
|
width: 100%;
|
|
|
|
border-bottom: 1px solid $primary-low;
|
|
|
|
|
|
|
|
.tab {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 10px;
|
|
|
|
width: 50%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
border-left: 1px solid $primary-low;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
font-weight: bold;
|
2018-09-07 02:56:00 +08:00
|
|
|
color: $tertiary;
|
2018-08-31 03:23:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.active) {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
2018-09-10 02:48:08 +08:00
|
|
|
background-color: $primary-very-low;
|
2018-08-31 03:23:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-24 09:30:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.themes-list-container {
|
2018-09-07 02:56:00 +08:00
|
|
|
overflow-y: scroll;
|
|
|
|
box-sizing: content-box;
|
2018-09-10 02:48:08 +08:00
|
|
|
max-height: 700px;
|
2018-09-07 02:56:00 +08:00
|
|
|
width: 100%; /* overridden in javascript to hide scrollbar */
|
2018-08-24 09:30:00 +08:00
|
|
|
|
2018-08-31 03:23:15 +08:00
|
|
|
.themes-list-item:last-child {
|
|
|
|
border-bottom: none;
|
2018-08-24 09:30:00 +08:00
|
|
|
}
|
|
|
|
.themes-list-item {
|
|
|
|
color: $primary;
|
|
|
|
border-bottom: 1px solid $primary-low;
|
|
|
|
display: flex;
|
2018-08-31 03:23:15 +08:00
|
|
|
border-left: 1px solid $primary-low;
|
2018-08-24 09:30:00 +08:00
|
|
|
|
2018-09-07 02:56:00 +08:00
|
|
|
&.inactive-indicator {
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
color: $primary-medium;
|
|
|
|
|
|
|
|
span.empty {
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:not(.inactive-indicator):not(.selected):hover {
|
2018-09-10 02:48:08 +08:00
|
|
|
background-color: $primary-very-low;
|
2018-08-31 03:23:15 +08:00
|
|
|
.component {
|
|
|
|
border-color: $primary-low-mid;
|
|
|
|
}
|
2018-08-24 09:30:00 +08:00
|
|
|
}
|
2018-09-07 02:56:00 +08:00
|
|
|
|
|
|
|
&.selected {
|
2018-08-24 09:30:00 +08:00
|
|
|
color: $secondary;
|
|
|
|
background-color: $tertiary;
|
2018-08-31 03:23:15 +08:00
|
|
|
.fa {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
2018-09-07 02:56:00 +08:00
|
|
|
&:not(.selected) {
|
|
|
|
.broken-indicator {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
.fa {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
.default-indicator {
|
|
|
|
color: $success;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-31 03:23:15 +08:00
|
|
|
.light-grey-icon {
|
|
|
|
color: $primary-medium;
|
|
|
|
}
|
2018-09-07 02:56:00 +08:00
|
|
|
|
2018-08-31 03:23:15 +08:00
|
|
|
.info {
|
|
|
|
overflow: hidden;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: $font-up-1;
|
|
|
|
|
|
|
|
.name {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icons {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.components-list {
|
|
|
|
margin-top: 5px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
font-size: $font-down-1;
|
|
|
|
align-items: baseline;
|
|
|
|
|
2018-09-07 02:56:00 +08:00
|
|
|
.others-count:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2018-08-31 03:23:15 +08:00
|
|
|
.component {
|
|
|
|
display: flex;
|
|
|
|
padding: 3px 5px 3px 5px;
|
|
|
|
border-radius: 2px;
|
|
|
|
border: 1px solid $primary-low;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-07 02:56:00 +08:00
|
|
|
.inner-wrapper {
|
2018-08-31 03:23:15 +08:00
|
|
|
padding: 10px;
|
2018-09-07 02:56:00 +08:00
|
|
|
cursor: pointer;
|
2018-08-31 03:23:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span.empty {
|
|
|
|
padding: 3px 10px 3px 10px;
|
2018-08-24 09:30:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-07 02:56:00 +08:00
|
|
|
.inner-wrapper,
|
2018-08-24 09:30:00 +08:00
|
|
|
span.empty {
|
|
|
|
color: inherit;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 08:04:23 +08:00
|
|
|
.theme.settings {
|
|
|
|
.theme-setting {
|
|
|
|
padding-bottom: 0;
|
2018-08-31 03:23:15 +08:00
|
|
|
margin-top: 18px;
|
2018-03-05 08:04:23 +08:00
|
|
|
min-height: 35px;
|
|
|
|
}
|
|
|
|
.setting-label {
|
|
|
|
width: 25%;
|
|
|
|
h3 {
|
|
|
|
margin-top: 0;
|
2018-06-08 17:49:31 +08:00
|
|
|
margin-bottom: 0.5rem;
|
2018-03-05 08:04:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
.current-style.maximized {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2018-01-17 08:05:12 +08:00
|
|
|
z-index: z("fullscreen");
|
2017-04-12 22:52:52 +08:00
|
|
|
background-color: white;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
.wrapper {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 20px;
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 05:43:07 +08:00
|
|
|
.nav-pills.fields {
|
2017-04-12 22:52:52 +08:00
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2018-06-08 17:49:31 +08:00
|
|
|
.content-list,
|
|
|
|
.current-style {
|
2017-04-12 22:52:52 +08:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.content-list ul {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.current-style {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.admin-container {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav.target {
|
2017-11-01 14:14:14 +08:00
|
|
|
margin-top: 15px;
|
|
|
|
|
2017-04-19 04:48:15 +08:00
|
|
|
li {
|
|
|
|
position: relative;
|
2017-11-01 14:14:14 +08:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2017-04-19 04:48:15 +08:00
|
|
|
}
|
2017-11-01 14:14:14 +08:00
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
.fa {
|
2017-11-01 14:14:14 +08:00
|
|
|
margin-left: 8px;
|
2017-04-20 03:24:00 +08:00
|
|
|
}
|
2017-11-01 14:14:14 +08:00
|
|
|
|
2017-11-24 00:14:51 +08:00
|
|
|
.d-icon-mobile {
|
2017-11-01 14:14:14 +08:00
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-3;
|
2017-11-01 14:14:14 +08:00
|
|
|
max-height: 20px;
|
2017-04-12 22:52:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-maximize {
|
|
|
|
position: absolute;
|
|
|
|
right: -5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace-wrapper {
|
|
|
|
position: relative;
|
|
|
|
height: 600px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.maximized {
|
|
|
|
.admin-container {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 50px;
|
|
|
|
top: 80px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.admin-footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
.ace-wrapper {
|
2017-05-11 03:42:51 +08:00
|
|
|
height: calc(100% - 200px);
|
2017-04-12 22:52:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_editor {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-actions {
|
|
|
|
float: right;
|
|
|
|
margin-top: 7px;
|
|
|
|
span {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
|
|
|
.saving {
|
|
|
|
padding: 5px 0 0 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
width: 80px;
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.color-scheme {
|
|
|
|
.controls {
|
2018-06-08 17:49:31 +08:00
|
|
|
span,
|
|
|
|
button,
|
|
|
|
a {
|
2017-04-12 22:52:52 +08:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.colors {
|
2018-06-08 17:49:31 +08:00
|
|
|
thead th {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
td.hex {
|
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
td.actions {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
.hex-input {
|
|
|
|
width: 80px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.hex {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.description {
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
}
|
2017-04-12 22:52:52 +08:00
|
|
|
|
|
|
|
.invalid .hex input {
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
border-color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-message {
|
|
|
|
display: block;
|
2018-06-08 17:49:31 +08:00
|
|
|
font-size: $font-down-1;
|
2017-04-12 22:52:52 +08:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2017-05-10 05:20:28 +08:00
|
|
|
|
|
|
|
.removable-list {
|
|
|
|
list-style: none;
|
|
|
|
margin-left: 0;
|
|
|
|
li {
|
|
|
|
display: table-row;
|
2017-05-11 02:43:05 +08:00
|
|
|
.col:first-child {
|
|
|
|
padding-right: 10px;
|
2017-05-10 05:20:28 +08:00
|
|
|
padding-bottom: 10px;
|
2017-05-11 02:43:05 +08:00
|
|
|
min-width: 80px;
|
2017-05-10 05:20:28 +08:00
|
|
|
}
|
2017-05-11 02:43:05 +08:00
|
|
|
.col {
|
2017-05-10 05:20:28 +08:00
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-12 22:52:52 +08:00
|
|
|
}
|
|
|
|
|
2017-05-11 02:43:05 +08:00
|
|
|
.add-upload-modal {
|
|
|
|
label {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
2018-02-15 01:26:05 +08:00
|
|
|
|
2018-02-16 04:07:26 +08:00
|
|
|
#custom_emoji {
|
2018-02-15 01:26:05 +08:00
|
|
|
width: 27%;
|
|
|
|
}
|
2018-03-09 13:14:21 +08:00
|
|
|
|
|
|
|
.modal-body .inputs .check-private {
|
|
|
|
margin-top: 10px;
|
|
|
|
label {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
label input {
|
|
|
|
width: auto;
|
|
|
|
margin: 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.public-key {
|
|
|
|
margin-top: 10px;
|
|
|
|
textarea {
|
|
|
|
cursor: auto;
|
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-03 11:14:53 +08:00
|
|
|
|
|
|
|
// Permalinks
|
|
|
|
.permalinks {
|
|
|
|
.url,
|
|
|
|
.topic,
|
|
|
|
.category,
|
|
|
|
.external_url,
|
|
|
|
.post {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-19 20:37:04 +08:00
|
|
|
.permalink-form {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.select-kit {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
2018-08-09 21:55:59 +08:00
|
|
|
}
|
|
|
|
|
2018-07-03 11:14:53 +08:00
|
|
|
.permalink-title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// embedding
|
|
|
|
.embeddable-hosts {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
table.grid {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
tr td {
|
|
|
|
word-wrap: break-word;
|
|
|
|
max-width: 25vw;
|
|
|
|
align-self: start;
|
|
|
|
}
|
|
|
|
td.controls {
|
|
|
|
min-width: 6em;
|
|
|
|
}
|
|
|
|
.select-kit.combo-box.category-chooser {
|
|
|
|
width: calc(100% - 10px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 880px) {
|
|
|
|
table.grid {
|
|
|
|
thead {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
div.label {
|
|
|
|
display: block;
|
|
|
|
font-size: $font-down-1;
|
|
|
|
color: $primary-medium;
|
|
|
|
}
|
|
|
|
td.controls,
|
|
|
|
td.editing-controls {
|
|
|
|
align-self: end;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 580px) {
|
|
|
|
table.grid {
|
|
|
|
tr td.editing-input {
|
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: 4;
|
|
|
|
max-width: 100%;
|
|
|
|
input {
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
td.editing-controls {
|
|
|
|
margin-top: 1em;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 350px) {
|
|
|
|
table.grid tr {
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
td.controls {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.embedding-secondary {
|
|
|
|
h3 {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
margin-bottom: 2em;
|
|
|
|
.embed-setting {
|
|
|
|
input[type="text"] {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
margin: 0.75em 0;
|
|
|
|
}
|
|
|
|
p.description {
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
margin-bottom: 1em;
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.embedding td input {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-fields {
|
|
|
|
h2 {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.user-field {
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-bottom: 1px solid $primary-low;
|
|
|
|
.form-display {
|
|
|
|
width: 25%;
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.form-element,
|
|
|
|
.form-element-desc {
|
|
|
|
float: left;
|
|
|
|
min-height: 30px;
|
|
|
|
padding: 0.25em 0;
|
|
|
|
&.input-area {
|
|
|
|
width: 75%;
|
2018-08-04 04:41:37 +08:00
|
|
|
.value-list,
|
|
|
|
.select-kit,
|
2018-07-03 11:14:53 +08:00
|
|
|
input[type="text"] {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2018-08-04 04:41:37 +08:00
|
|
|
|
|
|
|
.value-list {
|
|
|
|
.select-kit {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2018-07-03 11:14:53 +08:00
|
|
|
}
|
|
|
|
&.label-area {
|
|
|
|
width: 25%;
|
|
|
|
label {
|
|
|
|
margin: 0.5em 1em 0 0;
|
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.controls {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.clearfix {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|