2023-05-30 23:04:03 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: Scada;
|
|
|
|
src: url(Scada-Regular.ttf);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 100vh;
|
|
|
|
overflow: hidden;
|
|
|
|
flex-direction: column;
|
|
|
|
color: #333;
|
|
|
|
margin: 0;
|
|
|
|
opacity: 0;
|
|
|
|
font-family: Scada;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.div-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 60%;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 30px
|
|
|
|
}
|
|
|
|
|
|
|
|
/* HEADER */
|
|
|
|
|
2023-06-01 21:36:21 +00:00
|
|
|
div.main-button {
|
2023-05-30 23:04:03 +00:00
|
|
|
margin-right: 20px
|
2023-06-01 21:36:21 +00:00
|
|
|
}
|
2023-05-30 23:04:03 +00:00
|
|
|
|
|
|
|
div.div-search {
|
|
|
|
display: flex;
|
|
|
|
height: 100%
|
|
|
|
}
|
|
|
|
|
|
|
|
div.div-user {
|
|
|
|
flex-grow: 1;
|
|
|
|
text-align: center;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
text-align: center;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-focus {
|
|
|
|
border: 1px solid#c5c5c5;
|
|
|
|
}
|
|
|
|
|
2023-05-31 22:10:08 +00:00
|
|
|
.input-focus:hover:not([disabled]) {
|
|
|
|
border: 1px solid #999;
|
|
|
|
box-shadow: 1px 1px 10px 1px #ccc;
|
2023-05-30 23:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-focus::placeholder {
|
|
|
|
color: #333
|
|
|
|
}
|
|
|
|
|
2023-05-31 22:10:08 +00:00
|
|
|
.input-focus:focus:not([disabled]) {
|
2023-05-30 23:04:03 +00:00
|
|
|
outline: none;
|
2023-05-31 22:10:08 +00:00
|
|
|
box-shadow: 1px 1px 10px 1px #666;
|
|
|
|
border: 1px solid #555;
|
2023-05-30 23:04:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* BODY */
|
|
|
|
|
|
|
|
.content {
|
|
|
|
width: 60%;
|
|
|
|
margin-top: 20px
|
|
|
|
}
|
|
|
|
|
2023-06-04 18:50:36 +00:00
|
|
|
.table-content {
|
2023-05-30 23:04:03 +00:00
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
|
2023-06-03 18:27:07 +00:00
|
|
|
div.group-content {
|
|
|
|
height: 55vh;
|
|
|
|
}
|
|
|
|
|
2023-05-30 23:04:03 +00:00
|
|
|
div.body-rows {
|
2023-06-03 18:27:07 +00:00
|
|
|
height: calc(100% - 55px);
|
2023-05-30 23:04:03 +00:00
|
|
|
overflow-x: auto;
|
|
|
|
border: 1px solid #c5c5c5;
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
color: #333;
|
|
|
|
height: 50px;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border: 1px solid #c5c5c5;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-05-31 22:10:08 +00:00
|
|
|
.body-rows td {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2023-05-30 23:04:03 +00:00
|
|
|
.body-rows tbody tr:nth-child(even){
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
2023-06-01 21:36:21 +00:00
|
|
|
tr.row {
|
|
|
|
border-top: 1px solid #fff;
|
|
|
|
}
|
|
|
|
|
2023-05-30 23:04:03 +00:00
|
|
|
tr.row:hover, tr.row:nth-child(even):hover {
|
2023-06-01 21:36:21 +00:00
|
|
|
background-color: #f6f6f6;
|
|
|
|
color: #003eff;
|
2023-05-30 23:04:03 +00:00
|
|
|
cursor: pointer;
|
2023-06-01 21:36:21 +00:00
|
|
|
border-bottom: 1px solid #c5c5c5;
|
|
|
|
border-top: 1px solid #c5c5c5;
|
2023-05-30 23:04:03 +00:00
|
|
|
}
|
2023-05-31 22:10:08 +00:00
|
|
|
|
|
|
|
/* EDIT NUMBER */
|
|
|
|
|
2023-06-04 18:50:36 +00:00
|
|
|
.number-label, .sms-label, .ussd-label, .server-label {
|
2023-05-31 22:10:08 +00:00
|
|
|
color: #333;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2023-06-04 18:50:36 +00:00
|
|
|
.number-value, .server-value {
|
2023-05-31 22:10:08 +00:00
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
2023-06-04 18:50:36 +00:00
|
|
|
.server-value {
|
|
|
|
text-align: left;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.server-input {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.server-button {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
2023-06-03 23:00:19 +00:00
|
|
|
.sms-label-text, .ussd-label-text {
|
2023-06-02 23:28:18 +00:00
|
|
|
vertical-align:top
|
|
|
|
}
|
|
|
|
|
2023-06-03 23:00:19 +00:00
|
|
|
.sms-value, .ussd-value {
|
2023-06-02 23:28:18 +00:00
|
|
|
width: 300px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2023-05-31 22:10:08 +00:00
|
|
|
.number-input-main {
|
|
|
|
height: 25px;
|
|
|
|
width: 194px;
|
|
|
|
margin: 0 10px 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.number-input-cc {
|
|
|
|
height: 25px;
|
|
|
|
width: 50px;
|
|
|
|
margin: 0 10px 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.div-advanced {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2023-06-01 21:36:21 +00:00
|
|
|
.comment-name {
|
|
|
|
padding: 15px 0 5px 0;
|
|
|
|
}
|
|
|
|
|
2023-06-03 23:00:19 +00:00
|
|
|
.comment-content, .sms-content, .ussd-content {
|
2023-05-31 22:10:08 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2023-06-03 23:00:19 +00:00
|
|
|
#number-comment, #sms-content, #ussd-content {
|
2023-05-31 22:10:08 +00:00
|
|
|
width: calc(100% - 6px);
|
|
|
|
resize: none;
|
|
|
|
}
|
2023-06-02 23:28:18 +00:00
|
|
|
|
2023-06-03 23:00:19 +00:00
|
|
|
#sms-content, #ussd-content {
|
2023-06-02 23:28:18 +00:00
|
|
|
height: 150px;
|
|
|
|
outline: none;
|
|
|
|
border: 1px solid#c5c5c5;
|
|
|
|
color: #333;
|
|
|
|
width: 400px;
|
|
|
|
padding: 5px 10px 5px 10px;
|
|
|
|
}
|
|
|
|
|
2023-06-03 23:00:19 +00:00
|
|
|
th.sms-content-width, td.sms-content-width, th.ussd-content-width, td.ussd-content-width {
|
2023-06-02 23:28:18 +00:00
|
|
|
width: 155px;
|
|
|
|
}
|
2023-06-03 23:00:19 +00:00
|
|
|
|
|
|
|
th.ussd-content-width-type, td.ussd-content-width-type {
|
|
|
|
width: 240px;
|
|
|
|
}
|