2018-09-04 09:43:13 +00:00
|
|
|
.logs__row {
|
2018-09-28 13:30:52 +00:00
|
|
|
position: relative;
|
2018-09-04 09:43:13 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-09-28 13:30:52 +00:00
|
|
|
min-height: 26px;
|
2018-09-03 12:55:20 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 14:59:57 +00:00
|
|
|
.logs__row--center {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2019-07-22 12:32:12 +00:00
|
|
|
.logs__row--column {
|
2019-08-30 13:03:36 +00:00
|
|
|
flex-direction: column;
|
2019-09-23 13:02:47 +00:00
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: center;
|
2019-08-30 13:03:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logs__row--overflow {
|
2019-07-22 12:32:12 +00:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2019-07-18 11:52:47 +00:00
|
|
|
.logs__row--icons {
|
|
|
|
max-width: 180px;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
}
|
|
|
|
|
2018-09-04 09:43:13 +00:00
|
|
|
.logs__row .list-unstyled {
|
|
|
|
margin-bottom: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__text,
|
|
|
|
.logs__row .list-unstyled li {
|
2019-07-18 11:52:47 +00:00
|
|
|
padding: 0 1px;
|
2018-09-04 09:43:13 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2019-09-12 13:19:35 +00:00
|
|
|
.logs__text--full {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-10-10 15:57:39 +00:00
|
|
|
.logs__text--wrap,
|
|
|
|
.logs__text--whois {
|
2019-09-23 13:02:47 +00:00
|
|
|
line-height: 1.4;
|
2019-09-23 13:01:51 +00:00
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2019-10-10 15:57:39 +00:00
|
|
|
.logs__text--whois {
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
2018-09-04 09:43:13 +00:00
|
|
|
.logs__row .tooltip-custom {
|
|
|
|
top: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2018-09-28 13:30:52 +00:00
|
|
|
|
|
|
|
.logs__action {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 15px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 4px;
|
|
|
|
transition: opacity 0.2s ease, visibility 0.2s ease;
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__table .rt-td {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__table .rt-tr:hover .logs__action {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__table .rt-tr-group:first-child .tooltip-custom:before {
|
|
|
|
top: calc(100% + 12px);
|
|
|
|
bottom: initial;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__table .rt-tr-group:first-child .tooltip-custom:after {
|
|
|
|
top: initial;
|
|
|
|
bottom: -4px;
|
|
|
|
border-top: 6px solid transparent;
|
|
|
|
border-bottom: 6px solid #585965;
|
|
|
|
}
|
2018-10-02 15:14:41 +00:00
|
|
|
|
2018-10-12 16:52:19 +00:00
|
|
|
.logs__table .rt-tr-group:first-child .popover__body {
|
|
|
|
top: calc(100% + 5px);
|
|
|
|
bottom: initial;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__table .rt-tr-group:first-child .popover__body:after {
|
|
|
|
top: -11px;
|
|
|
|
border-top: 6px solid transparent;
|
|
|
|
border-bottom: 6px solid #585965;
|
|
|
|
}
|
|
|
|
|
2018-10-02 15:14:41 +00:00
|
|
|
.logs__table .rt-thead.-filters input,
|
|
|
|
.logs__table .rt-thead.-filters select {
|
|
|
|
padding: 6px 7px;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
line-height: 1.6;
|
|
|
|
color: #495057;
|
|
|
|
border: 1px solid rgba(0, 40, 100, 0.12);
|
|
|
|
}
|
|
|
|
|
2019-09-20 12:05:10 +00:00
|
|
|
.logs__table .rt-thead.-filters select {
|
|
|
|
background: #fff url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxMCA1Jz48cGF0aCBmaWxsPScjOTk5JyBkPSdNMCAwTDEwIDBMNSA1TDAgMCcvPjwvc3ZnPg==") no-repeat right 0.75rem center;
|
|
|
|
background-size: 8px 10px;
|
|
|
|
}
|
|
|
|
|
2018-10-02 15:14:41 +00:00
|
|
|
.logs__table .rt-thead.-filters input:focus,
|
|
|
|
.logs__table .rt-thead.-filters select:focus {
|
|
|
|
border-color: #1991eb;
|
|
|
|
box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.25);
|
|
|
|
}
|
2019-08-30 13:03:36 +00:00
|
|
|
|
|
|
|
.logs__text-wrap {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__list-wrap {
|
|
|
|
display: flex;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__list-item {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2019-09-24 12:28:59 +00:00
|
|
|
|
2019-09-20 12:05:10 +00:00
|
|
|
.logs__input-wrap {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__notice {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 8px;
|
|
|
|
right: 10px;
|
|
|
|
margin-top: 3px;
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: left;
|
|
|
|
color: #a5a5a5;
|
|
|
|
}
|
|
|
|
|
2019-09-24 12:28:59 +00:00
|
|
|
.logs__whois {
|
|
|
|
display: inline;
|
2019-10-10 15:57:39 +00:00
|
|
|
font-size: 12px;
|
2019-09-24 12:28:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logs__whois::after {
|
|
|
|
content: "|";
|
|
|
|
padding: 0 5px;
|
2019-10-10 15:57:39 +00:00
|
|
|
opacity: 0.3;
|
2019-09-24 12:28:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logs__whois:last-child::after {
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs__whois-icon.icons {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
2019-10-10 15:57:39 +00:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-right: 1px;
|
|
|
|
opacity: 0.5;
|
2019-09-24 12:28:59 +00:00
|
|
|
}
|