Files
cms_thermo_active/Step/wwwroot/assets/styles/base/tooling.less
T
Nicola Carminati c9d31331b0 Fix Multitool Option
2019-04-27 18:11:54 +02:00

192 lines
4.7 KiB
Plaintext

// out: false, sourceMap: false, main: ../style.less
@import "colors.less";
.test-container{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.tooling-container{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
.tooling-box{
width: 1504px;
height: 759px;
border-radius: 2px;
background-color: @color-background-white;
box-shadow: 0 1px 2px 0 @color-black-40;
overflow: hidden;
.header{
font-size: 24px;
font-weight: 600;
color: @color-darkish-blue;
height: 65px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
.title {
margin-left: 24px;
}
.btn {
box-sizing: border-box;
border-radius: 2px;
margin: 0 8px;
text-align: center;
font-size: 18px;
font-weight: bold;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
padding: 14px 17px;
border: none;
background-image: linear-gradient(to bottom, @color-white2, @color-silver);
color: @color-darkish-blue;
&:active {
background-image: linear-gradient(to bottom, @color-silver, @color-white2);
border: none !important;
box-shadow: inset @button-shadow !important;
}
&:hover {
box-shadow: inset 0px 0px 0px 2px #8eb5e2;
}
&.dark-blue {
background-color: @color-blue;
color: white;
}
&.btn-danger {
color: @color-scarlet;
}
}
.group-button-add-attach {
font-size: 18px;
line-height: 1;
// color: @color-greyish-brown;
color: @button-success-color-to;
}
}
.tooling-boxbody{
width: 100%;
height: calc(~'100% - 65px');
top: 65px;
background-color: @color-silver;
display: flex;
flex-flow: column;
.header{
font-size: 20px;
margin-top: 18px;
margin-left: 80px;
margin-bottom:0;
}
.list-top, .list-bottom{
display: flex;
align-items: center;
height: 100%;
margin-bottom: 10px;
overflow-y: hidden;
overflow-x: auto;
padding-left: 80px;
}
.divider{
width: 1480px;
height: 4px;
background-color: #d8d8d8;
border: solid 1px #979797;
margin-left: 12px;
}
}
}
}
.tool{
margin: auto;
width: 360px;
height: 64px;
background-color: @color-background-white;
border-radius: 2px;
box-shadow: 0 1px 2px 0 @color-black-40;
display: flex;
flex-flow: row;
align-self: center;
justify-items: center;
font-size: 18px;
line-height: 1.11;
color:@color-greyish-brown;
margin-bottom: 4px;
.image{
// display: flex;
// flex-flow: row;
display: flex;
align-items: center;
justify-content: center;
margin-left: 21px;
margin-right: 29px;
img{
width: 48px;
height: 48px;
}
}
.text-body{
// display: flex;
// flex-flow: column;
// align-self: center;
text-align: left;
width: calc(~'100% - 159px');
margin-top: 11px;
ul{
margin: 0;
padding: 0;
li{
display: inline;
margin-right: 5px;
padding-right: 5px;
}
li:not(:last-child) {
border-right: 1px solid #4b4b4b;
}
}
}
.text-right{
// display: flex;
// align-items: center;
// flex-flow: row;
display: flex;
align-items: center;
color:@color-clear-blue;
}
.fa{
display: flex;
align-items: center;
font-size: 24px;
margin-left: 20px;
color: @color-darkish-blue;
cursor: pointer;
}
}
.smooth-dnd-ghost {
transform: rotateZ(3deg);
transition: 0s;
.tool{
background-color: #cccccccc;
box-shadow: 0px 0px 2px 3px #1791ff;
}
.fa{
display: none;
}
}