mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-30 02:52:22 +08:00
Add minimal table styling
This commit is contained in:
parent
80fbecaa0c
commit
7d98357a36
1 changed files with 146 additions and 0 deletions
|
@ -0,0 +1,146 @@
|
||||||
|
/**
|
||||||
|
* SuiteCRM is a customer relationship management program developed by SalesAgility Ltd.
|
||||||
|
* Copyright (C) 2024 SalesAgility Ltd.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify it under
|
||||||
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
||||||
|
* Free Software Foundation with the addition of the following permission added
|
||||||
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||||
|
* IN WHICH THE COPYRIGHT IS OWNED BY SALESAGILITY, SALESAGILITY DISCLAIMS THE
|
||||||
|
* WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||||
|
* details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* In accordance with Section 7(b) of the GNU Affero General Public License
|
||||||
|
* version 3, these Appropriate Legal Notices must retain the display of the
|
||||||
|
* "Supercharged by SuiteCRM" logo. If the display of the logos is not reasonably
|
||||||
|
* feasible for technical reasons, the Appropriate Legal Notices must display
|
||||||
|
* the words "Supercharged by SuiteCRM".
|
||||||
|
*/
|
||||||
|
|
||||||
|
.minimal-table {
|
||||||
|
|
||||||
|
.list-view-tableactions {
|
||||||
|
background: none;
|
||||||
|
padding: 0;
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
|
||||||
|
.table-pagination-wrapper {
|
||||||
|
min-height: 2.4rem;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.bulk-action {
|
||||||
|
display: flex !important;
|
||||||
|
color: $main;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.load-more-style {
|
||||||
|
.load-more {
|
||||||
|
color: $main;
|
||||||
|
background-color: $white;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
scrm-image {
|
||||||
|
display: none;
|
||||||
|
fill: $main !important;
|
||||||
|
font-size: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-body-wrapper {
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
margin-right: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-view-table {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
thead {
|
||||||
|
background: none;
|
||||||
|
|
||||||
|
th {
|
||||||
|
border-top: 0;
|
||||||
|
border-bottom: 1px solid $lightgray;
|
||||||
|
padding-top: 0;
|
||||||
|
padding-right: 0.45rem;
|
||||||
|
padding-left: 0.45rem;
|
||||||
|
padding-bottom: 0.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tr {
|
||||||
|
padding-left: 0.5rem;
|
||||||
|
padding-right: 0.5rem;
|
||||||
|
border-bottom: 1px solid $lightgray;
|
||||||
|
}
|
||||||
|
|
||||||
|
td:first-child, th:first-child {
|
||||||
|
padding-left: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
td:last-child, th:last-child {
|
||||||
|
padding-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.primary-table-header {
|
||||||
|
background: none;
|
||||||
|
color: $main;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cdk-column-line-actions {
|
||||||
|
width: auto;
|
||||||
|
|
||||||
|
.listview-actions {
|
||||||
|
.icon-bar-block {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagination-button {
|
||||||
|
border: none;
|
||||||
|
margin: 0 0.1em;
|
||||||
|
border-radius: .2em;
|
||||||
|
|
||||||
|
.pagination-icons {
|
||||||
|
fill: $main;
|
||||||
|
margin: 0.1em;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
height: 2em;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sort-icon {
|
||||||
|
//fill: $midnight-blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagination-count {
|
||||||
|
vertical-align: text-bottom;
|
||||||
|
margin: 0.2em 0.3em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.list-view-table {
|
||||||
|
tr:nth-child(even) {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue