52 lines
954 B
SCSS
Raw Normal View History

2022-01-31 13:09:52 +01:00
#srv_analiza_preview_div{
display: none;
cursor: auto;
pointer-events: none;
position: fixed;
2022-01-31 13:09:52 +01:00
z-index: 9997;
left: 307px;
top: 165px;
width: 700px;
box-sizing: border-box;
padding: 16px;
//background: $light-gray;
background-color: $white;
border: 1px solid $gray;
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15);
.srv_analiza_preview_sub{
display: flex;
flex-direction: column;
position: relative;
.title{
2022-02-22 09:10:42 +01:00
margin-bottom: 16px;
2022-02-22 09:33:27 +01:00
padding-bottom: 8px;
2022-01-31 13:09:52 +01:00
font-size: 16px;
2022-02-22 09:33:27 +01:00
border-bottom: 1px $gray solid;
.first{
font-weight: 600;
text-transform: uppercase;
}
.faicon{
margin-right: 8px;
color: $blue;
}
2022-01-31 13:09:52 +01:00
}
.content{
overflow: hidden;
width: auto;
}
}
}