Compare commits
3 commits
kb_develop
...
kb18.0
Author | SHA1 | Date | |
---|---|---|---|
|
b091cbdbea | ||
|
8992602acf | ||
|
c68762e2bf |
3 changed files with 14 additions and 11 deletions
|
@ -1,11 +1,14 @@
|
||||||
$classic-base-color: #282c37; // Midnight Express
|
$classic-base-color: #282c37; // Midnight Express
|
||||||
$classic-secondary-color: #d9e1e8; // Pattens Blue
|
$classic-secondary-color: #d9e1e8; // Pattens Blue
|
||||||
|
|
||||||
|
@use '../mastodon/variables' with (
|
||||||
// Variables for defaults in UI
|
// Variables for defaults in UI
|
||||||
$simple-background-color: $classic-base-color !default;
|
$simple-background-color: $classic-base-color,
|
||||||
|
|
||||||
// Tell UI to use selected colors
|
// Tell UI to use selected colors
|
||||||
$ui-base-lighter-color: #969fbc !default; // Lighter darkest
|
$ui-base-lighter-color: #969fbc,
|
||||||
|
|
||||||
|
// Lighter darkest
|
||||||
// For texts on inverted backgrounds
|
// For texts on inverted backgrounds
|
||||||
$inverted-text-color: $classic-secondary-color !default;
|
$inverted-text-color: $classic-secondary-color
|
||||||
|
);
|
||||||
|
|
|
@ -59,7 +59,7 @@ services:
|
||||||
web:
|
web:
|
||||||
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
|
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
|
||||||
build: .
|
build: .
|
||||||
image: kmyblue:18.0-dev
|
image: kmyblue:18.0
|
||||||
restart: always
|
restart: always
|
||||||
env_file: .env.production
|
env_file: .env.production
|
||||||
command: bundle exec puma -C config/puma.rb
|
command: bundle exec puma -C config/puma.rb
|
||||||
|
@ -83,7 +83,7 @@ services:
|
||||||
build:
|
build:
|
||||||
dockerfile: ./streaming/Dockerfile
|
dockerfile: ./streaming/Dockerfile
|
||||||
context: .
|
context: .
|
||||||
image: kmyblue-streaming:18.0-dev
|
image: kmyblue-streaming:18.0
|
||||||
restart: always
|
restart: always
|
||||||
env_file: .env.production
|
env_file: .env.production
|
||||||
command: node ./streaming/index.js
|
command: node ./streaming/index.js
|
||||||
|
@ -101,7 +101,7 @@ services:
|
||||||
|
|
||||||
sidekiq:
|
sidekiq:
|
||||||
build: .
|
build: .
|
||||||
image: kmyblue:18.0-dev
|
image: kmyblue:18.0
|
||||||
restart: always
|
restart: always
|
||||||
env_file: .env.production
|
env_file: .env.production
|
||||||
command: bundle exec sidekiq
|
command: bundle exec sidekiq
|
||||||
|
|
|
@ -18,8 +18,8 @@ module Mastodon
|
||||||
|
|
||||||
def kmyblue_flag
|
def kmyblue_flag
|
||||||
# 'LTS'
|
# 'LTS'
|
||||||
'dev'
|
# 'dev'
|
||||||
# nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
def major
|
def major
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue