169 lines
3.5 KiB
CSS
169 lines
3.5 KiB
CSS
:root {
|
|
--header-line-height: 26px;
|
|
--cell-line-height: 20px;
|
|
--header-border-color: #aaa;
|
|
--cell-border-color: #e0e0e0;
|
|
--font-size: 12px;
|
|
}
|
|
|
|
.chart_favorite {
|
|
cursor: pointer;
|
|
width: 22px;
|
|
text-align: center;
|
|
float: right;
|
|
}
|
|
|
|
.chart_favorite:before {
|
|
content: "\f005";
|
|
color: #1a73e8;
|
|
}
|
|
|
|
.chart_unfavorite {
|
|
cursor: pointer;
|
|
width: 22px;
|
|
text-align: center;
|
|
float: right;
|
|
}
|
|
|
|
.chart_unfavorite:before {
|
|
content: "\f005";
|
|
font-weight: 200;
|
|
}
|
|
|
|
.boardContainer {
|
|
width: unset;
|
|
left: 48px;
|
|
right: 0;
|
|
}
|
|
|
|
.helpicon {
|
|
display: none;
|
|
}
|
|
|
|
.data-column-header-filter-panel .data-filter-items-function input[type=button] {
|
|
width: unset;
|
|
}
|
|
|
|
.dialog .dialog-func input {
|
|
width: unset;
|
|
height:unset;
|
|
}
|
|
|
|
.chart_nostar {
|
|
display: none;
|
|
}
|
|
|
|
.chart_star {
|
|
display: none;
|
|
}
|
|
|
|
.star {
|
|
display: none;
|
|
}
|
|
|
|
.nostar {
|
|
display: none;
|
|
}
|
|
|
|
.ui-grid {
|
|
height: 100%;
|
|
}
|
|
|
|
/*.ui-grid .ui-grid-table-header th div {
|
|
font-weight: normal;
|
|
}*/
|
|
|
|
.ui-grid .ui-grid-body .ui-grid-row > td > span {
|
|
/*display: flex;*/
|
|
}
|
|
|
|
.ui-popup-body .sort-grid .data-grid .data-grid-body .data-grid-row > td > span {
|
|
padding: 2px 0 2px 8px;
|
|
}
|
|
.ui-popup-body .sort-grid .dropdown-wrapper > .dropdown-panel > .dropdown-list {
|
|
max-height: 120px;
|
|
}
|
|
.ui-popup-body .sort-button button {
|
|
margin-right: 6px;
|
|
border: none;
|
|
line-height: 28px;
|
|
color: var(--title-color);
|
|
border-radius: var(--corner-radius);
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
height: 28px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
background-color: var(--title-bg-color);
|
|
transition: opacity .12s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
.ui-popup-body .sort-button button:hover {
|
|
opacity: .8;
|
|
}
|
|
.ui-popup-body .sort-button button:disabled {
|
|
opacity: .6;
|
|
cursor: default;
|
|
}
|
|
.ui-popup-body .sort-button button > svg {
|
|
flex: 0 0 auto;
|
|
width: 16px;
|
|
height: 16px;
|
|
fill: var(--title-color);
|
|
}
|
|
.ui-popup-body .sort-button button > span {
|
|
flex: 1 1 auto;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.status-cell {
|
|
display: inline-block;
|
|
padding: 0 16px;
|
|
border-radius: 16px;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ui-grid {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.wizard-contentArea .data-grid .data-grid-body .data-grid-row > td > a,
|
|
.wizard-contentArea .data-grid .data-grid-body .data-grid-row > td > content > span,
|
|
.wizard-contentArea .data-grid .data-grid-body .data-grid-row > td > span,
|
|
.wizard-contentArea .data-grid .data-grid-total-row > td > span,
|
|
.chart_content .data-grid .data-grid-body .data-grid-row > td > a,
|
|
.chart_content .data-grid .data-grid-body .data-grid-row > td > content > span,
|
|
.chart_content .data-grid .data-grid-body .data-grid-row > td > span,
|
|
.chart_content .data-grid .data-grid-total-row > td > span {
|
|
padding: 0;
|
|
display: block;
|
|
}
|
|
|
|
.data-grid .data-grid-header .data-column-header .data-column-header-text {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ui-popup-mask .ui-popup-container {
|
|
max-height: unset;
|
|
min-width: 200px;
|
|
max-width: unset;
|
|
}
|
|
|
|
.ui-popup-mask .ui-popup-container .ui-popup-body > .message-wrapper > svg + span {
|
|
max-height: 500px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.ui-grid > .ui-grid-wrapper > .ui-grid-table > tbody > .ui-grid-row > td .col-icon > svg {
|
|
width: 14px;
|
|
height: 13px;
|
|
} |