71 lines
1.5 KiB
Plaintext
71 lines
1.5 KiB
Plaintext
// out: false, sourceMap: false, main: ../style.less
|
|
@import "colors.less";
|
|
@width: 280px;
|
|
@height: 64px;
|
|
.turn-up {
|
|
.process-info {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.process-container {
|
|
display: flex;
|
|
}
|
|
|
|
.process-info {
|
|
background-color: @color-white;
|
|
width: @width;
|
|
min-width: @width;
|
|
max-width: @width;
|
|
height: @height;
|
|
overflow: hidden;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 0 9px;
|
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
|
|
.counter {
|
|
width: 72px;
|
|
min-width: 72px;
|
|
height: @height;
|
|
background-color: @color-duck-egg-blue;
|
|
color: black;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
}
|
|
.content {
|
|
display: flex;
|
|
color: @color-squash;
|
|
align-items: center; // max-width: 140px;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
flex-flow: column;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
.processname{
|
|
color: @color-greyish-brown;
|
|
}
|
|
}
|
|
.status {
|
|
width: @height;
|
|
height: @height;
|
|
min-width: @height;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 32px;
|
|
color: @color-squash;
|
|
}
|
|
.content.RUN,
|
|
.status.RUN {
|
|
color: @color-green;
|
|
}
|
|
|
|
.content.READY,
|
|
.status.READY{
|
|
color: @color-clear-blue;
|
|
}
|
|
}
|