mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
63 lines
1.1 KiB
SCSS
63 lines
1.1 KiB
SCSS
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
/* For Report Print */
|
|
|
|
/* crmv@96742 */
|
|
|
|
/* Import variables */
|
|
@import 'vars/variables';
|
|
|
|
/* Import colors */
|
|
@import 'vars/colors';
|
|
|
|
/* Import mixins */
|
|
@import 'vars/mixins';
|
|
|
|
body {
|
|
font-family: $font-family-base;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.rptTable {
|
|
|
|
width:100%;
|
|
border:1px solid $black;
|
|
border-collapse: collapse;
|
|
|
|
& > thead > tr > th {
|
|
color: $white;
|
|
background-color: $grey-700;
|
|
|
|
border-bottom:2px solid $black;
|
|
border-left:1px solid $black;
|
|
border-top:1px solid $black;
|
|
border-right:1px solid $black;
|
|
}
|
|
|
|
& > tbody > tr > td {
|
|
border:1px dotted $black;
|
|
text-align:left;
|
|
|
|
&.rptEmptyGrp {
|
|
background-color: $white;
|
|
|
|
border-top: 1px solid transparent;
|
|
border-bottom: none;
|
|
|
|
}
|
|
}
|
|
|
|
&.table-striped > tbody > tr {
|
|
&:nth-of-type(odd) {
|
|
background-color: $grey-300;
|
|
}
|
|
&:nth-of-type(even) {
|
|
background-color: $white;
|
|
}
|
|
}
|
|
|
|
}
|