diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-01-21 09:35:23 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-01-21 09:35:23 +0100 |
commit | aa0f19635ae4632e286de1599fc24f95f32a108c (patch) | |
tree | 347518feb2534da9466b169a48a6cead0e1f2999 /client/src/sass/bootstrap.scss | |
parent | a56053a2a49431aeddcf8bcdd804b2e0abb93621 (diff) | |
download | PeerTube-aa0f19635ae4632e286de1599fc24f95f32a108c.tar.gz PeerTube-aa0f19635ae4632e286de1599fc24f95f32a108c.tar.zst PeerTube-aa0f19635ae4632e286de1599fc24f95f32a108c.zip |
Add manage buttons for own channels and account, video counts (#2421)
* Add manage buttons for own channels and account, video counts
* Change manage button color and introduce secondary color
Diffstat (limited to 'client/src/sass/bootstrap.scss')
-rw-r--r-- | client/src/sass/bootstrap.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index dc0d075c9..fca116701 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -170,3 +170,13 @@ ngb-tabset.bootstrap { | |||
170 | ngb-modal-backdrop { | 170 | ngb-modal-backdrop { |
171 | z-index: 10000 !important; | 171 | z-index: 10000 !important; |
172 | } | 172 | } |
173 | |||
174 | .btn-outline-tertiary { | ||
175 | color: var(--secondaryColor); | ||
176 | border-color: var(--secondaryColor); | ||
177 | |||
178 | &:hover { | ||
179 | color: var(--mainBackgroundColor); | ||
180 | background-color: var(--secondaryColor); | ||
181 | } | ||
182 | } | ||