You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
599 B
42 lines
599 B
@dtp-border-thick: 3px;
|
|
|
|
.dtp-border {
|
|
border: solid;
|
|
border-width: 1px;
|
|
|
|
&.dtp-border-thick {
|
|
border-width: @dtp-border-thick;
|
|
}
|
|
}
|
|
|
|
.dtp-border-top {
|
|
border-top: solid 1px;
|
|
|
|
&.dtp-border-thick {
|
|
border-width: @dtp-border-thick;
|
|
}
|
|
}
|
|
|
|
.dtp-border-bottom {
|
|
border-bottom: solid 1px;
|
|
|
|
&.dtp-border-thick {
|
|
border-width: @dtp-border-thick;
|
|
}
|
|
}
|
|
|
|
.dtp-border-left {
|
|
border-left: solid 1px;
|
|
|
|
&.dtp-border-thick {
|
|
border-width: @dtp-border-thick;
|
|
}
|
|
}
|
|
|
|
.dtp-border-right {
|
|
border-right: solid 1px;
|
|
|
|
&.dtp-border-thick {
|
|
border-width: @dtp-border-thick;
|
|
}
|
|
}
|