mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
407 lines
10 KiB
Plaintext
407 lines
10 KiB
Plaintext
@import "../../../backend/assets/less/core/boot.less";
|
|
|
|
//
|
|
// Component list
|
|
// --------------------------------------------------
|
|
|
|
@color-component-list-bg: @brand-secondary;
|
|
@color-component-bg: #ffffff;
|
|
@color-component-text: #475354;
|
|
@color-component-hover-bg: #3498db;
|
|
@color-component-hover-text: #ffffff;
|
|
@color-component-placeholder: #e0e0e0;
|
|
@color-group-bg: #f1f3f4;
|
|
@color-error-component-bg: #ab2a1c;
|
|
@color-error-component-text: #ffffff;
|
|
@color-warning-component-bg: #ffc107;
|
|
@color-warning-component-text: #343a40;
|
|
|
|
.component-lego-icon() {
|
|
position: absolute;
|
|
font-size: 37px;
|
|
top: 1px;
|
|
z-index: 50;
|
|
color: @color-component-bg;
|
|
text-shadow: 0 0 1px @color-component-text;
|
|
width: 12px;
|
|
overflow: hidden;
|
|
text-indent: -25px;
|
|
right: -12px;
|
|
|
|
.icon(@puzzle-piece);
|
|
}
|
|
|
|
.draggable-component-item,
|
|
.component-list .components div.layout-cell,
|
|
div.control-componentlist div.components div.layout-cell {
|
|
font-size: 11px;
|
|
cursor: pointer;
|
|
background: @color-component-bg;
|
|
.user-select(none);
|
|
|
|
&:hover {
|
|
background: @color-component-hover-bg;
|
|
}
|
|
|
|
> div {
|
|
white-space: normal;
|
|
color: @color-component-text;
|
|
position: relative;
|
|
border-right: 1px solid @color-panel-light;
|
|
|
|
&:before {
|
|
position: absolute;
|
|
font-size: 16px;
|
|
left: 15px;
|
|
top: 7px;
|
|
.opacity(0.7);
|
|
}
|
|
|
|
&:hover {
|
|
color: @color-component-hover-text;
|
|
&:before {
|
|
.opacity(1);
|
|
}
|
|
}
|
|
|
|
&:after {
|
|
.component-lego-icon();
|
|
}
|
|
|
|
&:hover:after {
|
|
text-shadow: none;
|
|
color: @color-component-hover-bg;
|
|
}
|
|
|
|
span {
|
|
display: block;
|
|
|
|
&.name {
|
|
white-space: nowrap;
|
|
padding: 8px 15px 0;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
font-size: @font-size-base - 1;
|
|
}
|
|
|
|
&.description {
|
|
padding: 0 15px 10px;
|
|
margin-top: 8px;
|
|
font-weight: 400;
|
|
font-size: @font-size-base - 3;
|
|
line-height: 150%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.placeholder > div {
|
|
background: @color-component-placeholder;
|
|
color: @color-component-placeholder;
|
|
&:before, &:after {
|
|
color: @color-component-placeholder !important;
|
|
text-shadow: none !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Reduce the double standard padding, since the tabs have padding
|
|
// at the top and the components field has padding at the bottom.
|
|
[data-field-name="components"] + .control-tabs.primary-tabs {
|
|
margin-top: -(@padding-standard / 2);
|
|
}
|
|
|
|
div.control-componentlist {
|
|
position: relative;
|
|
padding: 0;
|
|
.transition(all 0.3s ease);
|
|
|
|
&.droppable {
|
|
background-color: lighten(@color-component-list-bg, 20%);
|
|
}
|
|
|
|
&.has-components {
|
|
padding: 0 @padding-standard @padding-standard;
|
|
}
|
|
|
|
div.layout {
|
|
width: auto;
|
|
}
|
|
|
|
div.components {
|
|
div.layout-cell {
|
|
&.error-component {
|
|
background: @color-error-component-bg;
|
|
|
|
> div {
|
|
color: @color-error-component-text;
|
|
|
|
&:after {
|
|
color: @color-error-component-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.warning-component {
|
|
background: @color-warning-component-bg;
|
|
|
|
> div {
|
|
color: @color-warning-component-text;
|
|
|
|
&:after {
|
|
color: @color-warning-component-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
.border-left-radius(3px);
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
.border-right-radius(3px);
|
|
|
|
> div {
|
|
border-right: none;
|
|
|
|
&:after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:nth-child(2n) > div:after {
|
|
top: auto;
|
|
bottom: 5px;
|
|
}
|
|
|
|
&:first-child {
|
|
> div.popover-highlight {
|
|
.border-left-radius(3px);
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
> div.popover-highlight {
|
|
.border-right-radius(3px);
|
|
}
|
|
}
|
|
|
|
> div {
|
|
.translate(0, 0);
|
|
.transition-transform(0.2s);
|
|
|
|
max-width: 250px;
|
|
min-width: 170px;
|
|
|
|
&.popover-highlight {
|
|
border-right-color: rgba(0,0,0,0);
|
|
background: @color-component-bg!important;
|
|
color: @color-component-text!important;
|
|
&:before {
|
|
.opacity(0.7);
|
|
}
|
|
|
|
&:after {
|
|
color: @color-component-bg;
|
|
text-shadow: none;
|
|
}
|
|
|
|
a.remove {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
span {
|
|
&.name {
|
|
padding-left: 38px;
|
|
}
|
|
|
|
&.description {
|
|
padding-bottom: 35px;
|
|
}
|
|
|
|
&.alias {
|
|
padding: 0 15px;
|
|
font-weight: 500;
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: 10px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
|
|
&:before {
|
|
margin-right: 4px;
|
|
.opacity(0.55);
|
|
}
|
|
}
|
|
}
|
|
|
|
a.remove {
|
|
position: absolute;
|
|
display: inline-block;
|
|
top: 1px;
|
|
right: 5px;
|
|
color: @close-color;
|
|
font-size: 17px;
|
|
font-weight: @close-font-weight;
|
|
.opacity(.3);
|
|
|
|
&:hover {
|
|
.opacity(.5);
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.adding > div {
|
|
.translate(0, -100px)!important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.draggable-component-item {
|
|
.opacity(.6);
|
|
span.alias { display: none; }
|
|
a.remove { display: none; }
|
|
}
|
|
|
|
.component-list .components {
|
|
div.layout {
|
|
div.layout-row {
|
|
div.layout-cell {
|
|
border-top: 1px solid @color-panel-light;
|
|
span.alias { display: none; }
|
|
a.remove { display: none; }
|
|
|
|
&:last-child > div {
|
|
border-right: none;
|
|
&:after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
> div {
|
|
&:before {
|
|
.component-lego-icon();
|
|
.rotate(-90deg);
|
|
.opacity(1);
|
|
left: auto;
|
|
top: -17px;
|
|
right: 15px;
|
|
}
|
|
|
|
&:hover:before {
|
|
text-shadow: none;
|
|
color: @color-component-hover-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
div.layout-cell {
|
|
> div {
|
|
&:before {display: none;}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
div.layout.single {
|
|
div.layout-row > div.layout-cell > div {
|
|
border-right: none;
|
|
&:before {
|
|
display: block;
|
|
right: 55.5%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.control-filelist.component-list {
|
|
ul li {
|
|
div.group {
|
|
background: @color-group-bg;
|
|
border-top: 1px solid darken(@color-panel-light, 2%);
|
|
padding: 10px 15px 10px 10px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
|
|
h4 {
|
|
text-transform: uppercase;
|
|
font-size: 14px;
|
|
margin-top: 3px;
|
|
|
|
a {
|
|
padding-left: 33px;
|
|
|
|
&:before {
|
|
left: 0;
|
|
}
|
|
|
|
&:after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
span.description {
|
|
display: block;
|
|
font-size: 13px;
|
|
padding-left: 33px;
|
|
color: @color-text-description;
|
|
}
|
|
|
|
i {
|
|
position: absolute;
|
|
left: 22px;
|
|
top: 21px;
|
|
font-size: 16px;
|
|
.opacity(0.7);
|
|
color: @color-text-title;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.disable-component-list-hover() {
|
|
background: @color-component-bg;
|
|
color: @color-component-text;
|
|
|
|
&:after {
|
|
text-shadow: 0 0 1px @color-component-text!important;
|
|
color: @color-component-bg!important;
|
|
}
|
|
}
|
|
|
|
.touch {
|
|
div.control-componentlist div.components div.layout-cell {
|
|
> div:hover, > div:active, > div:active:focus {
|
|
.disable-component-list-hover();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Modifies the color of the tab background when components are present
|
|
// this is no longer required since the colors are the same! :-) -sg
|
|
// .fancy-layout {
|
|
// .control-tabs, &.control-tabs {
|
|
// &.primary-tabs {
|
|
// > div > ul.nav-tabs {
|
|
// &.component-area {
|
|
// background: @color-component-list-bg;
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
body.drag div.control-componentlist div.components div.layout-cell {
|
|
> div, > div:hover, > div:active {
|
|
.disable-component-list-hover();
|
|
}
|
|
}
|