146 lines
2.4 KiB
SCSS
146 lines
2.4 KiB
SCSS
.order-history {
|
|
|
|
h1 {
|
|
font-size: 20px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 18px;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 16px;
|
|
margin: 6px 0;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto !important;
|
|
}
|
|
|
|
.order-comment.overlay {
|
|
max-height: 34px;
|
|
overflow: hidden;
|
|
|
|
p:first-child {
|
|
min-height: 34px;
|
|
}
|
|
}
|
|
|
|
.read-more {
|
|
background: $white;
|
|
position: relative;
|
|
display: block;
|
|
text-align: center;
|
|
padding: 3px 0;
|
|
|
|
.badge {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
&::before {
|
|
content: "";
|
|
border-top: 1px dashed #aab2bd; // $border-color;
|
|
display: block;
|
|
width: 100%;
|
|
height: 1px;
|
|
position: absolute;
|
|
top: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
#statusButtons {
|
|
margin-left: -5px;
|
|
margin-right: -5px;
|
|
|
|
> div {
|
|
padding-right: 5px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.btn {
|
|
margin-top: 5px;
|
|
overflow: hidden;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
&.dropdown-toggle {
|
|
min-width: 0;
|
|
padding-right: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.caret {
|
|
margin-top: -1px;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 50%;
|
|
}
|
|
}
|
|
|
|
.dropdown-menu {
|
|
min-width: 100%;
|
|
|
|
li a {
|
|
padding: 8px 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.window-orders-items {
|
|
.input-height {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.panel-body > .form-group:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.panel-title.two-lines > p {
|
|
padding-left: 5px;
|
|
padding-top: 2px;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.panel-title .help-block {
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.disable-animations *,
|
|
.disable-animations *::after,
|
|
.disable-animations *::before {
|
|
transition: none !important;
|
|
}
|
|
|
|
/** bootstrap refresh animation */
|
|
.dialogContentLoader {
|
|
text-align: center;
|
|
font-size: 40px;
|
|
color: #aaa;
|
|
}
|
|
|
|
.glyphicon-refresh-animate {
|
|
padding-top: 1.5px;
|
|
box-sizing: content-box;
|
|
transform: translateZ(0);
|
|
animation: spin .7s infinite linear;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: scale(1) rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: scale(1) rotate(360deg);
|
|
}
|
|
}
|
|
}
|