diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-05-02 22:38:18 +0200 |
---|---|---|
committer | Rigel Kent <par@rigelk.eu> | 2020-05-04 15:01:44 +0200 |
commit | 0d3a2982a9b29bd66a05e4b36e606518d4c09959 (patch) | |
tree | 13bdc0886216a3bcf1cbaaf63d2c030237f871ca /client/src/sass/bootstrap.scss | |
parent | c2a89b70ce75c4955cbdb1ced6fd20a5010a8c9b (diff) | |
download | PeerTube-0d3a2982a9b29bd66a05e4b36e606518d4c09959.tar.gz PeerTube-0d3a2982a9b29bd66a05e4b36e606518d4c09959.tar.zst PeerTube-0d3a2982a9b29bd66a05e4b36e606518d4c09959.zip |
Switching to a named filters/single input on video-abuse
Diffstat (limited to 'client/src/sass/bootstrap.scss')
-rw-r--r-- | client/src/sass/bootstrap.scss | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 377c85070..50f1dafed 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -41,6 +41,10 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
41 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); | 41 | box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); |
42 | font-size: 15px; | 42 | font-size: 15px; |
43 | 43 | ||
44 | .dropdown-header { | ||
45 | padding-left: 1rem; | ||
46 | } | ||
47 | |||
44 | .dropdown-item { | 48 | .dropdown-item { |
45 | padding: 3px 15px; | 49 | padding: 3px 15px; |
46 | 50 | ||
@@ -262,6 +266,18 @@ ngb-tooltip-window { | |||
262 | } | 266 | } |
263 | } | 267 | } |
264 | 268 | ||
265 | .input-group > .form-control { | 269 | .input-group { |
266 | flex: initial; | 270 | & > .form-control { |
271 | flex: initial; | ||
272 | } | ||
273 | |||
274 | .input-group-prepend, | ||
275 | .input-group-append { | ||
276 | height: 30px; | ||
277 | } | ||
278 | |||
279 | .input-group-prepend + input { | ||
280 | border-top-left-radius: 0 !important; | ||
281 | border-bottom-left-radius: 0 !important; | ||
282 | } | ||
267 | } | 283 | } |