diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-01-20 15:12:51 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-02-13 16:32:21 +0100 |
commit | f409f0c3b91d85c66b4841d72ea65b5fbe1483d8 (patch) | |
tree | 72c2ab403f6b0708921b64bafae5ef971dfbde3e /client/src/sass | |
parent | 36f2981f7d586cea206e4c143c18cf866a4e3acd (diff) | |
download | PeerTube-f409f0c3b91d85c66b4841d72ea65b5fbe1483d8.tar.gz PeerTube-f409f0c3b91d85c66b4841d72ea65b5fbe1483d8.tar.zst PeerTube-f409f0c3b91d85c66b4841d72ea65b5fbe1483d8.zip |
Search typeahead initial design
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/bootstrap.scss | 4 | ||||
-rw-r--r-- | client/src/sass/include/_mixins.scss | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index a17d9c048..be5879b50 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -9,6 +9,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
9 | animation: spin .7s infinite linear; | 9 | animation: spin .7s infinite linear; |
10 | } | 10 | } |
11 | 11 | ||
12 | .flex-auto { | ||
13 | flex: auto; | ||
14 | } | ||
15 | |||
12 | @keyframes spin { | 16 | @keyframes spin { |
13 | from { | 17 | from { |
14 | transform: scale(1) rotate(0deg); | 18 | transform: scale(1) rotate(0deg); |
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 317781e0e..ed2cacdd1 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -11,11 +11,6 @@ | |||
11 | &:focus:not(.focus-visible) { | 11 | &:focus:not(.focus-visible) { |
12 | outline: none; | 12 | outline: none; |
13 | } | 13 | } |
14 | |||
15 | &::-moz-focus-inner { | ||
16 | border: 0; | ||
17 | padding: 0 | ||
18 | } | ||
19 | } | 14 | } |
20 | 15 | ||
21 | 16 | ||