toulouse-2022: change select arrow down color (#69091)

This commit is contained in:
Nicolas Roche 2022-09-12 15:43:22 +02:00
parent 493a010202
commit dea3c93ab0
3 changed files with 25 additions and 1 deletions

View File

@ -21,12 +21,15 @@ static/lomme/_data_uris.scss: $(wildcard static/lomme/img/*)
static/hellemmes/_data_uris.scss: $(wildcard static/hellemmes/img/*)
python3 make_data_uris.py static/hellemmes/
static/toulouse-2022/_data_uris.scss: $(wildcard static/toulouse-2022/img/*)
python3 make_data_uris.py static/toulouse-2022/
themes.json: $(wildcard static/*/config.json) help/fr/misc-scss.page
python3 create_themes_json.py
%.css: export LC_ALL=C.UTF-8
.SECONDEXPANSION:
%.css: %.scss $(wildcard static/includes/*.scss static/includes/*/*.scss) static/includes/_data_uris.scss static/lille/_data_uris.scss static/lomme/_data_uris.scss static/hellemmes/_data_uris.scss static/toodego/_data_uris.scss $$(wildcard $$(@D)/*.scss)
%.css: %.scss $(wildcard static/includes/*.scss static/includes/*/*.scss) static/includes/_data_uris.scss static/lille/_data_uris.scss static/lomme/_data_uris.scss static/hellemmes/_data_uris.scss static/toodego/_data_uris.scss static/toulouse-2022/_data_uris.scss $$(wildcard $$(@D)/*.scss)
sassc --sourcemap $< $@
css: $(shell python3 get_themes.py) static/portal-agent/css/agent-portal.css static/includes/gadjo-extra.css

View File

@ -1,3 +1,5 @@
@import 'data_uris';
@mixin fill-viewport($add-padding-right: 0, $add-padding-left: 0) {
width: 100vw;
margin-left: calc(-50vw + 50%);
@ -488,6 +490,18 @@ div#rub_service {
}
}
select {
background-image: url($data_uri_arrow-down-colour-thin);
}
// select2
div.select2-container,
span.select2-container {
.select2-selection--single .select2-selection__arrow {
background-image: url($data_uri_arrow-down-colour-thin);
}
}
//
// FOOTER
//

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<polygon
points="12 17.414 1.879 7.293 4.707 7.293 12 14.586 19.293 7.293 22.121 7.293 12 17.414"
fill="#D8522A"
/>
</svg>

After

Width:  |  Height:  |  Size: 278 B