[mod] simple theme: colors, autocomplete, border

* change colors, autocomplete, delete border in some places
This commit is contained in:
Monty 2022-03-30 17:09:40 +02:00 committed by mrpaulblack
parent 2bc836e85d
commit 2115f6565e
6 changed files with 100 additions and 51 deletions

View file

@ -46,10 +46,26 @@
border-radius: 0 @radius @radius 0;
}
.ltr-rounded-top-left-corners(@radius) {
border-radius: 0 @radius 0 0;
}
.ltr-rounded-bottom-left-corners(@radius) {
border-radius: 0 0 @radius 0;
}
.ltr-rounded-right-corners(@radius) {
border-radius: @radius 0 0 @radius;
}
.ltr-rounded-top-right-corners(@radius) {
border-radius: @radius 0 0 0;
}
.ltr-rounded-bottom-right-corners(@radius) {
border-radius: 0 0 0 @radius;
}
.ltr-text-align-left() {
text-align: right;
}