add rc3 theme (colors & background image), fix background of select2
This commit is contained in:
parent
18d5bd3bd4
commit
8f62e5bf15
|
@ -64,10 +64,11 @@ return [
|
||||||
],
|
],
|
||||||
|
|
||||||
// Default theme, 1=style1.css
|
// Default theme, 1=style1.css
|
||||||
'theme' => env('THEME', 1),
|
'theme' => env('THEME', 13),
|
||||||
|
|
||||||
// Available themes
|
// Available themes
|
||||||
'available_themes' => [
|
'available_themes' => [
|
||||||
|
'13' => 'Engelsystem rC3 (2020)',
|
||||||
'12' => 'Engelsystem 36c3 (2019)',
|
'12' => 'Engelsystem 36c3 (2019)',
|
||||||
'10' => 'Engelsystem cccamp19 green (2019)',
|
'10' => 'Engelsystem cccamp19 green (2019)',
|
||||||
'9' => 'Engelsystem cccamp19 yellow (2019)',
|
'9' => 'Engelsystem cccamp19 yellow (2019)',
|
||||||
|
|
|
@ -144,7 +144,7 @@ table a > .icon-icon_angel {
|
||||||
}
|
}
|
||||||
|
|
||||||
.select2-dropdown {
|
.select2-dropdown {
|
||||||
background-color: @brand-primary;
|
background-color: @input-bg;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selection .checkbox {
|
.selection .checkbox {
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
|
@ -24,7 +24,7 @@ const plugins = [
|
||||||
|
|
||||||
|
|
||||||
const themeEntries = {};
|
const themeEntries = {};
|
||||||
for (let i = 0; i < 13; i++) {
|
for (let i = 13; i < 14; i++) {
|
||||||
themeEntries[`theme${i}`] = `./resources/assets/themes/theme${i}.less`;
|
themeEntries[`theme${i}`] = `./resources/assets/themes/theme${i}.less`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ module.exports = {
|
||||||
loader: 'babel-loader',
|
loader: 'babel-loader',
|
||||||
query: { cacheDirectory: true },
|
query: { cacheDirectory: true },
|
||||||
},
|
},
|
||||||
{ test: /\.(eot|ttf|otf|svg|woff2?)(\?.*)?$/, loader: 'file-loader' },
|
{ test: /\.(jpg|eot|ttf|otf|svg|woff2?)(\?.*)?$/, loader: 'file-loader' },
|
||||||
{ test: /\.json$/, loader: 'json-loader' },
|
{ test: /\.json$/, loader: 'json-loader' },
|
||||||
{
|
{
|
||||||
test: /\.(less|css)$/,
|
test: /\.(less|css)$/,
|
||||||
|
|
Loading…
Reference in New Issue