diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-03 12:30:52 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-03 12:30:56 +0200 |
commit | 6a4c30de0e2ff82b8df1fc8ab4172ef63bd25566 (patch) | |
tree | e704bc3ae81de879a8b4b9b0036ca95c3591efe6 /client/src/sass/bootstrap.scss | |
parent | 23f1b9da1577c64e2caa1dff8f3aa92eb8d184cf (diff) | |
download | PeerTube-6a4c30de0e2ff82b8df1fc8ab4172ef63bd25566.tar.gz PeerTube-6a4c30de0e2ff82b8df1fc8ab4172ef63bd25566.tar.zst PeerTube-6a4c30de0e2ff82b8df1fc8ab4172ef63bd25566.zip |
Put box-shadow for input focus in variables, apply form-control to p-multiselect
Diffstat (limited to 'client/src/sass/bootstrap.scss')
-rw-r--r-- | client/src/sass/bootstrap.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index f0357b579..e8c4528f4 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -240,10 +240,10 @@ ngb-tooltip-window { | |||
240 | 240 | ||
241 | &:focus-within, | 241 | &:focus-within, |
242 | &:focus { | 242 | &:focus { |
243 | box-shadow: 0 0 0 .2rem var(--mainColorLightest); | 243 | box-shadow: #{$focus-box-shadow-form} var(--mainColorLightest); |
244 | 244 | ||
245 | &.input-error { | 245 | &.input-error { |
246 | box-shadow: 0 0 0 .2rem #{scale-color($red, $alpha: -75%)}; | 246 | box-shadow: #{$focus-box-shadow-form} #{scale-color($red, $alpha: -75%)}; |
247 | } | 247 | } |
248 | } | 248 | } |
249 | } | 249 | } |