ColorPopup.js
1 week ago
ColorPopup.scss
1 week ago
EntitySearchDropdown.js
1 week ago
EntitySearchDropdown.scss
1 week ago
LoadSelect.js
5 years ago
ProBadge.js
5 years ago
SelectMediaDropdown.js
1 week ago
SelectMediaDropdown.scss
1 week ago
Tag.js
1 week ago
Tag.scss
1 week ago
TranscriptionLanguageSelect.js
1 week ago
UrlSelect.js
1 week ago
UrlSelect.scss
1 week ago
VideoIcon.js
1 week ago
VideoIcon.scss
1 week ago
UrlSelect.scss
59 lines
| 1 | .presto-url-select { |
| 2 | &__display { |
| 3 | display: flex; |
| 4 | justify-content: space-between; |
| 5 | } |
| 6 | |
| 7 | &__url-container { |
| 8 | max-width: 85%; |
| 9 | overflow: hidden; |
| 10 | display: flex; |
| 11 | align-items: center; |
| 12 | } |
| 13 | |
| 14 | &__link { |
| 15 | padding: 10px; |
| 16 | background: #f3f3f3; |
| 17 | border-radius: 4px; |
| 18 | width: 100%; |
| 19 | display: inline-flex; |
| 20 | align-items: center; |
| 21 | white-space: nowrap; |
| 22 | overflow: hidden; |
| 23 | text-overflow: ellipsis; |
| 24 | text-decoration: none; |
| 25 | } |
| 26 | |
| 27 | &__edit-icon { |
| 28 | cursor: pointer; |
| 29 | opacity: 0.75; |
| 30 | margin: 0 2px; |
| 31 | font-size: 16px; |
| 32 | width: 16px; |
| 33 | height: 16px; |
| 34 | text-decoration: none; |
| 35 | } |
| 36 | |
| 37 | &__actions { |
| 38 | display: flex; |
| 39 | align-items: center; |
| 40 | } |
| 41 | |
| 42 | &__trash-icon { |
| 43 | cursor: pointer; |
| 44 | opacity: 0.75; |
| 45 | margin: 0 2px; |
| 46 | font-size: 18px; |
| 47 | width: 18px; |
| 48 | height: 18px; |
| 49 | |
| 50 | &:hover { |
| 51 | color: #cc1818; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | &__popover { |
| 56 | margin-top: 10px; |
| 57 | } |
| 58 | } |
| 59 |