aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2019-12-12 10:42:46 +0100
committerChocobozzz <chocobozzz@cpy.re>2019-12-13 09:13:43 +0100
commit1ae3f52a1601c6e54bd5d8239e9f32dac4063fe3 (patch)
treed8722d20c9c5f6c78522265cde100e96f2ac34bb /client
parent88a7f93f8e5666f44121a2e3cf9d33d74c472aa7 (diff)
downloadPeerTube-1ae3f52a1601c6e54bd5d8239e9f32dac4063fe3.tar.gz
PeerTube-1ae3f52a1601c6e54bd5d8239e9f32dac4063fe3.tar.zst
PeerTube-1ae3f52a1601c6e54bd5d8239e9f32dac4063fe3.zip
search bar shadow on focus
Diffstat (limited to 'client')
-rw-r--r--client/src/app/header/header.component.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/app/header/header.component.scss b/client/src/app/header/header.component.scss
index cea415d9b..736035b72 100644
--- a/client/src/app/header/header.component.scss
+++ b/client/src/app/header/header.component.scss
@@ -8,6 +8,16 @@
8 padding-right: 40px; // For the search icon 8 padding-right: 40px; // For the search icon
9 font-size: 14px; 9 font-size: 14px;
10 10
11 transition: box-shadow .3s ease;
12
13 /* light border style */
14 border: 1px solid var(--mainBackgroundColor);
15 box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 20px 0px;
16
17 &:focus {
18 box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 20px 0px;
19 }
20
11 &::placeholder { 21 &::placeholder {
12 color: var(--inputPlaceholderColor); 22 color: var(--inputPlaceholderColor);
13 } 23 }