SPR-742: Konfigurierbarkeit check border-radius

This commit is contained in:
Silke Pisulla 2017-03-22 14:42:34 +01:00
commit 0b41f4a629
4 changed files with 7 additions and 23 deletions

View file

@ -31,7 +31,7 @@
height: 100%;
background-color: @button_background;
border: solid 1px @button_background;
border-radius: @fix_border-radius 0 0 @fix_border-radius;
border-radius: @border-radius 0 0 @border-radius; // @border-radius vs. @fix_border-radius
color: @button_color;
text-decoration: none;
transition: @transition color, @transition background-color, @transition border-color;
@ -78,7 +78,7 @@
a {
background-color: @button_background;
border-color: @button_background;
border-radius: 0 @fix_border-radius @fix_border-radius 0;
border-radius: 0 @border-radius @border-radius 0; // @border-radius vs. @fix_border-radius
&::before {
opacity: .6;
@ -107,21 +107,3 @@
}
}
}
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* min-width: 1440px */
@media @screen_min-xlg {
.togglelink {
}
}
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* max-width: 1199px */
@media @screen_max-xlg {
.togglelink {
}
}