160 lines
2.0 KiB
CSS
160 lines
2.0 KiB
CSS
.stackpanel-vertical {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.alarmList-content{
|
|
overflow-y: scroll;
|
|
/*-webkit-overflow-scrolling: touch;*/
|
|
}
|
|
.stackpanel-horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.fix-top {
|
|
top: 5.34rem;
|
|
width: 100%;
|
|
background: white;
|
|
position: fixed;
|
|
z-index: 100;
|
|
}
|
|
|
|
.search-line {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
padding: 0 0.83rem;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
}
|
|
|
|
.search-criteria {
|
|
border: 1px solid #d9d9d9;
|
|
border-radius: 0.25rem;
|
|
height: 2.5rem;
|
|
width: 23%;
|
|
}
|
|
|
|
.datetime-line {
|
|
width: 70%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.datetime {
|
|
height: 2.5rem;
|
|
line-height: 2.5rem;
|
|
text-align: center;
|
|
width: 6rem;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.datetime {
|
|
line-height: 2.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.underline-yellow {
|
|
border-bottom: 1px solid #e9be2b
|
|
}
|
|
|
|
.img-drop-down {
|
|
height: 1.2rem;
|
|
width: 1.2rem;
|
|
margin: 0 0.625rem 0 0;
|
|
}
|
|
|
|
.iptime-group {
|
|
position: relative;
|
|
}
|
|
|
|
.iptime {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 7.825rem;
|
|
height: 2.5rem;
|
|
opacity: 0;
|
|
}
|
|
|
|
|
|
.alarm{
|
|
display:flex;
|
|
padding:0.58rem;
|
|
border-bottom: 1px solid #dad9da;
|
|
flex-wrap:nowrap;
|
|
font-size:1rem;
|
|
}
|
|
|
|
.alarm .left{
|
|
display:flex;
|
|
flex-grow:1;
|
|
width:0;
|
|
align-items: center;
|
|
}
|
|
|
|
.alarm .left .content{
|
|
flex-grow:1;
|
|
width: 80%;
|
|
}
|
|
|
|
.alarm .pr-name-con{
|
|
display:flex;
|
|
align-items:center;
|
|
}
|
|
|
|
.alarm .pr-name-con img{
|
|
height:1.2rem;
|
|
}
|
|
|
|
.alarm .pr-name{
|
|
font-size : 1.16rem;
|
|
}
|
|
|
|
.alarm .icon-con{
|
|
flex-shrink:0;
|
|
width:3rem;
|
|
height:3rem;
|
|
display:flex;
|
|
border-radius:50%;
|
|
justify-content:center;
|
|
align-items:center;
|
|
margin-right:1rem;
|
|
font-size:1.25rem;
|
|
background:#E9BE2B;
|
|
}
|
|
|
|
.alarm .right{
|
|
/*width:7rem;*/
|
|
}
|
|
|
|
.text-gray {
|
|
color:#6d6d6d;
|
|
}
|
|
|
|
.text-red {
|
|
color:#ff0000;
|
|
}
|
|
|
|
.text-yellow {
|
|
color:#ff9c00;
|
|
}
|
|
|
|
.text-green {
|
|
color:#03b679;
|
|
}
|
|
|
|
.icon-con img{
|
|
width:2rem;
|
|
}
|
|
|
|
body {
|
|
overflow: auto;
|
|
}
|
|
|