aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account-videos/account-videos.component.scss
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-12-04 11:04:08 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-12-04 11:04:08 +0100
commitd2cc03aaad62fa6cf1c64622229bcc83f24fccb6 (patch)
tree75f99b2bd38b3a9a632293575ad5601a90fadb7f /client/src/app/account/account-videos/account-videos.component.scss
parentd178b5c1f8eabb0face854d48e708f0ac72e7d2e (diff)
downloadPeerTube-d2cc03aaad62fa6cf1c64622229bcc83f24fccb6.tar.gz
PeerTube-d2cc03aaad62fa6cf1c64622229bcc83f24fccb6.tar.zst
PeerTube-d2cc03aaad62fa6cf1c64622229bcc83f24fccb6.zip
Design account videos
Diffstat (limited to 'client/src/app/account/account-videos/account-videos.component.scss')
-rw-r--r--client/src/app/account/account-videos/account-videos.component.scss44
1 files changed, 44 insertions, 0 deletions
diff --git a/client/src/app/account/account-videos/account-videos.component.scss b/client/src/app/account/account-videos/account-videos.component.scss
index e69de29bb..b26933d22 100644
--- a/client/src/app/account/account-videos/account-videos.component.scss
+++ b/client/src/app/account/account-videos/account-videos.component.scss
@@ -0,0 +1,44 @@
1.video {
2 display: flex;
3 height: 130px;
4 padding-bottom: 20px;
5 margin-bottom: 20px;
6 border-bottom: 1px solid #C6C6C6;
7
8 my-video-thumbnail {
9 margin-right: 10px;
10 }
11
12 .video-info {
13 flex-grow: 1;
14
15 .video-info-name {
16 font-size: 16px;
17 font-weight: $font-semibold;
18 }
19
20 .video-info-date-views {
21 font-size: 13px;
22 }
23 }
24
25 .edit-button {
26 @include peertube-button-link;
27
28 font-size: 15px;
29 font-weight: $font-semibold;
30 color: #585858;
31 background-color: #E5E5E5;
32
33 .icon.icon-edit {
34 display: inline-block;
35 background: url('../../../assets/images/account/edit.svg') no-repeat;
36 background-size: contain;
37 width: 21px;
38 height: 21px;
39 vertical-align: middle;
40 position: relative;
41 top: -2px;
42 }
43 }
44}