2020-08-13 08:23:50 +00:00
|
|
|
$buildings: belt, cutter, miner, mixer, painter, rotater, splitter, stacker, trash, underground_belt, wire,
|
2020-08-14 12:55:37 +00:00
|
|
|
constant_signal, logic_gate, lever, filter, wire_tunnel, display;
|
2020-05-09 14:45:23 +00:00
|
|
|
|
|
|
|
@each $building in $buildings {
|
2020-05-16 20:45:40 +00:00
|
|
|
[data-icon="building_icons/#{$building}.png"] {
|
|
|
|
background-image: uiResource("res/ui/building_icons/#{$building}.png") !important;
|
2020-05-09 14:45:23 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-16 10:43:11 +00:00
|
|
|
|
2020-05-21 09:40:26 +00:00
|
|
|
$buildingsAndVariants: belt, splitter, splitter-compact, splitter-compact-inverse, underground_belt,
|
2020-07-17 03:52:10 +00:00
|
|
|
underground_belt-tier2, miner, miner-chainable, cutter, cutter-quad, rotater, rotater-ccw, rotater-fl,
|
|
|
|
stacker, mixer, painter, painter-double, painter-quad, trash, trash-storage;
|
2020-05-21 09:40:26 +00:00
|
|
|
@each $building in $buildingsAndVariants {
|
|
|
|
[data-icon="building_tutorials/#{$building}.png"] {
|
|
|
|
background-image: uiResource("res/ui/building_tutorials/#{$building}.png") !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-16 09:57:17 +00:00
|
|
|
// Special case
|
|
|
|
[data-icon="building_tutorials/painter-mirrored.png"] {
|
|
|
|
background-image: uiResource("res/ui/building_tutorials/painter.png") !important;
|
|
|
|
}
|
|
|
|
|
2020-05-16 10:43:11 +00:00
|
|
|
$icons: notification_saved, notification_success, notification_upgrade;
|
|
|
|
@each $icon in $icons {
|
|
|
|
[data-icon="icons/#{$icon}.png"] {
|
|
|
|
background-image: uiResource("res/ui/icons/#{$icon}.png") !important;
|
|
|
|
}
|
|
|
|
}
|
2020-06-10 10:29:21 +00:00
|
|
|
|
2020-06-24 20:23:10 +00:00
|
|
|
$languages: en, de, cs, da, et, es-419, fr, it, pt-BR, sv, tr, el, ru, uk, zh-TW, zh-CN, nb, mt-MT, ar, nl, vi,
|
|
|
|
th, hu, pl, ja, kor, no, pt-PT;
|
2020-06-10 10:29:21 +00:00
|
|
|
|
|
|
|
@each $language in $languages {
|
|
|
|
[data-languageicon="#{$language}"] {
|
|
|
|
background-image: uiResource("languages/#{$language}.svg") !important;
|
|
|
|
}
|
|
|
|
}
|