diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-26 16:11:38 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-26 16:18:01 +0200 |
commit | 08c1efbe32244c321de28b0f2a6aaa3f99f46b58 (patch) | |
tree | 10a1b6c12f3e30a20f3d0dd66c698d9bae2aa41f /client/src/sass | |
parent | 7de6afdf542da6968d3f412df9c3318ba19ad229 (diff) | |
download | PeerTube-08c1efbe32244c321de28b0f2a6aaa3f99f46b58.tar.gz PeerTube-08c1efbe32244c321de28b0f2a6aaa3f99f46b58.tar.zst PeerTube-08c1efbe32244c321de28b0f2a6aaa3f99f46b58.zip |
Add video channel management
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/application.scss | 4 | ||||
-rw-r--r-- | client/src/sass/include/_mixins.scss | 12 |
2 files changed, 14 insertions, 2 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index f2d9f7201..9aef0c56d 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -118,12 +118,12 @@ label { | |||
118 | align-items: center; | 118 | align-items: center; |
119 | margin-bottom: 30px; | 119 | margin-bottom: 30px; |
120 | 120 | ||
121 | .admin-sub-title { | 121 | .form-sub-title { |
122 | flex-grow: 1; | 122 | flex-grow: 1; |
123 | } | 123 | } |
124 | } | 124 | } |
125 | 125 | ||
126 | .admin-sub-title { | 126 | .form-sub-title { |
127 | font-size: 20px; | 127 | font-size: 20px; |
128 | font-weight: bold; | 128 | font-weight: bold; |
129 | } | 129 | } |
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 675cccfeb..ffbedd3f5 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -377,4 +377,16 @@ | |||
377 | margin-bottom: 0; | 377 | margin-bottom: 0; |
378 | } | 378 | } |
379 | } | 379 | } |
380 | } | ||
381 | |||
382 | @mixin create-button { | ||
383 | @include peertube-button-link; | ||
384 | @include orange-button; | ||
385 | |||
386 | .icon.icon-add { | ||
387 | @include icon(22px); | ||
388 | |||
389 | margin-right: 3px; | ||
390 | background-image: url('/assets/images/admin/add.svg'); | ||
391 | } | ||
380 | } \ No newline at end of file | 392 | } \ No newline at end of file |