2018-08-05 11:01:17 +03:00
|
|
|
@import '../../utils/base';
|
|
|
|
@import '../../utils/mixins/vertical-align';
|
2018-07-28 10:18:55 +03:00
|
|
|
|
2018-08-05 09:49:07 +03:00
|
|
|
.short-urls-row {
|
2020-12-30 22:05:04 +03:00
|
|
|
@media (max-width: $responsiveTableBreakpoint) {
|
2018-08-05 09:49:07 +03:00
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
2021-02-27 10:23:06 +03:00
|
|
|
border-bottom: 1px solid var(--border-color);
|
2018-08-05 11:01:17 +03:00
|
|
|
position: relative;
|
2018-08-05 09:49:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.short-urls-row__cell.short-urls-row__cell {
|
2018-07-28 10:18:55 +03:00
|
|
|
vertical-align: middle !important;
|
2018-08-05 09:49:07 +03:00
|
|
|
|
2020-12-30 22:05:04 +03:00
|
|
|
@media (max-width: $responsiveTableBreakpoint) {
|
2018-08-05 09:49:07 +03:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
padding: .5rem;
|
|
|
|
font-size: .9rem;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: attr(data-th);
|
2020-12-30 22:05:04 +03:00
|
|
|
font-weight: 700;
|
2018-08-05 09:49:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2018-08-05 11:01:17 +03:00
|
|
|
position: absolute;
|
2018-08-10 22:38:24 +03:00
|
|
|
top: 3.5px;
|
2018-08-05 11:01:17 +03:00
|
|
|
right: .5rem;
|
|
|
|
width: auto;
|
|
|
|
padding: 0;
|
2018-08-10 22:38:24 +03:00
|
|
|
border: none;
|
2018-08-05 09:49:07 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-28 10:18:55 +03:00
|
|
|
}
|
2020-04-18 11:50:01 +03:00
|
|
|
|
2018-08-04 18:52:56 +03:00
|
|
|
.short-urls-row__cell--break {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
2018-07-28 10:18:55 +03:00
|
|
|
|
|
|
|
.short-urls-row__cell--relative {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-04-18 11:50:01 +03:00
|
|
|
.short-urls-row__cell--big {
|
|
|
|
transform: scale(1.5);
|
|
|
|
}
|
|
|
|
|
2018-07-28 10:18:55 +03:00
|
|
|
.short-urls-row__copy-hint {
|
2020-03-06 23:22:07 +03:00
|
|
|
@include vertical-align(translateX(10px));
|
2020-12-30 22:05:04 +03:00
|
|
|
|
2020-03-06 23:22:07 +03:00
|
|
|
box-shadow: 0 3px 15px rgba(0, 0, 0, .25);
|
2018-08-05 11:08:17 +03:00
|
|
|
|
2020-12-30 22:05:04 +03:00
|
|
|
@media (max-width: $responsiveTableBreakpoint) {
|
2020-03-06 23:22:07 +03:00
|
|
|
@include vertical-align(translateX(calc(-100% - 20px)));
|
2018-08-05 11:08:17 +03:00
|
|
|
}
|
2018-07-28 10:18:55 +03:00
|
|
|
}
|