mirror of https://github.com/Chocobozzz/PeerTube
Fix search input ellipsis
parent
99091da7c5
commit
e0901185ff
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## v6.3.0-rc.1
|
## v6.3.0-rc.1 (not released yet)
|
||||||
|
|
||||||
### IMPORTANT NOTES
|
### IMPORTANT NOTES
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
@use '_mixins' as *;
|
@use '_mixins' as *;
|
||||||
|
|
||||||
#search-video {
|
#search-video {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
@include peertube-input-text($search-input-width, 14px);
|
@include peertube-input-text($search-input-width, 14px);
|
||||||
@include padding-left(10px);
|
@include padding-left(10px);
|
||||||
@include padding-right(40px); // For the search icon
|
@include padding-right(40px); // For the search icon
|
||||||
|
|
|
@ -142,8 +142,6 @@ class SettingsMenuItem extends MenuItem {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
createEl () {
|
createEl () {
|
||||||
console.log('create el')
|
|
||||||
|
|
||||||
const el = videojs.dom.createEl('li', {
|
const el = videojs.dom.createEl('li', {
|
||||||
className: 'vjs-menu-item',
|
className: 'vjs-menu-item',
|
||||||
tabIndex: 0
|
tabIndex: 0
|
||||||
|
|
Loading…
Reference in New Issue