diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-28 17:39:29 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-28 17:39:29 +0200 |
commit | 41a676db3989fe3eca91301ac5f5aea30d98654a (patch) | |
tree | 00a28c9110cdd351435ec0c066599763748119e7 /client/src/sass | |
parent | f0d4e7eb240f256b4f01cde4a1cd6f66f8f4347c (diff) | |
download | PeerTube-41a676db3989fe3eca91301ac5f5aea30d98654a.tar.gz PeerTube-41a676db3989fe3eca91301ac5f5aea30d98654a.tar.zst PeerTube-41a676db3989fe3eca91301ac5f5aea30d98654a.zip |
Add features table on signup
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/application.scss | 4 | ||||
-rw-r--r-- | client/src/sass/include/_bootstrap.scss | 2 | ||||
-rw-r--r-- | client/src/sass/include/_variables.scss | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index b2d7c2bec..9c4811fec 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -53,12 +53,12 @@ label { | |||
53 | 53 | ||
54 | .form-error { | 54 | .form-error { |
55 | display: block; | 55 | display: block; |
56 | color: $red-error; | 56 | color: $red; |
57 | margin-top: 5px; | 57 | margin-top: 5px; |
58 | } | 58 | } |
59 | 59 | ||
60 | .input-error { | 60 | .input-error { |
61 | border-color: $red-error !important; | 61 | border-color: $red !important; |
62 | } | 62 | } |
63 | 63 | ||
64 | .glyphicon-black { | 64 | .glyphicon-black { |
diff --git a/client/src/sass/include/_bootstrap.scss b/client/src/sass/include/_bootstrap.scss index 5abec02d5..a8777af71 100644 --- a/client/src/sass/include/_bootstrap.scss +++ b/client/src/sass/include/_bootstrap.scss | |||
@@ -21,7 +21,7 @@ $nav-pills-link-active-color: #000; | |||
21 | //@import '~bootstrap/scss/images'; | 21 | //@import '~bootstrap/scss/images'; |
22 | //@import '~bootstrap/scss/code'; | 22 | //@import '~bootstrap/scss/code'; |
23 | @import '~bootstrap/scss/grid'; | 23 | @import '~bootstrap/scss/grid'; |
24 | //@import '~bootstrap/scss/tables'; | 24 | @import '~bootstrap/scss/tables'; |
25 | @import '~bootstrap/scss/forms'; | 25 | @import '~bootstrap/scss/forms'; |
26 | @import '~bootstrap/scss/buttons'; | 26 | @import '~bootstrap/scss/buttons'; |
27 | //@import '~bootstrap/scss/transitions'; | 27 | //@import '~bootstrap/scss/transitions'; |
diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss index e6db98642..ba7abeef1 100644 --- a/client/src/sass/include/_variables.scss +++ b/client/src/sass/include/_variables.scss | |||
@@ -10,7 +10,9 @@ $orange-hoover-color: #F97D46; | |||
10 | 10 | ||
11 | $black-background: #000; | 11 | $black-background: #000; |
12 | $grey-background: #f6f2f2; | 12 | $grey-background: #f6f2f2; |
13 | $red-error: #FF0000; | 13 | |
14 | $red: #FF0000; | ||
15 | $green: #39CC0B; | ||
14 | 16 | ||
15 | $grey-actor-name: #777272; | 17 | $grey-actor-name: #777272; |
16 | 18 | ||