]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/app/+my-account/my-account-videos/my-account-videos.component.scss
Make video-add-nav tabs scrollable on small devices (#2677)
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-videos / my-account-videos.component.scss
... / ...
CommitLineData
1@import '_variables';
2@import '_mixins';
3
4.videos-header {
5 display: flex;
6 justify-content: space-between;
7 margin: 20px 0 50px;
8
9 h4,
10 .fake-element {
11 flex: 1;
12 }
13
14 input[type=text] {
15 @include peertube-input-text(300px);
16 }
17}
18
19.action-button-delete-selection {
20 display: inline-block;
21
22 @include peertube-button;
23 @include orange-button;
24 @include button-with-icon(21px);
25
26 my-global-icon {
27 @include apply-svg-color(#fff);
28 }
29}
30
31::ng-deep {
32 .action-button span {
33 white-space: nowrap;
34 }
35
36 .video-miniature {
37 &.display-as-row {
38 // width: min-content !important;
39 width: 100% !important;
40
41 .video-bottom .video-miniature-information {
42 width: max-content !important;
43 min-width: unset !important;
44 }
45 }
46
47 .video-bottom {
48 max-width: 350px;
49 }
50 }
51}
52
53my-delete-button,
54my-edit-button {
55 margin-right: 10px;
56}