0
나는 색상 변수의 무리 선언이 :리팩터링 LESS 코드는
@green: #00a75c;
@darkgreen: #118335;
@blue: #0099ff;
@orange: #f7931e;
@sapphire: #303a96;
@gray: #4d4d4d;
내가 사용 CMS는 옵션으로 각각의 색깔이있다. 따라서 생성 된 html은 이러한 색상 이름 중 하나를 형제로 사용합니다. 이런 식으로 뭔가가 생성됩니다 :
.thing{
&.orange{
color: @orange;
border: @orange solid 1px;
}
&.blue{
color: @blue;
border: @blue solid 1px;
}
&.sapphire{
color: @sapphire;
border: @sapphire solid 1px;
}
&.green{
color: @green;
border: @green solid 1px;
}
&:hover{
text-decoration: none;
color: white;
&.orange{background-color: @orange;}
&.blue{background-color: @blue;}
&.sapphire{background-color: @sapphire;}
&.green{background-color: @green;}
}
}
이 리팩토링하는 가장 좋은 방법은 무엇입니까 : 내 적은 코드의 요소를 대상으로하는 방법
<div class="thing orange">
</div>
이 현재 무엇입니까? 나는 거대한 mixin, 하나의 거대한 mixin을 만들어야합니까? 색상을 어떻게 든 반복 할 수 있습니까?
http://stackoverflow.com/questions/21440789를 참조하십시오. 기술적으로는 개별 변수 대신 색상 배열을 사용하고 이름 배열을 사용하는 것이 더 효율적입니다 (예 : http://stackoverflow.com/questions/23658087 참조). –
@ seven-phases-max : 네, 두 번째 옵션이 훨씬 좋습니다. [This] (http://stackoverflow.com/questions/24757612/simplifying-repetitive-less/24758422#24758422)는 제가 어제 게시 한 또 다른 관련 답변입니다. – Harry