Fix occitan label
authorChocobozzz <me@florianbigard.com>
Wed, 5 Sep 2018 13:59:43 +0000 (15:59 +0200)
committerChocobozzz <me@florianbigard.com>
Wed, 5 Sep 2018 13:59:43 +0000 (15:59 +0200)
client/src/sass/application.scss
client/src/sass/include/_variables.scss
server/initializers/constants.ts

index b96cf07c0849e4bfc3b035d1cd71196e8b6545f6..bf4cccaaf9eb5b6be670726ef720165491c5fa94 100644 (file)
@@ -27,7 +27,7 @@ body {
   --mainBackgroundColor: #{$bg-color};
   --mainForegroundColor: #{$fg-color};
   --submenuColor: #{$sub-menu-color};
-  --inputColor: #{$input-color};
+  --inputColor: #{$input-background-color};
   --inputPlaceholderColor: #{$input-placeholder-color};
 
   font-family: $main-fonts;
index 0735a00a0f71e0a680a98a71e63936433990a083..6ea48f80019640295d2892d57c12f9a8ba388ebd 100644 (file)
@@ -46,7 +46,7 @@ $video-thumbnail-width: 200px;
 
 $theater-bottom-space: 85px;
 
-$input-color: inherit;
+$input-background-color: $bg-color;
 $input-placeholder-color: #898989;
 
 /*** map theme ***/
index efe27a241c764f69f3460e4d3baffc2e44dde9b0..ba8b9b6ed268491ea9aca3fbf94507bafcd531de 100644 (file)
@@ -755,6 +755,9 @@ function buildLanguages () {
     })
     .forEach(l => languages[l.iso6391 || l.iso6393] = l.name)
 
+  // Override Occitan label
+  languages['oc'] = 'Occitan'
+
   return languages
 }