diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-08 11:30:48 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-08 11:30:58 +0100 |
commit | 108af66140713c4beec681a71d360ab788226528 (patch) | |
tree | cbc59800ee72a158ac5adfe6984470175a02d66c /client/src/sass | |
parent | 2cfe649635088de8582b3808b320dab598cb95c9 (diff) | |
download | PeerTube-108af66140713c4beec681a71d360ab788226528.tar.gz PeerTube-108af66140713c4beec681a71d360ab788226528.tar.zst PeerTube-108af66140713c4beec681a71d360ab788226528.zip |
Fix overflow in select inputs
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 7bfc93f08..1237e675d 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -146,7 +146,7 @@ | |||
146 | } | 146 | } |
147 | 147 | ||
148 | select { | 148 | select { |
149 | padding: 0 12px; | 149 | padding: 0 35px 0 12px; |
150 | width: calc(100% + 2px); | 150 | width: calc(100% + 2px); |
151 | position: relative; | 151 | position: relative; |
152 | left: 1px; | 152 | left: 1px; |
@@ -156,6 +156,7 @@ | |||
156 | appearance: none; | 156 | appearance: none; |
157 | cursor: pointer; | 157 | cursor: pointer; |
158 | height: $button-height; | 158 | height: $button-height; |
159 | text-overflow: ellipsis; | ||
159 | 160 | ||
160 | &:focus { | 161 | &:focus { |
161 | outline: none; | 162 | outline: none; |