badguardhome/client/src/components/Logs/Logs.css

132 lines
2.4 KiB
CSS
Raw Normal View History

2018-09-04 09:43:13 +00:00
.logs__row {
position: relative;
2018-09-04 09:43:13 +00:00
display: flex;
align-items: center;
min-height: 26px;
}
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 {
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.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%;
}
.logs__text--wrap {
line-height: 1.4;
white-space: normal;
}
2018-09-04 09:43:13 +00:00
.logs__row .tooltip-custom {
top: 0;
margin-left: 0;
margin-right: 5px;
}
.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
.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);
}
.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);
}
.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;
}