1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .video-preview {
- max-height: 290px;
- overflow: auto;
-
- &-entry {
- cursor: pointer;
- height: 135px;
- margin-bottom: 16px;
- position: relative;
- width: 240px;
-
- &:last-child {
- margin-bottom: 0;
- }
-
- &--selected {
- border: 3px solid #31B76A;
- cursor: default;
- height: 129px;
- width: 234px;
- }
- }
-
- &-video {
- height: 100%;
- object-fit: cover;
- width: 100%;
- }
-
- &-overlay {
- background: rgba(42, 58, 75, 0.6);
- height: 100%;
- position: absolute;
- width: 100%;
- z-index: 1;
- }
-
- &-error {
- align-items: center;
- display: flex;
- height: 100%;
- justify-content: center;
- position: absolute;
- width: 100%;
- }
-
- &-label {
- color: #fff;
- font-size: 13px;
- line-height: 20px;
- overflow: hidden;
- padding: 8px;
- position: absolute;
- text-align: center;
- text-overflow: ellipsis;
- width: 220px;
- z-index: 2;
- }
-
- // Override @atlaskit/InlineDialog container which is made with styled components
- & > div > div:nth-child(2) > div > div {
- outline: none;
- padding: 16px;
- }
- }
|